Thanks to visit codestin.com
Credit goes to github.com

Skip to content

3.2.9.v1e #169

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 28 commits into from
Mar 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1d95ae1
early fail for repaint with width<=0 and height<=0
BobHanson Mar 16, 2020
cc62887
re-introduces RepaintManager.addDirtyRegion(Applet,....)
BobHanson Mar 16, 2020
67733aa
faster repaint() and added RepaintManager.repaintDirtyRegion(Applet...)
BobHanson Mar 16, 2020
d85d930
clip/unclip problem in JViewport causing JTable paint issues
BobHanson Mar 18, 2020
dbac2ec
removes blue outline when JTable gets focus
BobHanson Mar 18, 2020
392433b
BufferedImage preliminary fix for raster-based images
BobHanson Mar 18, 2020
9af9b1f
checkbox in table should be fully centered
BobHanson Mar 18, 2020
2e3a205
transpiler 3.2.9-j11 and 3.2.9 fixes for unbound annotations (sort of)
BobHanson Mar 18, 2020
0403ea7
Merge pull request #157 from BobHanson/java11
BobHanson Mar 18, 2020
d6af498
adds JSUtilI.java interface
BobHanson Mar 19, 2020
f318328
adds JSUtilI.java interface
BobHanson Mar 19, 2020
eec6aa0
AbstractStringBuilder typo fix for replace()
BobHanson Mar 20, 2020
db124b1
OutputStream subclasses add 秘setBytes(byte[] b)
BobHanson Mar 20, 2020
ed7e1dc
switching to Graphics.clipRect()/create/dispose rather than .setClip()
BobHanson Mar 20, 2020
5ee97ee
switching to Graphics.clipRect()/create/dispose rather than .setClip()
BobHanson Mar 20, 2020
de603a6
HashMap tighter code, HashSet reverts to standard Java HashMap
BobHanson Mar 20, 2020
a6430e1
fixes new String("xxx") and "xxx" needs to be distinction
BobHanson Mar 20, 2020
2c8a27e
JSTempFile uses JSUtil.setFileBytesStatic; getHtmlApplet returns Object
BobHanson Mar 20, 2020
cd8abba
transpiler 3.2.9-v1c more efficient static calls than 3.2.9-v1a
BobHanson Mar 20, 2020
14891ab
updated tests
BobHanson Mar 21, 2020
fe44eca
updated tests
BobHanson Mar 21, 2020
e776862
toString() methods returning "..." not new String("...")
BobHanson Mar 21, 2020
180fa74
hashtable, HashMap and HashSet
BobHanson Mar 21, 2020
7c173ea
lost doc files found in site0/
BobHanson Mar 21, 2020
2505f6a
new 3.2.9.v1e transpiler and SwingJS runtime
BobHanson Mar 21, 2020
ad93d6e
Merge pull request #158 from BobHanson/hanson1
BobHanson Mar 21, 2020
bbcaad1
HashMap options allow switching off JavaScript Map in HashMap/Hashtable
BobHanson Mar 21, 2020
c40d424
Merge pull request #159 from BobHanson/hanson1
BobHanson Mar 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8
2 changes: 1 addition & 1 deletion sources/net.sf.j2s.core/.classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
14 changes: 2 additions & 12 deletions sources/net.sf.j2s.core/.settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,8 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault.secondary=
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
org.eclipse.jdt.core.compiler.annotation.nullable.secondary=
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.APILeak=warning
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.autoboxing=warning
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
org.eclipse.jdt.core.compiler.problem.deadCode=warning
Expand All @@ -27,7 +18,7 @@ org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
org.eclipse.jdt.core.compiler.problem.emptyStatement=warning
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=ignore
org.eclipse.jdt.core.compiler.problem.fallthroughCase=warning
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
Expand Down Expand Up @@ -72,6 +63,7 @@ org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=igno
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=warning
org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore
org.eclipse.jdt.core.compiler.problem.reportMethodCanBeStatic=ignore
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
Expand Down Expand Up @@ -108,5 +100,3 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=warning
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8
Binary file modified sources/net.sf.j2s.core/dist/swingjs/SwingJS-site.zip
Binary file not shown.
1 change: 1 addition & 0 deletions sources/net.sf.j2s.core/dist/swingjs/_j2sclasslist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ swingjs/a2s/ScrollPane.js
swingjs/a2s/TextArea.js
swingjs/a2s/TextField.js
swingjs/api/Interface.js
swingjs/api/JSUtilI.js
swingjs/api/js/DOMNode.js
swingjs/api/js/HTML5CanvasContext2D.js
swingjs/api/js/JSInterface.js
Expand Down
Binary file not shown.
Binary file modified sources/net.sf.j2s.core/dist/swingjs/net.sf.j2s.core.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion sources/net.sf.j2s.core/dist/swingjs/timestamp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20200315182226
20200321085805
10 changes: 10 additions & 0 deletions sources/net.sf.j2s.core/dist/swingjs/ver/3.2.9-j11/DEV_NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
This is sources/net.sf.j2s.java.core/dist/DEV_NOTES.txt

_j2sclasslist.txt

the list of .js files concatenated into coreswingjs.js and minified to coreswingjs.z.js


SwingJS-site.zip

the full site directory for SwingJS including all files not in the test/ directory.
Binary file not shown.
Loading