Release 1.6.0

This commit is contained in:
fincs 2019-06-28 17:21:14 +02:00
parent ed7674626e
commit 751dd3b42d
2 changed files with 24 additions and 5 deletions

View File

@ -1,5 +1,24 @@
# Changelog # 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 ## Version 1.5.1
- Added support for the FRD service. - Added support for the FRD service.

View File

@ -9,8 +9,8 @@ endif
include $(DEVKITARM)/base_rules include $(DEVKITARM)/base_rules
export LIBCTRU_MAJOR := 1 export LIBCTRU_MAJOR := 1
export LIBCTRU_MINOR := 5 export LIBCTRU_MINOR := 6
export LIBCTRU_PATCH := 1 export LIBCTRU_PATCH := 0
VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH) VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH)