diff options
author | Jiri Vanek <[email protected]> | 2013-11-13 09:48:41 +0100 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2013-11-13 09:48:41 +0100 |
commit | 1c0876d0d5afafdd6472fbb873a5472fb62adf0a (patch) | |
tree | 0892beb5c2ee2a377e65da4fb77f9bfa9bb0b3aa /ChangeLog | |
parent | 2a61c4b99672d8033b67ae8df8665c09e508941b (diff) |
Enabled access to manifests' attributes from JNLPFile class, implemented http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/manifest.html#app_name
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -1,3 +1,23 @@ +2013-11-13 Jiri Vanek <[email protected]> + + Enabled access to manifests' attributes from JNLPFile class + Implemented http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/manifest.html#app_name + * netx/net/sourceforge/jnlp/JNLPFile.java: Added (manifestsAttributes) field. + Added (ManifestsAttributes) inner class, to encapsulate access to attributes. + (getTitle) can handle manifests too. + * netx/net/sourceforge/jnlp/PluginBridge.java: is following app_name recommendations. + * netx/net/sourceforge/jnlp/ResourcesDesc.java: (getMainJAR) made more granular + * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java: (init) inject itself + to file's ManifestsAttributes. (checkForAttributeInJars) renamed field + mainClassInThisJar to attributeInThisJar. Added getter for mainClass. + * netx/net/sourceforge/jnlp/security/CertWarningPane.java: bracketing cleanup. + * tests/netx/unit/net/sourceforge/jnlp/runtime/JNLPFileTest.java: new test to + check new functionalites + * tests/netx/unit/net/sourceforge/jnlp/runtime/ResourcesDescTest.java: same + * tests/test-extensions/net/sourceforge/jnlp/mock/DummyJNLPFileWithJar.java: + can set info + * NEWS: mentioned first u45 attribute + 2013-11-10 Jiri Vanek <[email protected]> Fixed lock in awt threads. JavaConsole window is now disposed instead of hidden. |