Skip to content

Commit

Permalink
test JMonkeyEngine v3.6.0-beta3
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Mar 3, 2023
1 parent 44d75cc commit 7c21154
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ ext {
websiteUrl = 'https://github.com/stephengold/jme3-utilities'

// module coordinates of dependencies:
acorusCoordinates = 'com.github.stephengold:Acorus:0.9.17'
heartCoordinates = 'com.github.stephengold:Heart:8.3.0+for36'
acorusCoordinates = 'com.github.stephengold:Acorus:0.9.18+for36'
heartCoordinates = 'com.github.stephengold:Heart:8.3.1+for36'

// current versions of libraries:
jme3utilitiesniftyVersion = '0.9.34-SNAPSHOT'
jme3utilitiesxVersion = '0.3.2-SNAPSHOT'
jme3Version = '3.6.0-beta2'
jme3Version = '3.6.0-beta3'
}

sourceCompatibility = JavaVersion.VERSION_1_7
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2018-2022, Stephen Gold
Copyright (c) 2018-2023, Stephen Gold
All rights reserved.
Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -86,7 +86,7 @@ protected String feedback(String input) {
if ("min".equals(lcInput) || "max".equals(lcInput)) {
msg = "";
} else {
int[] size = DsUtils.parseDisplaySize(lcInput);
int[] size = DsUtils.parseDimensions(lcInput);
if (size == null) {
msg = "improperly formatted display dimensions";
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ private boolean setAction(String actionString) {
} else if ("max".equals(lcArg)) {
displaySettings.setMaxSize();
} else {
int[] wh = DsUtils.parseDisplaySize(lcArg);
int[] wh = DsUtils.parseDimensions(lcArg);
if (wh == null) {
handled = false;
} else {
Expand Down

0 comments on commit 7c21154

Please sign in to comment.