change pom files for 0.3.2.2-SNAPSHOT

This commit is contained in:
Manfred Karrer 2015-12-20 20:20:14 +01:00
parent 0da30453b1
commit b1c4d7b636
18 changed files with 26 additions and 34 deletions

View file

@ -22,7 +22,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.3.2.1</version>
<version>0.3.2.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -73,7 +73,7 @@ import static io.bitsquare.app.BitsquareEnvironment.APP_NAME_KEY;
public class BitsquareApp extends Application {
private static final Logger log = (ch.qos.logback.classic.Logger) LoggerFactory.getLogger(BitsquareApp.class);
public static final boolean DEV_MODE = false;
public static final boolean DEV_MODE = true;
public static final boolean IS_RELEASE_VERSION = !DEV_MODE && true;
private static Environment env;

View file

@ -55,6 +55,8 @@ public class ImageUtil {
}
public static boolean isRetina() {
// Latest JDK renamed getMaxPixelScale to getMaxRenderScale
// return ((QuantumToolkit) QuantumToolkit.getToolkit()).getMaxRenderScale() > 1.9f;
return ((QuantumToolkit) QuantumToolkit.getToolkit()).getMaxPixelScale() > 1.9f;
}