This commit is contained in:
Olivier Gagnon 2021-06-13 11:15:02 -04:00
parent 19f51b684b
commit 321dca4993
8 changed files with 88 additions and 20 deletions

File diff suppressed because one or more lines are too long

16
dist/engineStyle.css vendored

@ -1789,6 +1789,22 @@ button {
float: right;
padding: 4px; }
.interactive-tutorial-command {
background-color: #000;
color: #adff2f;
white-space: nowrap; }
.interactive-tutorial-code {
background-color: #272822;
color: white;
padding: 3px; }
.interactive-tutorial-tab {
background-color: #555;
color: #e6e6e6;
padding: 3px;
box-shadow: 0 0 3px #000; }
/* COLORS */
/* Attributes */
* {

26
dist/vendor.bundle.js vendored

File diff suppressed because one or more lines are too long

@ -3,6 +3,55 @@
Changelog
=========
v0.52.0 - 2021-06-13 Infiltration 2.0 (hydroflame & community)
--------------------------------------------------------------
**Infiltration**
* Completely reworked. Not the same mechanic at all.
**Terminal**
* tail is smarter. It automatically assume the only possible options in some
cases.
**Intelligence**
* Now available when starting BN5 instead of after beating it for the first
time.
* Nerf the effect of intelligence on reputation gain.
**Augmentation**
* Added a new augmentation, the 'Unstable Circadian Modulator', whose
gimmick is that its stats are randomized every hour.
**Netscript**
* 'getPlayer' is not a singularity function anymore.
* 'hacknetNodes.constants' returns the correct values.
* 'createGang' has been added.
* 'inGang' has been added.
**Tutorial**
* Updated the tutorial. Made it look cleaner, fixed typos, etc.
**Misc.**
* Fix many typos in literature (@kwazygloo)
* Fix being able to unfocus from gym and university.
* Fix being able to do hacking missions while unfocused.
* Fix many typos in Augmentation descriptions (@kwazygloo)
* More numbers handle absurdly large values. (@Tesseract1234567890)
* Fix many typos (@Tesseract1234567890)
* Fixed an issue that caused a UI desync when sleeves were set to workout
stats other than strength at the gym.
* Fix weird alignment of donation text box and button. (@Tesseract1234567890)
* Fixed an issue where reputation could be transfered to new jobs when unfocused.
* Empty stack traces should no longer appear.
* Purchasing anything with Infinity money doesn't result in NaN.
v0.51.10 - 2021-05-31 Focus Mark, Focus! (hydroflame)
-----------------------------------------------------

@ -64,9 +64,9 @@ documentation_title = '{0} Documentation'.format(project)
# built documents.
#
# The short X.Y version.
version = '0.51'
version = '0.52'
# The full version, including alpha/beta/rc tags.
release = '0.51.9'
release = '0.52.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

@ -65,7 +65,7 @@
<span id="augmentations-notification" class="notification-off"> </span>
</li>
<li id="hacknet-nodes-tab" class="mainmenu-accordion-panel">
<button id="hacknet-nodes-menu-link"> Hacknet Nodes </button>
<button id="hacknet-nodes-menu-link"> Hacknet </button>
</li>
<li id="sleeves-tab" class="mainmenu-accordion-panel">
<button id="sleeves-menu-link"> Sleeves </button>

@ -126,5 +126,5 @@
"watch": "webpack --watch --mode production",
"watch:dev": "webpack --watch --mode development"
},
"version": "0.51.10"
"version": "0.52.0"
}

@ -226,9 +226,12 @@ export const CONSTANTS: IMap<any> = {
LatestUpdate:
`
v0.52.0 - 2021-06-12 Infiltration 2.0 (hydroflame)
v0.52.0 - 2021-06-13 Infiltration 2.0 (hydroflame)
-------
Infiltration
* Completely reworked. Not the same mechanic at all.
Terminal
* tail is smarter. It automatically assume the only possible options in some
cases.