Skip to content

Commit

Permalink
Update to 1.6.5 (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrvecera authored May 1, 2024
1 parent 8a7cb6e commit 47f5de3
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,16 @@ const statsPatchSelector: Record<
group: string;
}
> = {
"1.6.5": {
from: "2024-05-02",
to: "now",
value: "1.6.5",
label: "1.6.5",
group: "Coral Viper",
},
"1.6.1": {
from: "2024-04-11",
to: "now",
to: "2024-05-01",
value: "1.6.1",
label: "1.6.1",
group: "Coral Viper",
Expand Down Expand Up @@ -152,11 +159,15 @@ const statsPatchSelector: Record<
};

// Latest patch needs to be a key to patches object
const latestPatch = "1.6.1";
const latestPatch = "1.6.5";

// Get patchTimeSeconds here https://www.unixtimestamp.com/
const patches: Record<string, { dataTag: string; dataTime: string; patchTimeSeconds?: number }> =
{
"1.6.5": {
dataTag: "v1.6.5-1", // This is the tag of the data repo
dataTime: "01/May/2024", // The date when was the data tag created (the data extracted from game)
},
"1.6.1": {
dataTag: "v1.6.1-2", // This is the tag of the data repo
dataTime: "01/April/2024", // The date when was the data tag created (the data extracted from game)
Expand Down

0 comments on commit 47f5de3

Please sign in to comment.