Skip to content

Commit

Permalink
version 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jkboyce committed Oct 16, 2022
1 parent 0897e82 commit 97093d5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions bin/package_mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ cp -r ortools-lib/* target
jpackage --type app-image \
--input target/ \
--name "Juggling Lab" \
--app-version "1.6.2" \
--app-version "1.6.3" \
--main-jar JugglingLab.jar \
--mac-package-name "Juggling Lab" \
--resource-dir "../source/resources/package/macos/" \
Expand Down Expand Up @@ -66,7 +66,7 @@ codesign --remove-signature "Juggling Lab.app"
jpackage --type dmg \
--app-image "Juggling Lab.app" \
--name "Juggling Lab" \
--app-version "1.6.2" \
--app-version "1.6.3" \
--verbose

find . -name "Juggling Lab*.dmg" -type f \
Expand Down
4 changes: 2 additions & 2 deletions bin/package_win.bat
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ copy ortools-lib\* target
jpackage --type app-image ^
--input target ^
--name "Juggling Lab" ^
--app-version "1.6.2" ^
--app-version "1.6.3" ^
--main-jar JugglingLab.jar ^
--resource-dir "../source/resources/package/windows/" ^
--java-options -Xss2048k ^
Expand Down Expand Up @@ -66,7 +66,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.2" ^
REM --app-version "1.6.3" ^
REM --file-associations "..\source\resources\package\windows\FAjml.properties" ^
REM --win-menu ^
REM --verbose
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<property name="lib" value="bin/ortools-lib" />
<property name="debug" value="off" />
<property name="deprecation" value="on" />
<property name="jlab_version" value="1.6.2" />
<property name="jlab_version" value="1.6.3" />

<target name="init">
<mkdir dir="${build}" />
Expand Down
2 changes: 1 addition & 1 deletion source/jugglinglab/core/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package jugglinglab.core;

public class Constants {
public static final String version = "1.6.2";
public static final String version = "1.6.3";
public static final String year = "2022";

public static final String site_URL = "http://jugglinglab.org";
Expand Down
4 changes: 2 additions & 2 deletions source/resources/package/macos/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
<string>Juggling Lab</string>

<key>CFBundleVersion</key>
<string>1.6.2</string>
<string>1.6.3</string>
<key>CFBundleShortVersionString</key>
<string>1.6.2</string>
<string>1.6.3</string>

<key>CFBundleDevelopmentRegion</key>
<string>English</string>
Expand Down
2 changes: 1 addition & 1 deletion source/resources/package/windows/Juggling Lab.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#define MyAppName "Juggling Lab"
#define MyOutputFileName "JugglingLab"
#define MyAppVersion "1.6.2"
#define MyAppVersion "1.6.3"
#define MyAppYear "2022"
#define MyAppExeName "Juggling Lab.exe"
#define MyAppIconsName "Juggling Lab.ico"
Expand Down

0 comments on commit 97093d5

Please sign in to comment.