mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 07:33:48 +01:00
Removed temp variables from Brace netscript mode definer (netscript.js). Fixed changelog update for v0.37.1
This commit is contained in:
parent
565f0dd517
commit
baf8fc784e
2
dist/engine.bundle.js
vendored
2
dist/engine.bundle.js
vendored
@ -3446,7 +3446,7 @@ let CONSTANTS = {
|
|||||||
"* You now earn money from successfully completing Bladeburner contracts. The amount you earn is based " +
|
"* You now earn money from successfully completing Bladeburner contracts. The amount you earn is based " +
|
||||||
"on the difficulty of the contract.<br>" +
|
"on the difficulty of the contract.<br>" +
|
||||||
"* Completing Field Analysis in Bladeburner now grants 0.1 rank<br>" +
|
"* Completing Field Analysis in Bladeburner now grants 0.1 rank<br>" +
|
||||||
"* The maximum RAM you can get on a purchased server is now 1,048,576GB (2^20)<br>" +
|
"* The maximum RAM you can get on a purchased server is now 1,048,576 GB (2^20)<br>" +
|
||||||
"* Bug Fix: Fixed Netscript syntax highlighting issues with the new NetscriptJS<br>" +
|
"* Bug Fix: Fixed Netscript syntax highlighting issues with the new NetscriptJS<br>" +
|
||||||
"* Bug Fix: Netscript Functions now properly incur RAM costs in NetscriptJS<br>" +
|
"* Bug Fix: Netscript Functions now properly incur RAM costs in NetscriptJS<br>" +
|
||||||
"* Bug Fix: deleteServer() now fails if its called on the server you are currently connected to<br>" +
|
"* Bug Fix: deleteServer() now fails if its called on the server you are currently connected to<br>" +
|
||||||
|
2
dist/tests.bundle.js
vendored
2
dist/tests.bundle.js
vendored
@ -3446,7 +3446,7 @@ let CONSTANTS = {
|
|||||||
"* You now earn money from successfully completing Bladeburner contracts. The amount you earn is based " +
|
"* You now earn money from successfully completing Bladeburner contracts. The amount you earn is based " +
|
||||||
"on the difficulty of the contract.<br>" +
|
"on the difficulty of the contract.<br>" +
|
||||||
"* Completing Field Analysis in Bladeburner now grants 0.1 rank<br>" +
|
"* Completing Field Analysis in Bladeburner now grants 0.1 rank<br>" +
|
||||||
"* The maximum RAM you can get on a purchased server is now 1,048,576GB (2^20)<br>" +
|
"* The maximum RAM you can get on a purchased server is now 1,048,576 GB (2^20)<br>" +
|
||||||
"* Bug Fix: Fixed Netscript syntax highlighting issues with the new NetscriptJS<br>" +
|
"* Bug Fix: Fixed Netscript syntax highlighting issues with the new NetscriptJS<br>" +
|
||||||
"* Bug Fix: Netscript Functions now properly incur RAM costs in NetscriptJS<br>" +
|
"* Bug Fix: Netscript Functions now properly incur RAM costs in NetscriptJS<br>" +
|
||||||
"* Bug Fix: deleteServer() now fails if its called on the server you are currently connected to<br>" +
|
"* Bug Fix: deleteServer() now fails if its called on the server you are currently connected to<br>" +
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
v0.37.1
|
v0.37.1 - 5/22/2018
|
||||||
-------
|
-------------------
|
||||||
* You now earn money from successfully completing Bladeburner contracts. The amount you earn is based
|
* You now earn money from successfully completing Bladeburner contracts. The amount you earn is based
|
||||||
on the difficulty of the contract.
|
on the difficulty of the contract.
|
||||||
* Completing Field Analysis in Bladeburner now grants 0.1 rank
|
* Completing Field Analysis in Bladeburner now grants 0.1 rank
|
||||||
|
@ -103,7 +103,7 @@ var NetscriptHighlightRules = function(options) {
|
|||||||
"JSON|Math|" + // Other
|
"JSON|Math|" + // Other
|
||||||
"this|arguments|prototype|window|document" , // Pseudo
|
"this|arguments|prototype|window|document" , // Pseudo
|
||||||
"keyword":
|
"keyword":
|
||||||
"const|yield|import|get|set|async|await|foop|" +
|
"const|yield|import|get|set|async|await|" +
|
||||||
"break|case|catch|continue|default|delete|do|else|finally|for|function|" +
|
"break|case|catch|continue|default|delete|do|else|finally|for|function|" +
|
||||||
"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|" +
|
"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|" +
|
||||||
"__parent__|__count__|escape|unescape|with|__proto__|" +
|
"__parent__|__count__|escape|unescape|with|__proto__|" +
|
||||||
|
@ -488,7 +488,7 @@ let CONSTANTS = {
|
|||||||
"* You now earn money from successfully completing Bladeburner contracts. The amount you earn is based " +
|
"* You now earn money from successfully completing Bladeburner contracts. The amount you earn is based " +
|
||||||
"on the difficulty of the contract.<br>" +
|
"on the difficulty of the contract.<br>" +
|
||||||
"* Completing Field Analysis in Bladeburner now grants 0.1 rank<br>" +
|
"* Completing Field Analysis in Bladeburner now grants 0.1 rank<br>" +
|
||||||
"* The maximum RAM you can get on a purchased server is now 1,048,576GB (2^20)<br>" +
|
"* The maximum RAM you can get on a purchased server is now 1,048,576 GB (2^20)<br>" +
|
||||||
"* Bug Fix: Fixed Netscript syntax highlighting issues with the new NetscriptJS<br>" +
|
"* Bug Fix: Fixed Netscript syntax highlighting issues with the new NetscriptJS<br>" +
|
||||||
"* Bug Fix: Netscript Functions now properly incur RAM costs in NetscriptJS<br>" +
|
"* Bug Fix: Netscript Functions now properly incur RAM costs in NetscriptJS<br>" +
|
||||||
"* Bug Fix: deleteServer() now fails if its called on the server you are currently connected to<br>" +
|
"* Bug Fix: deleteServer() now fails if its called on the server you are currently connected to<br>" +
|
||||||
|
Loading…
Reference in New Issue
Block a user