From 96631d8225611b2b490ec1e8b5a84c1b0e53157a Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 30 Nov 2021 16:53:32 -0800 Subject: [PATCH] bump version to 1.2.5, fix enum for 13.2.0 --- docs/changelog.md | 10 ++++++++++ .../libvapours/include/vapours/ams/ams_api_version.h | 4 ++-- .../include/vapours/ams/ams_target_firmware.h | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index ae1dd6434..37737e49b 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,4 +1,14 @@ # Changelog +## 1.2.5 ++ Support was added for 13.2.0. ++ A number of minor issues were fixed and improvements were made, including: + + A bug was fixed that caused `mesosphère` to underreport the total memory size by 8MB for certain games which use newer system-resource-size memory management. + + This caused FIFA 19 to crash, and possibly other issues. + + Memory management changes were made to `sm` that save 0x5000 of memory. + + A microoptimization was made to the way `mesosphère` manages updating the debug register for hardware single-step support. + + Support was fixed for enabling `usb!usb30_force_enabled` on 13.0.0+. + + The work-in-progress unit testing framework was updated to use doctest instead of catch2. ++ General system stability improvements to enhance the user's experience. ## 1.2.4 + Changes were made to the way fs.mitm builds images when providing a layeredfs romfs. + Cache management (to avoid unnecessary rebuild) was revised, to add a grace period of ~500ms-1s between process closing romfs image and ams.mitm needing to rebuild if romfs is re-opened. diff --git a/libraries/libvapours/include/vapours/ams/ams_api_version.h b/libraries/libvapours/include/vapours/ams/ams_api_version.h index a1cb274d8..54bce5430 100644 --- a/libraries/libvapours/include/vapours/ams/ams_api_version.h +++ b/libraries/libvapours/include/vapours/ams/ams_api_version.h @@ -17,10 +17,10 @@ #define ATMOSPHERE_RELEASE_VERSION_MAJOR 1 #define ATMOSPHERE_RELEASE_VERSION_MINOR 2 -#define ATMOSPHERE_RELEASE_VERSION_MICRO 4 +#define ATMOSPHERE_RELEASE_VERSION_MICRO 5 #define ATMOSPHERE_RELEASE_VERSION ATMOSPHERE_RELEASE_VERSION_MAJOR, ATMOSPHERE_RELEASE_VERSION_MINOR, ATMOSPHERE_RELEASE_VERSION_MICRO #define ATMOSPHERE_SUPPORTED_HOS_VERSION_MAJOR 13 -#define ATMOSPHERE_SUPPORTED_HOS_VERSION_MINOR 1 +#define ATMOSPHERE_SUPPORTED_HOS_VERSION_MINOR 2 #define ATMOSPHERE_SUPPORTED_HOS_VERSION_MICRO 0 diff --git a/libraries/libvapours/include/vapours/ams/ams_target_firmware.h b/libraries/libvapours/include/vapours/ams/ams_target_firmware.h index 51b4ac21a..9f21286c3 100644 --- a/libraries/libvapours/include/vapours/ams/ams_target_firmware.h +++ b/libraries/libvapours/include/vapours/ams/ams_target_firmware.h @@ -65,7 +65,7 @@ #define ATMOSPHERE_TARGET_FIRMWARE_12_1_0 ATMOSPHERE_TARGET_FIRMWARE(12, 1, 0) #define ATMOSPHERE_TARGET_FIRMWARE_13_0_0 ATMOSPHERE_TARGET_FIRMWARE(13, 0, 0) #define ATMOSPHERE_TARGET_FIRMWARE_13_1_0 ATMOSPHERE_TARGET_FIRMWARE(13, 1, 0) -#define ATMOSPHERE_TARGET_FIRMWARE_13_2_0 ATMOSPHERE_TARGET_FIRMWARE(13, 1, 0) +#define ATMOSPHERE_TARGET_FIRMWARE_13_2_0 ATMOSPHERE_TARGET_FIRMWARE(13, 2, 0) #define ATMOSPHERE_TARGET_FIRMWARE_CURRENT ATMOSPHERE_TARGET_FIRMWARE_13_2_0