Skip to content

Commit 7c532e4

Browse files
authored
Merge pull request #51 from BobHanson/yadav1
Yadav1
2 parents 120ec0f + 252f52a commit 7c532e4

File tree

19 files changed

+1100
-945
lines changed

19 files changed

+1100
-945
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
rem rough update script for Windows for new transpiler and/or runtime
2+
rem plugin is set to deliver to c:\temp\plugins\plugins
3+
set ver=3.2.2
4+
5+
echo %ver%
6+
7+
copy C:\temp\plugins\plugins\net.sf.j2s.core_%ver%.jar c:\users\hansonr\eclipse\dropins\net.sf.j2s.core.jar
8+
copy C:\users\hansonr\eclipse\dropins\net.sf.j2s.core.jar C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\ver\%ver%\
9+
copy c:\users\hansonr\eclipse\dropins\net.sf.j2s.core.jar C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\
10+
11+
copy C:\users\hansonr\git\java2script\sources\net.sf.j2s.java.core\dist\SwingJS-site.zip C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\ver\%ver%\
12+
copy C:\users\hansonr\git\java2script\sources\net.sf.j2s.java.core\dist\SwingJS-site.zip C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\
13+
14+
for /f %%a in ('powershell -Command "Get-Date -format yyyyMMddHHmmss"') do set datetime=%%a
15+
echo %datetime% > C:\temp\timestamp
16+
17+
copy C:\temp\timestamp C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\ver\%ver%\
18+
copy C:\temp\timestamp C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\
19+
type C:\temp\timestamp
20+
21+
copy test.log t.log
22+
eclipsec.exe -clean > test.log
23+
rem eclipsec.exe > test.log
24+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
rem rough update script for Windows for new transpiler and/or runtime
2+
rem plugin is set to deliver to c:\temp\plugins\plugins
3+
set ver=3.2.2
4+
5+
echo %ver%
6+
7+
copy C:\temp\plugins\plugins\net.sf.j2s.core_%ver%.jar c:\users\hansonr\eclipse\dropins\net.sf.j2s.core.jar
8+
copy C:\users\hansonr\eclipse\dropins\net.sf.j2s.core.jar C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\ver\%ver%\
9+
copy c:\users\hansonr\eclipse\dropins\net.sf.j2s.core.jar C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\
10+
11+
copy C:\users\hansonr\git\java2script\sources\net.sf.j2s.java.core\dist\SwingJS-site.zip C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\ver\%ver%\
12+
copy C:\users\hansonr\git\java2script\sources\net.sf.j2s.java.core\dist\SwingJS-site.zip C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\
13+
14+
for /f %%a in ('powershell -Command "Get-Date -format yyyyMMddHHmmss"') do set datetime=%%a
15+
echo %datetime% > C:\temp\timestamp
16+
17+
copy C:\temp\timestamp C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\ver\%ver%\
18+
copy C:\temp\timestamp C:\users\hansonr\git\java2script\sources\net.sf.j2s.core\dist\swingjs\
19+
type C:\temp\timestamp
20+
21+
copy test.log t.log
22+
rem eclipsec.exe -clean > test.log
23+
eclipsec.exe > test.log
24+
7.59 KB
Binary file not shown.
-738 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20180812102716
1+
20180814211809
7.59 KB
Binary file not shown.
-738 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20180812102716
1+
20180814211809

sources/net.sf.j2s.core/src/net/sf/j2s/core/CorePlugin.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,13 @@ public class CorePlugin extends Plugin {
1919
* register the bundle version properly. So we use VERSION here instead.
2020
*
2121
*/
22-
public static String VERSION = "3.2.2.03";
22+
public static String VERSION = "3.2.2.04";
2323

24+
// 3.1.1 last Zhou Renjian unqualified name version
25+
// 3.2.1.01 original SwingJS version through 2017 adds $-signatures for methods
26+
// 3.2.2.02 adds $-qualified names for all methods
27+
// 3.2.2.03 adds Java 8 function and stream
28+
// 3.2.2.04 adds support for window-level applets, such as JmolApplet
2429
/**
2530
* The constructor.
2631
*/

0 commit comments

Comments
 (0)