Updated to v4.0.3 (hotfix)

This commit is contained in:
Marco Dalla Tiezza
2024-06-10 21:57:47 +02:00
parent 5b8670814b
commit 5d3cdb7abb
5 changed files with 10 additions and 6 deletions

View File

@@ -5,6 +5,9 @@
## [Unreleased] ## [Unreleased]
## [4.0.3] - 2024-06-10
### Changed ### Changed
- Optimized final package size (reduced by 30% to 50%) by explicitly including necessary plugins/DLLs and excluding unnecessary ones with Nuitka [#47](https://github.com/AresValley/Artemis/issues/47) - Optimized final package size (reduced by 30% to 50%) by explicitly including necessary plugins/DLLs and excluding unnecessary ones with Nuitka [#47](https://github.com/AresValley/Artemis/issues/47)
@@ -98,7 +101,8 @@ First release.
<!-- Links definitions --> <!-- Links definitions -->
[Unreleased]: https://github.com/AresValley/Artemis/compare/v4.0.1...HEAD [Unreleased]: https://github.com/AresValley/Artemis/compare/v4.0.3...HEAD
[4.0.1]: https://github.com/AresValley/Artemis/compare/v4.0.1...v4.0.3
[4.0.1]: https://github.com/AresValley/Artemis/compare/v3.2.4...v4.0.1 [4.0.1]: https://github.com/AresValley/Artemis/compare/v3.2.4...v4.0.1
[3.2.4]: https://github.com/AresValley/Artemis/compare/v3.2.1...v3.2.4 [3.2.4]: https://github.com/AresValley/Artemis/compare/v3.2.1...v3.2.4
[3.2.3]: https://github.com/AresValley/Artemis/compare/v3.2.2...v3.2.3 [3.2.3]: https://github.com/AresValley/Artemis/compare/v3.2.2...v3.2.3

View File

@@ -10,7 +10,7 @@ class Constants():
APPLICATION_NAME = 'Artemis' APPLICATION_NAME = 'Artemis'
ORGANIZATION_NAME = 'AresValley' ORGANIZATION_NAME = 'AresValley'
ORGANIZATION_DOMAIN = 'aresvalley.com' ORGANIZATION_DOMAIN = 'aresvalley.com'
APPLICATION_VERSION = '4.0.1' APPLICATION_VERSION = '4.0.3'
SQL_NAME = 'data.sqlite' SQL_NAME = 'data.sqlite'

View File

@@ -27,8 +27,8 @@ python -m nuitka app.py `
--force-stdout-spec="{TEMP}\artemis.out.log" ` --force-stdout-spec="{TEMP}\artemis.out.log" `
--windows-company-name=Aresvalley.com ` --windows-company-name=Aresvalley.com `
--windows-product-name=Artemis ` --windows-product-name=Artemis `
--windows-file-version=4.0.1 ` --windows-file-version=4.0.3 `
--windows-product-version=4.0.1 ` --windows-product-version=4.0.3 `
--windows-file-description=Artemis ` --windows-file-description=Artemis `
--windows-icon-from-ico=images\artemis_icon.ico --windows-icon-from-ico=images\artemis_icon.ico

View File

@@ -1,5 +1,5 @@
#define MyAppName "Artemis" #define MyAppName "Artemis"
#define MyAppVersion "4.0.1" #define MyAppVersion "4.0.3"
#define MyAppPublisher "AresValley" #define MyAppPublisher "AresValley"
#define MyAppURL "https://www.aresvalley.com/" #define MyAppURL "https://www.aresvalley.com/"
#define MyAppExeName "artemis.exe" #define MyAppExeName "artemis.exe"

View File

@@ -23,6 +23,6 @@ python -m nuitka app.py \
--macos-app-name=Artemis \ --macos-app-name=Artemis \
--macos-app-mode=gui \ --macos-app-mode=gui \
--macos-sign-identity=ad-hoc \ --macos-sign-identity=ad-hoc \
--macos-app-version=4.0.1 --macos-app-version=4.0.3
echo "Building Linux target finished." echo "Building Linux target finished."