JaroslavTulach at 01:01, 30 October 2014 - 2014-10-30 01:01:10

←Older revision Revision as of 01:01, 30 October 2014
Line 1: Line 1:
-
If everything goes right the [[Bck2Brwsr 0.11|release 0.11]] of [[Bck2Brwsr]] is going to be called the '''AirPlane Edition'''. I am sitting in a [[wikipedia:Lufthansa|Lufthansa]] flight from Munich to San Francisco (for [[JavaOne2014]]), have wireless access and can sort of, although very slowly, connect to internet. I've rented the access for two hours, hopefully the upload finishes by then.
+
The [[Bck2Brwsr 0.11|new version]] fixes problems with obfuscation mode (a regression in [[Bck2Brwsr 0.10]]). Now the final application can be '''FULL'''y obfuscated and the sample ''org.apidesign.html:knockout4j-archetype:1.0'' seems to work with version 0.11. System has ''nanoTime'' method (per requests of [[Toni Epple]]). Iterating through [[JavaScript]] or [[Java]] array
-
 
+
-
The new version fixes problems with obfuscation mode (a regression in [[Bck2Brwsr 0.10]]). Now the final application can be '''FULL'''y obfuscated and the sample ''org.apidesign.html:knockout4j-archetype:1.0'' seems to work with version 0.11. System has ''nanoTime'' method (per requests of [[Toni Epple]]). Iterating through [[JavaScript]] or [[Java]] array
+
<source lang="javascript">
<source lang="javascript">
var array = [1, 3, 5]
var array = [1, 3, 5]

JaroslavTulach: New page: If everything goes right the release 0.11 of Bck2Brwsr is going to be called the '''AirPlane Edition'''. I am sitting in a Lufthansa flight f... - 2014-09-26 18:08:41

New page: If everything goes right the release 0.11 of Bck2Brwsr is going to be called the '''AirPlane Edition'''. I am sitting in a Lufthansa flight f...

New page

If everything goes right the [[Bck2Brwsr 0.11|release 0.11]] of [[Bck2Brwsr]] is going to be called the '''AirPlane Edition'''. I am sitting in a [[wikipedia:Lufthansa|Lufthansa]] flight from Munich to San Francisco (for [[JavaOne2014]]), have wireless access and can sort of, although very slowly, connect to internet. I've rented the access for two hours, hopefully the upload finishes by then.

The new version fixes problems with obfuscation mode (a regression in [[Bck2Brwsr 0.10]]). Now the final application can be '''FULL'''y obfuscated and the sample ''org.apidesign.html:knockout4j-archetype:1.0'' seems to work with version 0.11. System has ''nanoTime'' method (per requests of [[Toni Epple]]). Iterating through [[JavaScript]] or [[Java]] array
<source lang="javascript">
var array = [1, 3, 5]
for (var i in array) {
console.log(i);
}
</source>
shows only ''0, 1, 2''. All additional [[Bck2Brwsr]] functions are added as non-enumerable.