From a88b5af7a84d994fa24e258ce9dbf34e009c2c7b Mon Sep 17 00:00:00 2001 From: fincs Date: Tue, 17 Sep 2024 00:11:09 +0200 Subject: [PATCH] libctru v2.4.0 --- Changelog.md | 12 ++++++++++++ libctru/Makefile | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 5025862..6d4c4ef 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,17 @@ # Changelog +## Version 2.4.0 + +- **Added full support of all QTM services**, with extensive documentation and technical details in `qtm.h` and `qtmc.h`** (breaking change); examples have been updated for this +- Added MCUHWC_SetInfoLedPattern +- Added ndspChnGetFormat +- Fixed PTMSYSM_CheckNew3DS +- Fixed NDMU_QueryStatus +- Fixed a few service commands improperly deserializing boolean output +- Fixed documentation of ACU_GetWifiStatus and ACU_SetAllowApType +- Fixed shaderInstanceInit to initialize all fields +- Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. + ## Version 2.3.0 - Fix typo in docs by @DeltaF1 in https://github.com/devkitPro/libctru/pull/525 diff --git a/libctru/Makefile b/libctru/Makefile index 77f9e87..3f277e1 100644 --- a/libctru/Makefile +++ b/libctru/Makefile @@ -9,8 +9,8 @@ endif include $(DEVKITARM)/base_rules export LIBCTRU_MAJOR := 2 -export LIBCTRU_MINOR := 2 -export LIBCTRU_PATCH := 2 +export LIBCTRU_MINOR := 4 +export LIBCTRU_PATCH := 0 VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH)