Skip to content

Commit

Permalink
Merge pull request #583
Browse files Browse the repository at this point in the history
Update to patch 181
  • Loading branch information
petrvecera authored Sep 26, 2024
2 parents 4f0ccaa + 5dcfc15 commit 0579704
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 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.8.0";
const defaultStatsPatchSelector = "1.8.1";

// This controls the patch selector in the stats page
const statsPatchSelector: Record<
Expand All @@ -55,9 +55,16 @@ const statsPatchSelector: Record<
group: string;
}
> = {
"1.8.1": {
from: "2024-09-26",
to: "now",
value: "1.8.1",
label: "1.8.1",
group: "Patch 1.8.x",
},
"1.8.0": {
from: "2024-09-17",
to: "now",
to: "2024-09-25",
value: "1.8.0",
label: "1.8.0",
group: "Patch 1.8.x",
Expand Down Expand Up @@ -173,11 +180,15 @@ const statsPatchSelector: Record<
};

// Latest patch needs to be a key to patches object
const latestPatch = "1.8.0";
const latestPatch = "1.8.1";

// Get patchTimeSeconds here https://www.unixtimestamp.com/
const patches: Record<string, { dataTag: string; dataTime: string; patchTimeSeconds?: number }> =
{
"1.8.1": {
dataTag: "v1.8.1-1",
dataTime: "25/Sep/2024",
},
"1.8.0": {
dataTag: "v1.8.0-1",
dataTime: "17/Sep/2024",
Expand Down

0 comments on commit 0579704

Please sign in to comment.