diff --git a/bin/package_mac.sh b/bin/package_mac.sh
index 54d4063..96ade57 100755
--- a/bin/package_mac.sh
+++ b/bin/package_mac.sh
@@ -35,7 +35,7 @@ cp -r ortools-lib/* target
jpackage --type app-image \
--input target/ \
--name "Juggling Lab" \
- --app-version "1.6" \
+ --app-version "1.6.1" \
--main-jar JugglingLab.jar \
--mac-package-name "Juggling Lab" \
--resource-dir "../source/resources/package/macos/" \
@@ -63,7 +63,7 @@ codesign --remove-signature "Juggling Lab.app"
jpackage --type dmg \
--app-image "Juggling Lab.app" \
--name "Juggling Lab" \
- --app-version "1.6" \
+ --app-version "1.6.1" \
--verbose
find . -name "Juggling Lab*.dmg" -type f \
diff --git a/bin/package_win.bat b/bin/package_win.bat
index f3b8718..0f8e483 100644
--- a/bin/package_win.bat
+++ b/bin/package_win.bat
@@ -32,7 +32,7 @@ copy ortools-lib\* target
jpackage --type app-image ^
--input target ^
--name "Juggling Lab" ^
- --app-version "1.6" ^
+ --app-version "1.6.1" ^
--main-jar JugglingLab.jar ^
--resource-dir "../source/resources/package/windows/" ^
--java-options -Xss2048k ^
@@ -63,7 +63,7 @@ del "Juggling Lab-setup-icon.bmp"
REM To have jpackage create the installer instead of Inno Setup:
REM jpackage --type exe ^
REM --app-image "Juggling Lab" ^
-REM --app-version "1.6" ^
+REM --app-version "1.6.1" ^
REM --file-associations "..\source\resources\package\windows\FAjml.properties" ^
REM --win-menu ^
REM --verbose
diff --git a/build.xml b/build.xml
index 36d7c70..330ad4e 100644
--- a/build.xml
+++ b/build.xml
@@ -10,7 +10,7 @@
-
+
diff --git a/source/jugglinglab/core/Constants.java b/source/jugglinglab/core/Constants.java
index 5884bd9..98731d1 100755
--- a/source/jugglinglab/core/Constants.java
+++ b/source/jugglinglab/core/Constants.java
@@ -5,7 +5,7 @@
package jugglinglab.core;
public class Constants {
- public static final String version = "1.6";
+ public static final String version = "1.6.1";
public static final String year = "2022";
public static final String site_URL = "http://jugglinglab.org";
diff --git a/source/resources/package/macos/Info.plist b/source/resources/package/macos/Info.plist
index 7a25237..21a40ab 100644
--- a/source/resources/package/macos/Info.plist
+++ b/source/resources/package/macos/Info.plist
@@ -20,9 +20,9 @@
Juggling Lab
CFBundleVersion
- 1.6
+ 1.6.1
CFBundleShortVersionString
- 1.6
+ 1.6.1
CFBundleDevelopmentRegion
English
diff --git a/source/resources/package/windows/Juggling Lab.iss b/source/resources/package/windows/Juggling Lab.iss
index feb416e..b2a01fe 100644
--- a/source/resources/package/windows/Juggling Lab.iss
+++ b/source/resources/package/windows/Juggling Lab.iss
@@ -3,7 +3,7 @@
#define MyAppName "Juggling Lab"
#define MyOutputFileName "JugglingLab"
-#define MyAppVersion "1.6"
+#define MyAppVersion "1.6.1"
#define MyAppYear "2022"
#define MyAppExeName "Juggling Lab.exe"
#define MyAppIconsName "Juggling Lab.ico"