Skip to content

Commit

Permalink
updated version number and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JoachimCoenen committed Oct 14, 2023
1 parent cc3ee5a commit 6655149
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Next Version
## Version 0.5.1-alpha
### Improvements
* Added Minecraft version selector to project creation dialog.
* Improved appearance of project creation dialog.
Expand Down
31 changes: 18 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,24 @@ An advanced editor for Minecraft Datapacks for Minecraft 1.17 and 1.18+. _Curren


## Features
- Open or create a new datapack
- Syntax highlighting
- Error checking
- Rich code suggestions and code completion for `.mcFunction` and `.json` files
- custom themes
- Ctrl-Click to follow symbols (functions & function tags, block tags, ... )
- Multi-tab & multi-view editor
- Quickly find and open files
- Search all files
- Validate all files (for `.mcFunction` and `.json` files)
- Add, rename and delete files and folders via the left-side tree view
- supports dependencies between datapacks via `dependencies.json`
- Program remembers last session after closing
- Basic features
- Syntax highlighting
- Error checking
- Rich code suggestions and code completion for `.mcFunction` and `.json` files
- Add, rename and delete files and folders via the left-side tree view
- Customization
- custom themes
- plugin support
- Navigation:
- Ctrl-Click to follow symbols (functions & function tags, block tags, ... )
- Multi-tab & multi-view editor
- Quickly find and open files with `Ctrl`+`P`
- Search all files
- Project
- Open or create a new datapack project
- Validate all files (for `.mcFunction` and `.json` files) within a project
- Multi-root projects
- supports dependencies between datapacks / projects via `dependencies.json`


## Keyboard Shortcuts
Expand Down
2 changes: 1 addition & 1 deletion base/model/applicationSettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class AboutSettings(SerializableDataclass):

title: str = field(default="Datapack Editor", metadata=catMeta(serialize=False, kwargs=dict(wordWrap=False, label=' ', style=getStyles().title), decorators=[pd.ReadOnlyLabel()]))

version: str = field(default="""0.5.0-alpha""", metadata=catMeta(serialize=False, kwargs=dict(wordWrap=False, label='Version'), decorators=[pd.ReadOnlyLabel()]))
version: str = field(default="""0.5.1-alpha""", metadata=catMeta(serialize=False, kwargs=dict(wordWrap=False, label='Version'), decorators=[pd.ReadOnlyLabel()]))

# @pd.NoUI()
@property
Expand Down

0 comments on commit 6655149

Please sign in to comment.