Changeset 10580 in josm for trunk/src/org
- Timestamp:
- 2016-07-21T01:57:41+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/Main.java
r10507 r10580 1052 1052 UIManager.put("OptionPane.noIcon", UIManager.get("OptionPane.cancelIcon")); 1053 1053 // Ensures caret color is the same than text foreground color, see #12257 1054 // See http://docs.oracle.com/javase/ 7/docs/api/javax/swing/plaf/synth/doc-files/componentProperties.html1054 // See http://docs.oracle.com/javase/8/docs/api/javax/swing/plaf/synth/doc-files/componentProperties.html 1055 1055 for (String p : Arrays.asList( 1056 1056 "EditorPane", "FormattedTextField", "PasswordField", "TextArea", "TextField", "TextPane")) { … … 1337 1337 1338 1338 /** 1339 * Determines if JOSM currently runs with Java 8 or later. 1340 * @return {@code true} if the current JVM is at least Java 8, {@code false} otherwise 1341 * @since 7894 1342 */ 1343 public static boolean isJava8orLater() { 1344 String version = System.getProperty("java.version"); 1345 return version != null && !version.matches("^(1\\.)?[7].*"); 1346 } 1347 1348 /** 1349 * Checks that JOSM is at least running with Java 7. 1339 * Checks that JOSM is at least running with Java 8. 1350 1340 * @since 7001 1351 1341 */ … … 1353 1343 String version = System.getProperty("java.version"); 1354 1344 if (version != null) { 1355 if (version.matches("^(1\\.)?[ 789].*"))1345 if (version.matches("^(1\\.)?[89].*")) 1356 1346 return; 1357 if (version.matches("^(1\\.)?[56].*")) { 1347 if (version.matches("^(1\\.)?[567].*")) { 1358 1348 JMultilineLabel ho = new JMultilineLabel("<html>"+ 1359 1349 tr("<h2>JOSM requires Java version {0}.</h2>"+ … … 1361 1351 "You can <ul><li>update your Java (JRE) or</li>"+ 1362 1352 "<li>use an earlier (Java {2} compatible) version of JOSM.</li></ul>"+ 1363 "More Info:", " 7", version, "6")+"</html>");1353 "More Info:", "8", version, "7")+"</html>"); 1364 1354 JTextArea link = new JTextArea(HelpUtil.getWikiBaseHelpUrl()+"/Help/SystemRequirements"); 1365 1355 link.setEditable(false); -
trunk/src/org/openstreetmap/josm/data/Preferences.java
r10469 r10580 1336 1336 Utils.updateSystemProperty("jsse.enableSNIExtension", "false"); 1337 1337 } 1338 // Workaround to fix another Java bug - The bug seems to have been fixed in Java 8, to remove during transition1339 // Force Java 7 to use old sorting algorithm of Arrays.sort (fix #8712).1340 // See Oracle bug database: https://bugs.openjdk.java.net/browse/JDK-70756001341 // and https://bugs.openjdk.java.net/browse/JDK-69232001342 if (getBoolean("jdk.Arrays.useLegacyMergeSort", !Version.getInstance().isLocalBuild())) {1343 Utils.updateSystemProperty("java.util.Arrays.useLegacyMergeSort", "true");1344 }1345 1338 } 1346 1339 -
trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControlHttpsServer.java
r10308 r10580 46 46 import sun.security.x509.CertificateAlgorithmId; 47 47 import sun.security.x509.CertificateExtensions; 48 import sun.security.x509.CertificateIssuerName;49 48 import sun.security.x509.CertificateSerialNumber; 50 import sun.security.x509.CertificateSubjectName;51 49 import sun.security.x509.CertificateValidity; 52 50 import sun.security.x509.CertificateVersion; … … 149 147 info.set(X509CertInfo.VALIDITY, interval); 150 148 info.set(X509CertInfo.SERIAL_NUMBER, new CertificateSerialNumber(sn)); 151 152 // Change of behaviour in JDK8: 153 // https://bugs.openjdk.java.net/browse/JDK-8040820 154 // https://bugs.openjdk.java.net/browse/JDK-7198416 155 if (!Main.isJava8orLater()) { 156 // Java 7 code. To remove with Java 8 migration 157 info.set(X509CertInfo.SUBJECT, new CertificateSubjectName(owner)); 158 info.set(X509CertInfo.ISSUER, new CertificateIssuerName(owner)); 159 } else { 160 // Java 8 and later code 161 info.set(X509CertInfo.SUBJECT, owner); 162 info.set(X509CertInfo.ISSUER, owner); 163 } 149 info.set(X509CertInfo.SUBJECT, owner); 150 info.set(X509CertInfo.ISSUER, owner); 164 151 165 152 info.set(X509CertInfo.KEY, new CertificateX509Key(pair.getPublic())); -
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r10485 r10580 1026 1026 // This can be removed if someday Oracle fixes https://bugs.openjdk.java.net/browse/JDK-6788458 1027 1027 // CHECKSTYLE.OFF: LineLength 1028 // hg.openjdk.java.net/jdk 7u/jdk7u/jdk/file/828c4fedd29f/src/share/classes/com/sun/imageio/plugins/png/PNGImageReader.java#l6561028 // hg.openjdk.java.net/jdk8u/jdk8u/jdk/file/dc4322602480/src/share/classes/com/sun/imageio/plugins/png/PNGImageReader.java#l656 1029 1029 // CHECKSTYLE.ON: LineLength 1030 1030 Image img = read(new ByteArrayInputStream(bytes), false, true); … … 1151 1151 // See #10479: for PNG files, always enforce transparency to be sure tNRS chunk is used even not in paletted mode 1152 1152 // This can be removed if someday Oracle fixes https://bugs.openjdk.java.net/browse/JDK-6788458 1153 // hg.openjdk.java.net/jdk 7u/jdk7u/jdk/file/828c4fedd29f/src/share/classes/com/sun/imageio/plugins/png/PNGImageReader.java#l6561153 // hg.openjdk.java.net/jdk8u/jdk8u/jdk/file/dc4322602480/src/share/classes/com/sun/imageio/plugins/png/PNGImageReader.java#l656 1154 1154 img = read(path, false, true); 1155 1155 if (Main.isDebugEnabled() && isTransparencyForced(img)) { … … 1809 1809 * @return the {@code TransparentColor} defined in image reader metadata, or {@code null} 1810 1810 * @throws IOException if an error occurs during reading 1811 * @see <a href="http://docs.oracle.com/javase/ 7/docs/api/javax/imageio/metadata/doc-files/standard_metadata.html">javax_imageio_1.0 metadata</a>1811 * @see <a href="http://docs.oracle.com/javase/8/docs/api/javax/imageio/metadata/doc-files/standard_metadata.html">javax_imageio_1.0 metadata</a> 1812 1812 * @since 7499 1813 1813 */ -
trunk/src/org/openstreetmap/josm/tools/PlatformHookOsx.java
r10339 r10580 73 73 // We'll just ignore this for now. The user will still be able to close JOSM by closing all its windows. 74 74 Main.warn("Failed to register with OSX: " + ex); 75 }76 // Invite users to install Java 8 if they are still with Java 777 String java = System.getProperty("java.version");78 if (java != null && java.startsWith("1.7")) {79 askUpdateJava(java);80 75 } 81 76 } -
trunk/src/org/openstreetmap/josm/tools/PlatformHookUnixoid.java
r10379 r10580 113 113 @Override 114 114 public void startupHook() { 115 if (isDebianOrUbuntu()) { 116 // Invite users to install Java 8 if they are still with Java 7 and using a compatible distrib (Debian >= 8 or Ubuntu >= 15.10) 117 String java = System.getProperty("java.version"); 118 String os = getOSDescription(); 119 if (java != null && java.startsWith("1.7") && os != null && ( 120 os.startsWith("Linux Debian GNU/Linux 8") || os.matches("^Linux Ubuntu 1[567].*"))) { 121 String url; 122 // apturl does not exist on Debian (see #8465) 123 if (os.startsWith("Linux Debian")) { 124 url = "https://packages.debian.org/jessie-backports/openjdk-8-jre"; 125 } else if (getPackageDetails("apturl") != null) { 126 url = "apt://openjdk-8-jre"; 127 } else { 128 url = "http://packages.ubuntu.com/xenial/openjdk-8-jre"; 129 } 130 askUpdateJava(java, url); 131 } 132 } 115 // Do nothing 133 116 } 134 117 … … 272 255 public String getJavaPackageDetails() { 273 256 String home = System.getProperty("java.home"); 274 if (home.contains("java-7-openjdk") || home.contains("java-1.7.0-openjdk")) { 275 return getPackageDetails("openjdk-7-jre", "java-1_7_0-openjdk", "java-1.7.0-openjdk"); 257 if (home.contains("java-8-openjdk") || home.contains("java-1.8.0-openjdk")) { 258 return getPackageDetails("openjdk-8-jre", "java-1_8_0-openjdk", "java-1.8.0-openjdk"); 259 } else if (home.contains("java-9-openjdk") || home.contains("java-1.9.0-openjdk")) { 260 return getPackageDetails("openjdk-9-jre", "java-1_9_0-openjdk", "java-1.9.0-openjdk"); 276 261 } else if (home.contains("icedtea")) { 277 262 return getPackageDetails("icedtea-bin"); … … 434 419 } 435 420 436 protected void askUpdateJava(String version) { 437 if (!GraphicsEnvironment.isHeadless()) { 438 askUpdateJava(version, "https://www.java.com/download"); 439 } 440 } 441 421 // Method unused, but kept for translation already done. To reuse during Java 9 migration 442 422 protected void askUpdateJava(final String version, final String url) { 443 423 GuiHelper.runInEDTAndWait(new Runnable() { … … 449 429 new String[]{tr("OK"), tr("Update Java"), tr("Cancel")}); 450 430 // Check if the dialog has not already been permanently hidden by user 451 if (!ed.toggleEnable("askUpdateJava 8").toggleCheckState()) {431 if (!ed.toggleEnable("askUpdateJava9").toggleCheckState()) { 452 432 ed.setButtonIcons(new String[]{"ok", "java", "cancel"}).setCancelButton(3); 453 433 ed.setMinimumSize(new Dimension(480, 300)); … … 457 437 if ("Sun Microsystems Inc.".equals(System.getProperty("java.vendor")) && !isOpenJDK()) { 458 438 content.append("<b>").append(tr("This version is no longer supported by {0} since {1} and is not recommended for use.", 459 "Oracle", tr("April 2015"))).append("</b><br><br>"); 439 "Oracle", tr("April 2015"))).append("</b><br><br>"); // TODO: change date once Java 8 EOL is announced 460 440 } 461 441 content.append("<b>") -
trunk/src/org/openstreetmap/josm/tools/PlatformHookWindows.java
r10378 r10580 64 64 @Override 65 65 public void startupHook() { 66 // Invite users to install Java 8 if they are still with Java 7 67 String version = System.getProperty("java.version"); 68 if (version != null && version.startsWith("1.7")) { 69 askUpdateJava(version); 70 } 66 // Do nothing 71 67 } 72 68
Note:
See TracChangeset
for help on using the changeset viewer.