Make the new UI the default.

This commit is contained in:
Dan Albert 2021-05-15 03:38:29 -07:00
parent 31fa2d866f
commit 5050914d25
2 changed files with 9 additions and 2 deletions

View File

@ -8,7 +8,7 @@ Saves from 2.5 are not compatible with 3.0.
* **[Campaign]** Ground units can no longer be sold. To move units to a new location, transfer them.
* **[Campaign]** Ground units must now be recruited at a base with a factory and transferred to their destination. When buying units in the UI, the purchase will automatically be fulfilled at the closest factory, and a transfer will be created on the next turn.
* **[Campaign AI]** Every 30 minutes the AI will plan a CAP, so players can customize their mission better.
* **[UI]** Added (extremely WIP) new web based map UI. Enable with --new-map.
* **[UI]** Added new web based map UI. This is mostly functional but many of the old display options are a WIP. Revert to the old map with --old-map.
* **[UI]** Campaigns generated for an older or newer version of the game will now be marked as incompatible. They can still be played, but bugs may be present.
* **[Modding]** Campaigns now choose locations for factories to spawn.
* **[Modding]** Campaigns now use map structures as strike targets.

View File

@ -133,7 +133,14 @@ def parse_args() -> argparse.Namespace:
)
parser.add_argument(
"--new-map", action="store_true", help="Use the new map. Non functional."
"--new-map",
action="store_true",
default=True,
help="Use the new map. Functional but missing many display options.",
)
parser.add_argument(
"--old-map", dest="new_map", action="store_false", help="Use the old map."
)
new_game = subparsers.add_parser("new-game")