diff --git a/building/Windows/build_windows.ps1 b/building/Windows/build_windows.ps1 index 6881437..02edea1 100644 --- a/building/Windows/build_windows.ps1 +++ b/building/Windows/build_windows.ps1 @@ -25,8 +25,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.5 ` - --windows-product-version=4.0.5 ` + --windows-file-version=4.1.0 ` + --windows-product-version=4.1.0 ` --windows-file-description=Artemis ` --windows-icon-from-ico=images\artemis_icon.ico diff --git a/building/Windows/windows_installer.iss b/building/Windows/windows_installer.iss index 7a18930..acf87bc 100644 --- a/building/Windows/windows_installer.iss +++ b/building/Windows/windows_installer.iss @@ -1,5 +1,5 @@ #define MyAppName "Artemis" -#define MyAppVersion "4.0.5" +#define MyAppVersion "4.1.0" #define MyAppPublisher "AresValley" #define MyAppURL "https://www.aresvalley.com/" #define MyAppExeName "artemis.exe" diff --git a/building/macOS/build_macos.sh b/building/macOS/build_macos.sh index 098bac9..54547ee 100644 --- a/building/macOS/build_macos.sh +++ b/building/macOS/build_macos.sh @@ -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.5 + --macos-app-version=4.1.0 echo "Building Linux target finished."