You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by jt...@apache.org on 2018/11/03 10:31:33 UTC

[incubator-netbeans-html4j] branch master updated: Updating Javadoc in preparation of 1.6 release

This is an automated email from the ASF dual-hosted git repository.

jtulach pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans-html4j.git


The following commit(s) were added to refs/heads/master by this push:
     new fb53597  Updating Javadoc in preparation of 1.6 release
fb53597 is described below

commit fb5359757a122c1ea1e626a939e4b6933025b410
Author: Jaroslav Tulach <ja...@apidesign.org>
AuthorDate: Sat Nov 3 11:28:28 2018 +0100

    Updating Javadoc in preparation of 1.6 release
---
 .../java/org/netbeans/html/json/spi/Proto.java     |  1 -
 src/main/javadoc/overview.html                     | 62 +++++++++++++---------
 2 files changed, 37 insertions(+), 26 deletions(-)

diff --git a/json/src/main/java/org/netbeans/html/json/spi/Proto.java b/json/src/main/java/org/netbeans/html/json/spi/Proto.java
index dfa1ab7..a7071bb 100644
--- a/json/src/main/java/org/netbeans/html/json/spi/Proto.java
+++ b/json/src/main/java/org/netbeans/html/json/spi/Proto.java
@@ -18,7 +18,6 @@
  */
 package org.netbeans.html.json.spi;
 
-import java.util.Arrays;
 import java.util.Collection;
 import java.util.List;
 import net.java.html.BrwsrCtx;
diff --git a/src/main/javadoc/overview.html b/src/main/javadoc/overview.html
index a59ea0f..21926b2 100644
--- a/src/main/javadoc/overview.html
+++ b/src/main/javadoc/overview.html
@@ -162,9 +162,12 @@ $ mvn -f client/pom.xml process-classes exec:exec
             vm.loadClass('org.apidesign.demo.minesweeper.MainBrwsr');
         </script>
         
-        <h3>New version will include</h3>
+        <h3>New in version 1.6</h3>
 
         <p>
+            Compiles on JDK11 while using
+            <a target="_blank" href="https://openjfx.io">Open JavaFX</a> 11
+            when necessary.
             {@link net.java.html.json.ComputedProperty Computed properties} can
             depend on other computed properties -
             <a target="_blank" href="https://github.com/apache/incubator-netbeans-html4j/pull/3">PR #3</a>.
@@ -217,6 +220,38 @@ $ mvn -f client/pom.xml process-classes exec:exec
         usage of {@link java.net.URI}, etc.
         </p>
 
+        <h3>What's new in older versions?</h3>
+
+        <p>
+        Click the
+        <a href="#" onclick="return showHistoric()">link</a>
+        to view even more
+        <a href="#" onclick="return showHistoric()">historic changes</a>...
+        </p>
+
+        <a name="historic.changes"></a>
+        <div id="historic.changes">
+            <script>
+            (function() {
+                var visible;
+                function showHistoric(show) {
+                    var e = document.getElementById("historic.changes");
+                    if (show === undefined) {
+                        show = !visible;
+                    }
+                    if (show) {
+                        e.style.display="block";
+                    } else {
+                        e.style.display="none";
+                    }
+                    visible = show;
+                    return false;
+                }
+                showHistoric(false);
+                this.showHistoric = showHistoric;
+            })()
+            </script>
+
         <h3>New features in version 1.4</h3>
 
         Both values <code>null</code> and <code>undefined</code> are
@@ -283,30 +318,6 @@ $ mvn -f client/pom.xml process-classes exec:exec
         of CORS</a> by handling the {@link net.java.html.json.OnReceive}
         connections in Java.
 
-        <h3>What's new in older versions?</h3>
-
-        <p>
-        Click the
-        <a href="#" onclick="return showHistoric(true)">link</a>
-        to view even more
-        <a href="#" onclick="return showHistoric(true)">historic changes</a>...
-        </p>
-
-        <a name="historic.changes"></a>
-        <div id="historic.changes">
-            <script>
-            function showHistoric(show) {
-                var e = document.getElementById("historic.changes");
-                if (show) {
-                    e.style.display="block";
-                } else {
-                    e.style.display="none";
-                }
-                return false;
-            }
-            showHistoric(false);
-            </script>
-
         <h3>What's Been Improved in Version 1.2.3?</h3>
 
         <p>
@@ -490,6 +501,7 @@ $ mvn -f client/pom.xml process-classes exec:exec
         online:
         <ul>
             <li>Current <a target="_blank" href="https://dukescript.com/javadoc/html+java/dev/">development</a> version
+            <li>Version <a target="_blank" href="https://dukescript.com/javadoc/html+java/1.6/">1.6</a>
             <li>Version <a target="_blank" href="https://dukescript.com/javadoc/html+java/1.5.1/">1.5.1</a>
             <li>Version <a target="_blank" href="http://bits.netbeans.org/html+java/1.5">1.5</a>
             <li>Version <a target="_blank" href="http://bits.netbeans.org/html+java/1.4">1.4</a>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists