diff --git a/manifest.json b/manifest.json index 113d5fb..4f80aef 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "Metroid: Zero Mission - Archipelago", "game_name": "Metroid: Zero Mission", - "package_version": "1.1", + "package_version": "1.2", "package_uid": "MetroidZeroMission-Archipelago", "platform": "Windows", "author": "Ladybunne", diff --git a/versions.json b/versions.json index bd0fed8..89aab6d 100644 --- a/versions.json +++ b/versions.json @@ -1,5 +1,18 @@ { "versions": [ + { + "package_version": "1.2", + "download_url": "https://github.com/ladybunne/MetroidZeroMission_PopTrackerPack/releases/download/v1.2/MetroidZeroMission_PopTrackerPack.zip", + "sha256": "ed58887edbbe28fd40e7041a214aa4b05ed4e8b6b9ca47dff9ef1cd564117d92", + "changelog": [ + "Added up-to-date logic as of v0.2.2 of the apworld.", + "Added images for each option.", + "Added scoutability logic to some locations (all areas except Chozodia).", + "Added minor out-of-logic indicators to show post-Kraid and post-Ridley locations are accessible if they can be beaten out of logic.", + "Added two new layouts: items on left and items only.", + "General design and polish pass of all layouts." + ] + }, { "package_version": "1.1", "download_url": "https://github.com/ladybunne/MetroidZeroMission_PopTrackerPack/releases/download/v1.1/MetroidZeroMission_PopTrackerPack.zip", diff --git a/zip-pack.ps1 b/zip-pack.ps1 index a4e1681..87f737a 100644 --- a/zip-pack.ps1 +++ b/zip-pack.ps1 @@ -1,7 +1,7 @@ del MetroidZeroMission_PopTrackerPack.zip del output\* -Recurse -$files = "images\", "items\", "layouts\", "locations\", "maps\", "scripts\", "manifest.json", "settings.json" +$files = "images\", "items\", "layouts\", "locations\", "maps\", "scripts\", "variant_items_on_left\", "variant_items_only\", "manifest.json", "settings.json" foreach($file in $files) { Copy-Item $file -Destination output\ -Recurse }