Skip to content

Commit

Permalink
chore: bump version to 2.33.12
Browse files Browse the repository at this point in the history
  • Loading branch information
atampy25 committed Apr 28, 2024
1 parent 2221106 commit 33bb01d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion For Build/Mods/Realistic AI/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "Realistic AI",
"description": "Makes the AI smarter, more realistic and more attentive in Master mode.",
"authors": ["Atampy26"],
"frameworkVersion": "2.33.11",
"frameworkVersion": "2.33.12",
"updateCheck": "https://hitman-resources.netlify.app/framework/updates/Realistic AI.json",
"options": [
{
Expand Down
2 changes: 1 addition & 1 deletion Mod Manager/src/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import memoize from "lodash.memoize"
import merge from "lodash.mergewith"
import semver from "semver"

export const FrameworkVersion = "2.33.11"
export const FrameworkVersion = "2.33.12"

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

Expand Down
2 changes: 1 addition & 1 deletion docs/Making a Mod.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Then, put a file called `manifest.json` in it. Paste the following into it:
"description": "Extremely good description",
"authors": ["YourNameOrUserName"],
"contentFolders": ["content"],
"frameworkVersion": "2.33.11"
"frameworkVersion": "2.33.12"
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/Manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Each mod contains a manifest. Manifests have the following format:
"description": "It is a mod",
"authors": ["Atampy26", "No one else"],
"version": "1.0.0", // The mod's version, used to compare against the linked JSON - make sure to use semantic versioning (Major.Minor.Patch)
"frameworkVersion": "2.33.11", // The framework version the mod is designed for
"frameworkVersion": "2.33.12", // The framework version the mod is designed for

/* -------------------------------------- Optional data -------------------------------------- */
"updateCheck": "https://hitman-resources.netlify.app/framework/updates/exampleMod.json", // A JSON (see Mod Updates) that will be checked for updates (MUST BE HTTPS)
Expand Down
2 changes: 1 addition & 1 deletion src/core.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const FrameworkVersion = "2.33.11"
const FrameworkVersion = "2.33.12"
const isDevBuild = false

import * as Sentry from "@sentry/node"
Expand Down

0 comments on commit 33bb01d

Please sign in to comment.