Skip to content

Commit 440e7dc

Browse files
chore: bump version to 2.33.23 (#812)
1 parent c1a3366 commit 440e7dc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

For Build/Mods/Realistic AI/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "Realistic AI",
55
"description": "Makes the AI smarter, more realistic and more attentive in Master mode.",
66
"authors": ["Atampy26"],
7-
"frameworkVersion": "2.33.22",
7+
"frameworkVersion": "2.33.23",
88
"updateCheck": "https://hitman-resources.netlify.app/framework/updates/Realistic AI.json",
99
"options": [
1010
{

Mod Manager/src/lib/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import memoize from "lodash.memoize"
1414
import merge from "lodash.mergewith"
1515
import semver from "semver"
1616

17-
export const FrameworkVersion = "2.33.22"
17+
export const FrameworkVersion = "2.33.23"
1818

1919
const validateManifest = new Ajv({ strict: false }).compile(manifestSchema)
2020

docs/Making a Mod.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Then, put a file called `manifest.json` in it. Paste the following into it:
3434
"description": "Extremely good description",
3535
"authors": ["YourNameOrUserName"],
3636
"contentFolders": ["content"],
37-
"frameworkVersion": "2.33.22"
37+
"frameworkVersion": "2.33.23"
3838
}
3939
```
4040

docs/Manifest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Each mod contains a manifest. Manifests have the following format:
1313
"description": "It is a mod",
1414
"authors": ["Atampy26", "No one else"],
1515
"version": "1.0.0", // The mod's version, used to compare against the linked JSON - make sure to use semantic versioning (Major.Minor.Patch)
16-
"frameworkVersion": "2.33.22", // The framework version the mod is designed for
16+
"frameworkVersion": "2.33.23", // The framework version the mod is designed for
1717

1818
/* -------------------------------------- Optional data -------------------------------------- */
1919
"updateCheck": "https://hitman-resources.netlify.app/framework/updates/exampleMod.json", // A JSON (see Mod Updates) that will be checked for updates (MUST BE HTTPS)

src/core.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const FrameworkVersion = "2.33.22"
1+
const FrameworkVersion = "2.33.23"
22
const isDevBuild = false
33

44
import * as Sentry from "@sentry/node"

0 commit comments

Comments
 (0)