Lazy changelog update

Just referencing commit history for changelog right now
This commit is contained in:
Snarling 2024-08-15 18:09:42 -04:00
parent a48bfba536
commit d82247a404
3 changed files with 6 additions and 10 deletions

@ -107,16 +107,10 @@ export const CONSTANTS = {
// Also update doc/source/changelog.rst // Also update doc/source/changelog.rst
LatestUpdate: ` LatestUpdate: `
## v2.6.3 Dev: Last updated 3 July 2024 ## v2.6.3 Dev: Last updated 15 August 2024
See 2.6.2 changelog at https://github.com/bitburner-official/bitburner-src/blob/v2.6.2/src/Documentation/doc/changelog.md See current dev branch changes <a href='https://github.com/bitburner-official/bitburner-src/commits/a48bfba53621b0f93e271a1a52cedd6c08d41713/?since=2024-07-03&until=2024-08-15&before=a48bfba53621b0f93e271a1a52cedd6c08d41713+35'>here</a> (commit history)
### CHANGES See 2.6.2 changelog <a href='https://github.com/bitburner-official/bitburner-src/blob/v2.6.2/src/Documentation/doc/changelog.md'>here</a>
- No changes yet since 2.6.2 release
### OTHER
- Nerf noodle bar
`, `,
} as const; } as const;

@ -853,6 +853,7 @@ function createNewUpdateText() {
"Please report any bugs/issues through the GitHub repository " + "Please report any bugs/issues through the GitHub repository " +
"or the Bitburner subreddit (reddit.com/r/bitburner).\n\n" + "or the Bitburner subreddit (reddit.com/r/bitburner).\n\n" +
CONSTANTS.LatestUpdate, CONSTANTS.LatestUpdate,
true,
), ),
1000, 1000,
); );
@ -867,6 +868,7 @@ function createBetaUpdateText() {
"Please report any bugs/issues through the github repository (https://github.com/bitburner-official/bitburner-src/issues) " + "Please report any bugs/issues through the github repository (https://github.com/bitburner-official/bitburner-src/issues) " +
"or the Bitburner subreddit (reddit.com/r/bitburner).\n\n" + "or the Bitburner subreddit (reddit.com/r/bitburner).\n\n" +
CONSTANTS.LatestUpdate, CONSTANTS.LatestUpdate,
true,
), ),
1000, 1000,
); );

@ -1,3 +1,3 @@
import { CONSTANTS } from "../../Constants"; import { CONSTANTS } from "../../Constants";
import { dialogBoxCreate } from "../../ui/React/DialogBox"; import { dialogBoxCreate } from "../../ui/React/DialogBox";
export const changelog = () => dialogBoxCreate("Most recent changelog info:\n\n" + CONSTANTS.LatestUpdate); export const changelog = () => dialogBoxCreate("Most recent changelog info:\n\n" + CONSTANTS.LatestUpdate, true);