Skip to content

Commit

Permalink
Update v1.76
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOfficialFloW committed Oct 29, 2017
1 parent 72c0d5f commit 9c3ee19
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
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.75")
set(VITA_VERSION "01.76")

# 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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@ Be sure you pull request your customized design or language file there.
* sakya for Lightmp3
* Everybody who contributed on vitasdk

### Changelog 1.76 ###
- Added DLC refresh + restore license from Sqlite DB by VitaSmith.
- Added license database refresh by VitaSmith.
- Fixed C2-12828-1 error.

### Changelog 1.75 ###
- Fixed bug where Memory Card was umounted after closing USB (fixed 'The file is corrupt' error).
- Fixed QR download of URLs that link to files.
Expand Down
2 changes: 1 addition & 1 deletion main.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@

// VitaShell version major.minor
#define VITASHELL_VERSION_MAJOR 0x01
#define VITASHELL_VERSION_MINOR 0x75
#define VITASHELL_VERSION_MINOR 0x76

#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.75</str>
<str size="18" color="#ffffff" shadow="on">v1.76</str>
</text>
</liveitem>
</frame>
Expand Down
7 changes: 7 additions & 0 deletions resources/changeinfo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -307,4 +307,11 @@
- Fixed QR download of URLs that link to files.<br>
]]>
</changes>
<changes app_ver="01.76">
<![CDATA[
- Added DLC refresh + restore license from Sqlite DB by VitaSmith.<br>
- Added license database refresh by VitaSmith.<br>
- Fixed C2-12828-1 error.<br>
]]>
</changes>
</changeinfo>

0 comments on commit 9c3ee19

Please sign in to comment.