Skip to content

Commit

Permalink
fix: use 1.21.1 on guide website
Browse files Browse the repository at this point in the history
  • Loading branch information
qixils committed Sep 4, 2024
1 parent c35eeae commit 8de4ee0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions website/utils/versions.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export const supportedPaperVersions: string[] = ["1.21", "1.20.6"]
export const paperVersions: string[] = ["1.21", "1.20.6", "1.20.4", "1.20.2", "1.20.1", "1.19.4"];
export const supportedPaperVersions: string[] = ["1.21.1", "1.20.6"]
export const paperVersions: string[] = ["1.21.1", "1.20.6", "1.20.4", "1.20.2", "1.20.1", "1.19.4"];
export const paperLatest = paperVersions[0];
export const supportedFabricVersions: string[] = ["1.21"];
export const fabricVersions: string[] = ["1.21", "1.20.6", "1.20.4", "1.20.2", "1.20.1", "1.19.4", "1.19.2"];
export const supportedFabricVersions: string[] = ["1.21.1"];
export const fabricVersions: string[] = ["1.21.1", "1.20.6", "1.20.4", "1.20.2", "1.20.1", "1.19.4", "1.19.2"];
export const fabricLatest = fabricVersions[0];
export const spongeVersions: Map<string, number> = new Map([["1.20.6", 11], ["1.16.5", 8], ["1.12.2", 7]]);
export const spongeVersionsArray: string[] = Array.from(spongeVersions.keys());
Expand Down

0 comments on commit 8de4ee0

Please sign in to comment.