Considering anything older than 1.3 a historic version
Project: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-html4j/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-html4j/commit/d97720eb Tree: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-html4j/tree/d97720eb Diff: http://git-wip-us.apache.org/repos/asf/incubator-netbeans-html4j/diff/d97720eb Branch: refs/heads/master Commit: d97720ebf1d6bc821ad3ab3e75adafcf0b6e556d Parents: 641578f Author: Jaroslav Tulach <[email protected]> Authored: Sat Jan 14 05:35:54 2017 +0100 Committer: Jaroslav Tulach <[email protected]> Committed: Fri Sep 8 17:13:55 2017 +0200 ---------------------------------------------------------------------- src/main/javadoc/overview.html | 49 ++++++++++++++++++++----------------- 1 file changed, 27 insertions(+), 22 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-netbeans-html4j/blob/d97720eb/src/main/javadoc/overview.html ---------------------------------------------------------------------- diff --git a/src/main/javadoc/overview.html b/src/main/javadoc/overview.html index 0774fc0..b144db3 100644 --- a/src/main/javadoc/overview.html +++ b/src/main/javadoc/overview.html @@ -133,8 +133,33 @@ 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> One can control {@link net.java.html.json.OnReceive#headers() HTTP request headers} when connecting to server using the {@link net.java.html.json.OnReceive} annotation. It is possible to have @@ -146,6 +171,7 @@ demonstrates. Bugfix of issues <a target="_blank" href='https://netbeans.org/bugzilla/show_bug.cgi?id=250503'>250503</a>, <a target="_blank" href='https://netbeans.org/bugzilla/show_bug.cgi?id=252987'>252987</a>. + </p> <h3>What's New in Version 1.1?</h3> @@ -220,27 +246,6 @@ prevent endless debugging when one forgets to do so. </p> - <p> - What's new in older versions? Click the - <a href="#" onclick="return showHistoric(true)">link</a> - to view even more - <a href="#" onclick="return showHistoric(true)">historic changes</a> below: - </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 New in Version 0.9?</h3> @@ -358,7 +363,7 @@ $ mvn archetype:generate \ -DarchetypeGroupId=com.dukescript.archetype \ -DarchetypeArtifactId=knockout4j-archetype \ - -DarchetypeVersion=0.11 <em># or newer version, if available</em> + -DarchetypeVersion=0.16 <em># or newer version, if available</em> </pre> Answer few questions (for example choose <em>myfirstbrwsrpage</em> as artifactId) and then you can:
