diff --git a/CHANGELOG.md b/CHANGELOG.md index b2b4085d..d994642f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +### Changelog 1.97 +- Added support for symlinks which enables ability to set and show bookmarks and recent files. Thanks to abertschi. +- Added a few shortcuts: left+[]: show bookmarks, left+/\: show recent files, left+O: QR scanner. +- Fixed bug in ad-hoc dialog where X is always the enter button. + ### Changelog 1.96 - Added ability to skip pages in file browser and SFO viewer using L/R triggers. (QR download has been temporarily removed and will be reimplemented later). diff --git a/CMakeLists.txt b/CMakeLists.txt index cfc38c60..fb46b1a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ project(VitaShell) include("${VITASDK}/share/vita.cmake" REQUIRED) set(VITA_APP_NAME "VitaShell") set(VITA_TITLEID "VITASHELL") -set(VITA_VERSION "01.96") +set(VITA_VERSION "01.97") # Flags and includes set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -O3 -Wno-unused-variable -Wno-unused-but-set-variable -Wno-format-truncation -fno-lto") diff --git a/main.h b/main.h index 9e7619e3..74580098 100644 --- a/main.h +++ b/main.h @@ -54,7 +54,7 @@ // VitaShell version major.minor #define VITASHELL_VERSION_MAJOR 0x01 -#define VITASHELL_VERSION_MINOR 0x96 +#define VITASHELL_VERSION_MINOR 0x97 #define VITASHELL_VERSION ((VITASHELL_VERSION_MAJOR << 0x18) | (VITASHELL_VERSION_MINOR << 0x10)) diff --git a/pkg/sce_sys/livearea/contents/template.xml b/pkg/sce_sys/livearea/contents/template.xml index c5feb02c..04b3b377 100644 --- a/pkg/sce_sys/livearea/contents/template.xml +++ b/pkg/sce_sys/livearea/contents/template.xml @@ -28,7 +28,7 @@ - v1.96 + v1.97 diff --git a/release/VitaShell.vpk b/release/VitaShell.vpk index ce61c32d..66979d09 100644 Binary files a/release/VitaShell.vpk and b/release/VitaShell.vpk differ diff --git a/release/eboot.bin b/release/eboot.bin index 0fa1f02b..a26d1c5f 100644 Binary files a/release/eboot.bin and b/release/eboot.bin differ diff --git a/release/param.sfo b/release/param.sfo index 36b745d9..436ccc58 100644 Binary files a/release/param.sfo and b/release/param.sfo differ diff --git a/release/template.xml b/release/template.xml index c5feb02c..04b3b377 100644 --- a/release/template.xml +++ b/release/template.xml @@ -28,7 +28,7 @@ - v1.96 + v1.97