From a6492e9888207f18dfe2c12cd1f48200c5c633c8 Mon Sep 17 00:00:00 2001 From: fincs Date: Sat, 28 Jul 2018 18:15:01 +0200 Subject: [PATCH] Release v1.3.1 --- Changelog.md | 11 +++++++++++ nx/Makefile | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 98c310153..569019c4f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,16 @@ # Changelog +## Version 1.3.1 + +* **Fixed regression in cwd handling**. +* Added fs commands: fsOpenBisStorage, fsOpenBisFilesystem, fsOpenFileSystem(WithId), fsStorageWrite/Flush/GetSize/SetSize, fsFsCleanDirectoryRecursively. +* Added ncm commands: ncmContentMetaDatabaseList/DisableForcibly, ncmContentStorageXYZ family of functions. +* HID service now works in sysmodules. +* Fixed errors in ncmContentMetaDatabaseListApplication and ncmContentMetaDatabaseSet/Get. +* Fixed data races in kernel version detection functions. +* Fixed return-from-main to honor atexit handlers. +* Further improvements to overall system stability and other minor adjustments to enhance the user experience. + ## Version 1.3.0 #### system diff --git a/nx/Makefile b/nx/Makefile index 1a871edc9..c02bb4d4a 100644 --- a/nx/Makefile +++ b/nx/Makefile @@ -10,7 +10,7 @@ include $(DEVKITPRO)/devkitA64/base_rules export LIBNX_MAJOR := 1 export LIBNX_MINOR := 3 -export LIBNX_PATCH := 0 +export LIBNX_PATCH := 1 VERSION := $(LIBNX_MAJOR).$(LIBNX_MINOR).$(LIBNX_PATCH)