Skip to content

Commit

Permalink
Release v1.97
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOfficialFloW committed Sep 17, 2018
1 parent e9729ca commit ef2e845
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion main.h
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down
2 changes: 1 addition & 1 deletion pkg/sce_sys/livearea/contents/template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<frame id="frame4">
<liveitem>
<text align="left" text-align="left" word-wrap="off" ellipsis="on">
<str size="18" color="#ffffff" shadow="on">v1.96</str>
<str size="18" color="#ffffff" shadow="on">v1.97</str>
</text>
</liveitem>
</frame>
Expand Down
Binary file modified release/VitaShell.vpk
Binary file not shown.
Binary file modified release/eboot.bin
Binary file not shown.
Binary file modified release/param.sfo
Binary file not shown.
2 changes: 1 addition & 1 deletion release/template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<frame id="frame4">
<liveitem>
<text align="left" text-align="left" word-wrap="off" ellipsis="on">
<str size="18" color="#ffffff" shadow="on">v1.96</str>
<str size="18" color="#ffffff" shadow="on">v1.97</str>
</text>
</liveitem>
</frame>
Expand Down

0 comments on commit ef2e845

Please sign in to comment.