diff --git a/src/Constants.ts b/src/Constants.ts index d5c70acfc..5686e5b58 100644 --- a/src/Constants.ts +++ b/src/Constants.ts @@ -107,16 +107,10 @@ export const CONSTANTS = { // Also update doc/source/changelog.rst 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 here (commit history) -### CHANGES - -- No changes yet since 2.6.2 release - -### OTHER - -- Nerf noodle bar +See 2.6.2 changelog here `, } as const; diff --git a/src/SaveObject.ts b/src/SaveObject.ts index 171097197..99883506e 100644 --- a/src/SaveObject.ts +++ b/src/SaveObject.ts @@ -853,6 +853,7 @@ function createNewUpdateText() { "Please report any bugs/issues through the GitHub repository " + "or the Bitburner subreddit (reddit.com/r/bitburner).\n\n" + CONSTANTS.LatestUpdate, + true, ), 1000, ); @@ -867,6 +868,7 @@ function createBetaUpdateText() { "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" + CONSTANTS.LatestUpdate, + true, ), 1000, ); diff --git a/src/Terminal/commands/changelog.ts b/src/Terminal/commands/changelog.ts index 78753e297..b4a333bbf 100644 --- a/src/Terminal/commands/changelog.ts +++ b/src/Terminal/commands/changelog.ts @@ -1,3 +1,3 @@ import { CONSTANTS } from "../../Constants"; 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);