From 5450b2bee5a1bcc40800aea0d47e10de60f07b65 Mon Sep 17 00:00:00 2001 From: fincs Date: Sat, 12 May 2018 21:21:02 +0200 Subject: [PATCH] Release 1.5.0 --- Changelog.md | 16 ++++++++++++++++ libctru/Makefile | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index da6cb9d..1f0ab5d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,21 @@ # Changelog +## Version 1.5.0 + +- Added new decompression API which supports LZSS/LZ10, LZ11, RLE & Huffman formats, and which can read compressed data from memory or from a file. +- Added srvSetBlockingPolicy, which controls whether srvGetServiceHandle blocks when the service isn't yet registered (or returns an error otherwise). +- Added ACU commands: ACU_GetStatus, ACU_GetSecurityMode, ACU_GetSSIDLength, ACU_GetSecurityMode, ACU_GetProxyEnable, ACU_GetProxyPort, ACU_GetProxyUserName, ACU_GetProxyPassword, ACU_GetLastErrorCode, ACU_GetLastDetailErrorCode. +- Added CFGI commands: CFGI_SecureInfoGetSerialNumber, CFGU_IsNFCSupported, CFGI_GetLocalFriendCodeSeed, CFGI_GetLocalFriendCodeSeedData, CFGI_GetSecureInfoData, CFGI_GetSecureInfoSignature. +- Added MCUHWC commands: MCUHWC_SetWifiLedState, MCUHWC_SetPowerLedState, MCUHWC_Get3dSliderLevel, MCUHWC_GetFwVerHigh, MCUHWC_GetFwVerLow. +- Added NS commands: NS_TerminateTitle, NS_TerminateProcessTID (with timeout), NS_RebootSystem. +- Added PM commands: PM_TerminateCurrentApplication, PM_TerminateProcess, PM_UnregisterProcess. +- Overhauled NDMU service support and added many commands that were previously missing. +- Fixed bugs in srv:pm implementation. +- Fixed calculation of vertical texture coordinates in fontCalcGlyphPos. +- Fixed shaderProgramSetGshInputPermutation. +- Fixed and added clock speed constants (affects system clock and NDSP). +- Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. + ## Version 1.4.0 - Added LightSemaphore synchronization primitive. diff --git a/libctru/Makefile b/libctru/Makefile index e851370..44b4520 100644 --- a/libctru/Makefile +++ b/libctru/Makefile @@ -9,7 +9,7 @@ endif include $(DEVKITARM)/base_rules export LIBCTRU_MAJOR := 1 -export LIBCTRU_MINOR := 4 +export LIBCTRU_MINOR := 5 export LIBCTRU_PATCH := 0