From b5dbe08fc834ec6ddf5eaf0e8a352c5c293c9373 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Tue, 9 Sep 2025 18:22:45 -0400 Subject: [Apworld] Add version number --- apworld/__init__.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apworld') diff --git a/apworld/__init__.py b/apworld/__init__.py index fc263c0..8051e0f 100644 --- a/apworld/__init__.py +++ b/apworld/__init__.py @@ -9,6 +9,8 @@ from .player_logic import Lingo2PlayerLogic from .regions import create_regions from .static_logic import Lingo2StaticLogic +MAJOR_VERSION = 1 +MINOR_VERSION = 0 class Lingo2WebWorld(WebWorld): rich_text_options_doc = True @@ -88,6 +90,7 @@ class Lingo2World(World): slot_data = { **self.options.as_dict(*slot_options), + "version": [MAJOR_VERSION, MINOR_VERSION], } return slot_data -- cgit 1.4.1