Skip to content

Commit

Permalink
Updated to v4.0.3 (hotfix)
Browse files Browse the repository at this point in the history
  • Loading branch information
AresValley committed Jun 10, 2024
1 parent 5b86708 commit 5d3cdb7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
## [Unreleased]


## [4.0.3] - 2024-06-10

### 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)

Expand Down Expand Up @@ -98,7 +101,8 @@ First release.


<!-- 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
[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
Expand Down
2 changes: 1 addition & 1 deletion artemis/utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Constants():
APPLICATION_NAME = 'Artemis'
ORGANIZATION_NAME = 'AresValley'
ORGANIZATION_DOMAIN = 'aresvalley.com'
APPLICATION_VERSION = '4.0.1'
APPLICATION_VERSION = '4.0.3'

SQL_NAME = 'data.sqlite'

Expand Down
4 changes: 2 additions & 2 deletions building/Windows/build_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ python -m nuitka app.py `
--force-stdout-spec="{TEMP}\artemis.out.log" `
--windows-company-name=Aresvalley.com `
--windows-product-name=Artemis `
--windows-file-version=4.0.1 `
--windows-product-version=4.0.1 `
--windows-file-version=4.0.3 `
--windows-product-version=4.0.3 `
--windows-file-description=Artemis `
--windows-icon-from-ico=images\artemis_icon.ico

Expand Down
2 changes: 1 addition & 1 deletion building/Windows/windows_installer.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppName "Artemis"
#define MyAppVersion "4.0.1"
#define MyAppVersion "4.0.3"
#define MyAppPublisher "AresValley"
#define MyAppURL "https://www.aresvalley.com/"
#define MyAppExeName "artemis.exe"
Expand Down
2 changes: 1 addition & 1 deletion building/macOS/build_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ python -m nuitka app.py \
--macos-app-name=Artemis \
--macos-app-mode=gui \
--macos-sign-identity=ad-hoc \
--macos-app-version=4.0.1
--macos-app-version=4.0.3

echo "Building Linux target finished."

0 comments on commit 5d3cdb7

Please sign in to comment.