diff --git a/CHANGELOG.md b/CHANGELOG.md index 0861021..a1100c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,33 @@ # Unreleased +# 0.1.0-alpha.3 +## Added +- Grade calculator sub-tool. +- Support 4 point scale system. +- General UI improvment, it's now move responsive and adaptive, also it is more beautiful. +- Show confirmation message when deleteing a semester. +- Show semesters and courses IDs as ToolTip. +- Create a simple and ungly app icon/logo to be a placeholder, it should be replaced latter. +- Create .desktop file. +- Create .metainfo.xml file. +- Pass CLI arguments to QApplication. +- Create an initial flatpak mainfest for testing. +- Create an initial AUR PKGBUILD file for testing. +- Create help menu and about dialog. + # 0.1.0-alpha.2 ## Added - - Implement database features. - - Now you can create and delete profiles. - - You can switch between profiles in the fly. - - Calculation settings are getting pulled from the database. - - Creation of new semester and courses will be pushed to the database. - - When deleting profile or semester ther childs will be deleting as will. - - When updating course data, they will be updated in the database as will. - - Every time you open a profile, it's data will be loaded to the GUI. - - Now an action is available in the profile menu to export database to a json file. - - The app's entry point exit is now in the __main__.py file. - - `setup.py` file is now available to easily install the app. +- Implement database features. + - Now you can create and delete profiles. + - You can switch between profiles in the fly. + - Calculation settings are getting pulled from the database. + - Creation of new semester and courses will be pushed to the database. + - When deleting profile or semester ther childs will be deleting as will. + - When updating course data, they will be updated in the database as will. + - Every time you open a profile, it's data will be loaded to the GUI. + - Now an action is available in the profile menu to export database to a json file. +- The app's entry point exit is now in the __main__.py file. +- `setup.py` file is now available to easily install the app. # 0.1.0-alpha.1 - First alpha release. diff --git a/moadaly/__about__.py b/moadaly/__about__.py index 5565ad1..2385fb2 100644 --- a/moadaly/__about__.py +++ b/moadaly/__about__.py @@ -5,7 +5,7 @@ PROJECT_HOME_PAGE_URL = "https://github.com/zer0-x/moadaly" BUG_REPORT_URL = "https://github.com/zer0-x/moadaly/issues/new/choose" -APP_VERSION = "0.1.0-alpha.2" +APP_VERSION = "0.1.0alpha.3" __author__ = "zer0-x" __maintainer__ = __author__ __license__ = "GPL-3.0"