From 98324d412ff6e11ed9ed0ee57e760f24f7f47fa2 Mon Sep 17 00:00:00 2001 From: fincs Date: Thu, 9 Feb 2023 20:11:27 +0100 Subject: [PATCH] libctru v2.1.2 --- Changelog.md | 14 ++++++++++++++ libctru/Makefile | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index d1fd25d17..8aa6be228 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,19 @@ # Changelog +## Version 2.1.2 + +- Added cdc:CHK service wrappers +- Added support for `clock_gettime` (#495) +- svc: Fixed svcGetDmaState writing out-of-bounds data +- svc: Changed svcCreateCodeSet address parameters to pointer-sized integers, improve documentation +- fspxi: Fixed FSPXI_CreateFile and FSPXI_WriteFile (#496) +- ndsp: Added various ndspGet\* and ndspChnGet\* methods (#505, #506, #507) +- ir: Added IRU_GetSend/RecvFinishedEvent (#513) +- errf: Added ERRF_SetUserString and clarify documentation +- mcuhwc: Added mcuHwcGetSessionHandle +- apt: Fixed dirty homebrew chainload bug (used when Home Menu hasn't been started) +- Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. + ## Version 2.1.1 - FPSCR is now initialized with a predictable value in all threads (including the main thread). diff --git a/libctru/Makefile b/libctru/Makefile index be396bcc5..76070c6ea 100644 --- a/libctru/Makefile +++ b/libctru/Makefile @@ -10,7 +10,7 @@ include $(DEVKITARM)/base_rules export LIBCTRU_MAJOR := 2 export LIBCTRU_MINOR := 1 -export LIBCTRU_PATCH := 1 +export LIBCTRU_PATCH := 2 VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH)