Skip to content

Commit c4830fd

Browse files
committed
feat: bump server versions
1 parent 5eba8f4 commit c4830fd

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

components/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ app.use(
337337
break
338338
case "fghi4567xQOCheZIin0pazB47qGUvZw4":
339339
case STEAM_NAMESPACE_2021:
340-
req.serverVersion = "8-22"
340+
req.serverVersion = "8-23"
341341
break
342342
default:
343343
res.status(400).json({ message: "no game data" })
@@ -472,7 +472,7 @@ app.use(
472472
}
473473

474474
if (
475-
["6-74", "7-3", "7-17", "8-22"].includes(
475+
["6-74", "7-3", "7-17", "8-23"].includes(
476476
<string>req.serverVersion,
477477
)
478478
) {

components/menus/menuSystem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import { SyncBailHook, SyncHook } from "../hooksImpl"
3333
const menuSystemPreRouter = Router()
3434
const menuSystemRouter = Router()
3535

36-
// /resources-8-22/
36+
// /resources-8-23/
3737

3838
/**
3939
* A class for managing the menu system's fetched JSON data.

components/officialServerAuth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function createUrlencodedBody(params: Record<string, string>): string {
4545

4646
const requestHeadersH3 = {
4747
"User-agent": "G2 Http/1.0 (Windows NT 10.0; DX12/1; d3d12/1)",
48-
Version: "8.22.0",
48+
Version: "8.23.0",
4949
}
5050

5151
const requestHeadersH2 = {

components/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const IS_LAUNCHER = process.env.IS_PEACOCK_LAUNCHER === "true"
4545

4646
export const ServerVer: ServerVersion = {
4747
_Major: 8,
48-
_Minor: 22,
48+
_Minor: 23,
4949
_Build: 0,
5050
_Revision: 0,
5151
}

packaging/extractChallengeData.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ async function extract(locationParent, jwt, gameVersion, pro1) {
114114
"User-Agent": "G2 Http/1.0 (Windows NT 10.0; DX12/1; d3d12/1)",
115115
"Content-Type": "application/json",
116116
Accept: "application/json, text/*, image/*, application/json",
117-
Version: gameVersion === "h1" ? "6.74.0" : "8.22.0",
117+
Version: gameVersion === "h1" ? "6.74.0" : "8.23.0",
118118
Authorization: `bearer ${jwt}`,
119119
},
120120
})

packaging/extractElusivesChallengeData.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ async function extract(locationParent, jwt, apiUrl) {
425425
"User-Agent": "G2 Http/1.0 (Windows NT 10.0; DX12/1; d3d12/1)",
426426
"Content-Type": "application/json",
427427
Accept: "application/json, text/*, image/*, application/json",
428-
Version: "8.22.0",
428+
Version: "8.23.0",
429429
Authorization: `bearer ${jwt}`,
430430
},
431431
})

packaging/extractFeaturedContracts.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async function extract(jwt, gameVersion) {
7070
"User-Agent": "G2 Http/1.0 (Windows NT 10.0; DX12/1; d3d12/1)",
7171
"Content-Type": "application/json",
7272
Accept: "application/json, text/*, image/*, application/json",
73-
Version: gameVersion === "h1" ? "6.74.0" : "8.22.0",
73+
Version: gameVersion === "h1" ? "6.74.0" : "8.23.0",
7474
Authorization: `bearer ${jwt}`,
7575
},
7676
})

static/ServerVersionConfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"Versions": [
33
{
44
"Name": "pc-prod",
5-
"GAME_VER": "8.22.0",
5+
"GAME_VER": "8.23.0",
66
"SERVER_VER": {
77
"Metrics": {
88
"MetricsServerHost": "http://localhost",

0 commit comments

Comments
 (0)