diff --git a/README.md b/README.md index 37a3a95..e673705 100644 --- a/README.md +++ b/README.md @@ -5,28 +5,30 @@ # Blender Project Starter ## Upcoming Version: -- [x] Fix: Project Folder doesn't open on Linux -- [x] Fix: Subfolders aren't created on Linux -- [x] Fix: Bring back property "Open Folder after Build" -- [x] Fix: Error when trying to build without specifying any Folders within the Root Folder -- [x] Fix: Error when trying to save to subfolder -- [x] Fix: Correct Version Numbers -- [x] Codestyle: Enhance Codestyle -- [x] Feature: Mark Project as open/unfinished -- [x] Feature: Add option to prefix folders with the project name. -- [x] Feature: Let the user decide, how many folders are in the Project Root Folder. -- [x] Feature: Copy file to project/target folder, even if it already exists in another folder (Inform the user): - - [x] Get File name - - [x] Cut File Option - - [x] Copy File Option - - [x] New Name Option -- [ ] Updater: Update Addon Updater to latest version -- [ ] Updater: Restrict Minimal Version to 1.0.2 (Rename of branch) -- [ ] Codestyle: Rename Addon to Blender Project Manager, adjust class names - +We've just hit another update. No features are planned so far. [Change this!](https://github.com/BlenderDefender/blender_project_manager/issues) ## Changelog: +Version 1.2.0 +* Fix: Project Folder doesn't open on Linux +* Fix: Subfolders aren't created on Linux +* Fix: Bring back property "Open Folder after Build" +* Fix: Error when trying to build without specifying any Folders within the Root Folder +* Fix: Error when trying to save to subfolder +* Fix: Correct Version Numbers +* Codestyle: Enhance Codestyle +* Feature: Mark Project as open/unfinished +* Feature: Add option to prefix folders with the project name. +* Feature: Let the user decide, how many folders are in the Project Root Folder. +* Feature: Copy file to project/target folder, even if it already exists in another folder (Inform the user): + * Get File name + * Cut File Option + * Copy File Option + * New Name Option +* Updater: Update Addon Updater to latest version +* Updater: Restrict Minimal Version to 1.0.2 (Rename of branch) +* Codestyle: Rename Addon to Blender Project Manager, adjust class names + Version 1.1.0: * Feature: Add Addon Updater for Easy Updating * Fix: Enable Blender 2.83 support diff --git a/__init__.py b/__init__.py index 1e9e984..c02de53 100644 --- a/__init__.py +++ b/__init__.py @@ -43,16 +43,16 @@ ) bl_info = { - "name": "Blender Project Starter", - "description": "", - "author": "Steven Scott, Blender Defender", - "version": (1, 1, 0), + "name": "Blender Project Manager", + "description": "Manage and setup your projects the easy way!", + "author": "Blender Defender, Steven Scott", + "version": (1, 2, 0), "blender": (2, 83, 0), "location": "Properties >> Scene Properties", "warning": "", - "wiki_url": "https://www.youtube.com/watch?v=Jn-4Yjjn_5A", + "wiki_url": "https://github.com/BlenderDefender/blender_project_manager/wiki", "tracker_url": "https://github.com/BlenderDefender/\ -blender_project_starter/issues", +blender_project_manager/issues", "category": "System" }