diff --git a/client/visualizer/src/config.ts b/client/visualizer/src/config.ts index 73c2842e..f0d0d1e5 100644 --- a/client/visualizer/src/config.ts +++ b/client/visualizer/src/config.ts @@ -154,7 +154,7 @@ export enum Mode { export function defaults(supplied?: any): Config { let year = "2023" let conf: Config = { - gameVersion: "3.0.9", //TODO: Change this on each release! + gameVersion: "3.0.10", //TODO: Change this on each release! year: year, map_extension: 'map'+year.substring(2), game_extension: 'bc'+year.substring(2), diff --git a/client/visualizer/src/constants.ts b/client/visualizer/src/constants.ts index 68bff34c..e2adf233 100644 --- a/client/visualizer/src/constants.ts +++ b/client/visualizer/src/constants.ts @@ -228,6 +228,21 @@ export const SERVER_MAPS: Map = new Map([ ["ThirtyFive", MapType.INTL_QUALIFYING], ["TimesUp", MapType.INTL_QUALIFYING], ["TreasureMap", MapType.INTL_QUALIFYING], + ["AbsoluteW", MapType.US_QUALIFYING], + ["Buggy", MapType.US_QUALIFYING], + ["Cave", MapType.US_QUALIFYING], + ["Cee", MapType.US_QUALIFYING], + ["Heart", MapType.US_QUALIFYING], + ["HotAirBalloon", MapType.US_QUALIFYING], + ["IslandHoppingTwo", MapType.US_QUALIFYING], + ["LightWork", MapType.US_QUALIFYING], + ["MassiveL", MapType.US_QUALIFYING], + ["Potions", MapType.US_QUALIFYING], + ["Rainbow", MapType.US_QUALIFYING], + ["Resign", MapType.US_QUALIFYING], + ["Sneaky", MapType.US_QUALIFYING], + ["Target", MapType.US_QUALIFYING], + ["Tightrope", MapType.US_QUALIFYING] ]) export function bodyTypeToString(bodyType: schema.BodyType) { diff --git a/engine/src/main/battlecode/common/GameConstants.java b/engine/src/main/battlecode/common/GameConstants.java index bc49573c..38b98b07 100644 --- a/engine/src/main/battlecode/common/GameConstants.java +++ b/engine/src/main/battlecode/common/GameConstants.java @@ -10,7 +10,7 @@ public class GameConstants { /** * The current spec version the server compiles with. */ - public static final String SPEC_VERSION = "3.0.9"; + public static final String SPEC_VERSION = "3.0.10"; // ********************************* // ****** MAP CONSTANTS ************ diff --git a/specs/specs.md.html b/specs/specs.md.html index 33cd4873..62cd9961 100644 --- a/specs/specs.md.html +++ b/specs/specs.md.html @@ -17,7 +17,7 @@ # Formal specification -*This is the formal specification of the Battlecode 2023 game.* Current version: *3.0.9* +*This is the formal specification of the Battlecode 2023 game.* Current version: *3.0.10* **Welcome to Battlecode 2023: Tempest.** @@ -291,8 +291,11 @@ # Appendix: Changelog -- Version 3.0.5 (January 31, 2023) - - Released US Qualifier maps to public +- Version 3.0.10 (January 31, 2023) + - Released US Qualifier maps to public in client + +- Version 3.0.9 (January 31, 2023) + - Released US Qualifier maps to public in engine - Version 3.0.5 (January 29, 2023) - Fix Repetition and Sakura maps