Skip to content

Commit

Permalink
Update v1.73
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOfficialFloW committed Sep 18, 2017
1 parent a303be1 commit ca7f899
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 7 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.72")
set(VITA_VERSION "01.73")

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

### Changelog 1.73 ###
- Fixed crash when you pressed triangle in the home menu.

### Changelog 1.72 ###
- Fixed pfs mounting bug where you could not export files from specific folders.
- Fixed bug where files from https could not be downloaded using QR code.
Expand Down
2 changes: 1 addition & 1 deletion main.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

// VitaShell version major.minor
#define VITASHELL_VERSION_MAJOR 0x01
#define VITASHELL_VERSION_MINOR 0x72
#define VITASHELL_VERSION_MINOR 0x73

#define VITASHELL_VERSION ((VITASHELL_VERSION_MAJOR << 0x18) | (VITASHELL_VERSION_MINOR << 0x10))

Expand Down
4 changes: 2 additions & 2 deletions modules/kernel/exports.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VitaShellKernel:
VitaShellKernel2:
attributes: 0
version:
major: 1
Expand All @@ -7,7 +7,7 @@ VitaShellKernel:
start: module_start
stop: module_stop
modules:
VitaShellKernelLibrary:
VitaShellKernel2Library:
syscall: true
functions:
- shellKernelIsUx0Redirected
Expand Down
2 changes: 1 addition & 1 deletion modules/user/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ add_executable(user
target_link_libraries(user
SceLibKernel_stub
SceIofilemgr_stub
VitaShellKernel_stub
VitaShellKernel2_stub
)

vita_create_self(user.suprx user CONFIG exports.yml UNSAFE)
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.72</str>
<str size="18" color="#ffffff" shadow="on">v1.73</str>
</text>
</liveitem>
</frame>
Expand Down
5 changes: 5 additions & 0 deletions resources/changeinfo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -291,4 +291,9 @@
- Fixed bug with pvsd usb device mounting where microSD could not be found.<br>
]]>
</changes>
<changes app_ver="01.73">
<![CDATA[
- Fixed crash when you pressed triangle in the home menu.<br>
]]>
</changes>
</changeinfo>
Binary file modified resources/kernel.skprx
Binary file not shown.
Binary file modified resources/user.suprx
Binary file not shown.
2 changes: 1 addition & 1 deletion usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "utils.h"

static int remount_thread(SceSize args, void *argp) {
sceKernelDelayThread(10 * 1000);
sceKernelDelayThread(50 * 1000);
remount(0x800);
return sceKernelExitDeleteThread(0);
}
Expand Down

0 comments on commit ca7f899

Please sign in to comment.