diff --git a/client/visualizer/src/config.ts b/client/visualizer/src/config.ts index d67171d6..8abba8cb 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: "2.0.2", //TODO: Change this on each release! + gameVersion: "2.0.3", //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 23f6a55d..25123e51 100644 --- a/client/visualizer/src/constants.ts +++ b/client/visualizer/src/constants.ts @@ -192,7 +192,12 @@ export const SERVER_MAPS: Map = new Map([ ["Rectangle", MapType.SPRINT_1], ["Scatter", MapType.SPRINT_1], ["Sun", MapType.SPRINT_1], - ["Tacocat", MapType.SPRINT_1] + ["Tacocat", MapType.SPRINT_1], + ["Turtle", MapType.DEFAULT], + ["Dreamy", MapType.DEFAULT], + ["Forest", MapType.DEFAULT], + ["PairedProgramming", MapType.DEFAULT], + ["Rewind", MapType.DEFAULT] ]) 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 d40fed53..0be50583 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 = "2.0.2"; + public static final String SPEC_VERSION = "2.0.3"; // ********************************* // ****** MAP CONSTANTS ************ diff --git a/specs/specs.md.html b/specs/specs.md.html index 63775e87..91f22812 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: *2.0.2* +*This is the formal specification of the Battlecode 2023 game.* Current version: *2.0.3* **Welcome to Battlecode 2023: Tempest.** @@ -291,6 +291,11 @@ # Appendix: Changelog +- Version 2.0.3 (January 20, 2023) + - Released additional maps with more clouds + - Client Fixes: + - Currents now display direction in map editor + - Version 2.0.2 (January 19, 2023) - Spec Fixes: - Anchor healing frequency fixed