Skip to content

Commit

Permalink
Update to patch 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
petrvecera committed Dec 7, 2024
1 parent 3e39a78 commit 8f780ff
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const getEdgioEnvName = (): string | null => {
};

// This controls the default patch selector in the stats page // this needs to be key statsPatchSelector object
const defaultStatsPatchSelector = "1.9.2";
const defaultStatsPatchSelector = "1.9.3";

// This controls the patch selector in the stats page
const statsPatchSelector: Record<
Expand All @@ -55,11 +55,11 @@ const statsPatchSelector: Record<
group: string;
}
> = {
"1.9.2": {
"1.9.3": {
from: "2024-11-26",
to: "now",
value: "1.9.2",
label: "1.9.0 - 1.9.2",
value: "1.9.3",
label: "1.9.0 - 1.9.3",
group: "Orchid Spider",
},
"1.8.2": {
Expand Down Expand Up @@ -184,12 +184,12 @@ const statsPatchSelector: Record<
};

// Latest patch needs to be a key to patches object
const latestPatch = "1.9.2";
const latestPatch = "1.9.3";

// Get patchTimeSeconds here https://www.unixtimestamp.com/
const patches: Record<string, { dataTag: string; dataTime: string; patchTimeSeconds?: number }> =
{
"1.9.2": {
"1.9.3": {
dataTag: "v1.9.2-1",
dataTime: "28/Nov/2024",
},
Expand Down

0 comments on commit 8f780ff

Please sign in to comment.