Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to patch 1.3.0 #259

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,23 @@ const statsPatchSelector: Record<
group: string;
}
> = {
"1.3.0": {
from: "2023-10-04",
to: "now",
value: "1.3.0",
label: "1.3.0",
group: "Umber Wasp",
},
"1.2.x": {
from: "2023-07-25",
to: "now",
to: "2023-10-04",
value: "1.2.x",
label: "1.2.x",
group: "Emerald Bear",
},
"1.2.3": {
from: "2023-08-24",
to: "now",
to: "2023-10-04",
value: "1.2.3",
label: "1.2.3 - 1.2.5",
group: "Emerald Bear",
Expand Down Expand Up @@ -95,11 +102,16 @@ const statsPatchSelector: Record<
};

// Latest patch needs to be a key to patches object
const latestPatch = "1.2.5";
const latestPatch = "1.3.0";

// Get patchTimeSeconds here https://www.unixtimestamp.com/
const patches: Record<string, { dataTag: string; dataTime: string; patchTimeSeconds?: number }> =
{
"1.3.0": {
dataTag: "v1.3.0-1", // This is the tag of the data repo
dataTime: "04/October/2023", // The date when was the data tag created (the data extracted from game)
patchTimeSeconds: 1696441973, // The date when the patch was released (in seconds)
},
"1.2.5": {
dataTag: "v1.2.5-1", // This is the tag of the data repo
dataTime: "31/August/2023", // The date when was the data tag created (the data extracted from game)
Expand Down