From 751dd3b42df2134e302b861e5d2bf5ce8f8f4be2 Mon Sep 17 00:00:00 2001 From: fincs Date: Fri, 28 Jun 2019 17:21:14 +0200 Subject: [PATCH] Release 1.6.0 --- Changelog.md | 25 ++++++++++++++++++++++--- libctru/Makefile | 4 ++-- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 2d3a64a5d..1a951c592 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,24 @@ # Changelog +## Version 1.6.0 + +- Major overhaul to font loading code in order to support loading external fonts. +- Major overhaul to PM service wrappers, now with separate support for pm:app and pm:dbg. +- Added Rosalina GDB host IO (gdbhio) support. +- Added support for the fs:REG service. +- Added support for the PxiPM service. +- Added PM launch flag definitions. +- Added SO_BROADCAST. +- Added new APT helper functions: aptIsHomeAllowed, aptSetHomeAllowed, aptIsHomePressed. +- Added support for the Mii selector libapplet, and other improvements to Mii support. +- Renamed IPC_Desc_CurProcessHandle to IPC_Desc_CurProcessId. +- Changed signature of LOADER_RegisterProgram to use FS_ProgramInfo structs. +- Fixed IPC bugs in the Loader service. +- Fixed svcCreateResourceLimit. +- Fixed corner case bug in GPUCMD_Add. +- Fixed bugs in select and herror. +- Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. + ## Version 1.5.1 - Added support for the FRD service. @@ -50,14 +69,14 @@ - svcCreateSessionToPort - svcSetGpuProt - svcSetWifiEnabled -- Additional functions +- Additional functions - implement httpcAddPostDataBinary - implement PTMU_GetAdapterState - implement GSPLCD_GetBrightness - add threadDetach - srv fixes - Fix srvPublishToSubscriber documentation - - Fix handling of service/named port names of length 8 + - Fix handling of service/named port names of length 8 - Fix srvRegisterPort - debugging support - Add support for user-specified exception handlers @@ -69,7 +88,7 @@ - Correct GPU_PROCTEX_LUTID definition - Add GPU_FOGMODE, GPU_GASMODE and GPU_GASLUTINPUT - Other improvements and minor adjustments for overall system stability to enhance the user experience - + ## Version 1.2.1 - Added NFC support diff --git a/libctru/Makefile b/libctru/Makefile index e23a5822e..b1e5b3b18 100644 --- a/libctru/Makefile +++ b/libctru/Makefile @@ -9,8 +9,8 @@ endif include $(DEVKITARM)/base_rules export LIBCTRU_MAJOR := 1 -export LIBCTRU_MINOR := 5 -export LIBCTRU_PATCH := 1 +export LIBCTRU_MINOR := 6 +export LIBCTRU_PATCH := 0 VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH)