diff --git a/Changelog.md b/Changelog.md index 1eb24b295..833455f89 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,30 @@ # Changelog +## Version 4.2.0 + +#### system +* Added new SVCs introduced in [13.0.0+]. +* Thread structures are now pre-populated with information prior to creation. + +#### input +* hidsys: Added support for [13.0.0+]. +* hiddbg: Added support for [13.0.0+]. + +#### graphics +* Fixed crashes caused by arbitrary sizes in linear framebuffers. + +#### other +* ncm: Added support for [13.0.0+]. +* setsys: Added support for [13.0.0+]. + * Filled in SetSysNxControllerSettings structure definition (which was previously unpopulated). +* btm: Added support for [13.0.0+]. +* btdrv: Added support for [13.0.0+]. + * Fixed btdrvRespondToSspRequest for [12.0.0+]. +* psel: Added support for [13.0.0+] (pselShowUserQualificationPromoter). +* Corrected ldr:ro/ro:1 initialization. + +Several issues were fixed, and usability and stability were improved. + ## Version 4.1.3 #### input diff --git a/nx/Makefile b/nx/Makefile index 08dbee671..153d06dd3 100644 --- a/nx/Makefile +++ b/nx/Makefile @@ -9,8 +9,8 @@ endif include $(DEVKITPRO)/devkitA64/base_rules export LIBNX_MAJOR := 4 -export LIBNX_MINOR := 1 -export LIBNX_PATCH := 3 +export LIBNX_MINOR := 2 +export LIBNX_PATCH := 0 VERSION := $(LIBNX_MAJOR).$(LIBNX_MINOR).$(LIBNX_PATCH)