libctru v2.1.2

This commit is contained in:
fincs 2023-02-09 20:11:27 +01:00
parent cd78fb05cb
commit 98324d412f
No known key found for this signature in database
GPG Key ID: 62C7609ADA219C60
2 changed files with 15 additions and 1 deletions

View File

@ -1,5 +1,19 @@
# Changelog # 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 ## Version 2.1.1
- FPSCR is now initialized with a predictable value in all threads (including the main thread). - FPSCR is now initialized with a predictable value in all threads (including the main thread).

View File

@ -10,7 +10,7 @@ include $(DEVKITARM)/base_rules
export LIBCTRU_MAJOR := 2 export LIBCTRU_MAJOR := 2
export LIBCTRU_MINOR := 1 export LIBCTRU_MINOR := 1
export LIBCTRU_PATCH := 1 export LIBCTRU_PATCH := 2
VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH) VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH)