Skip to content

Commit a87ac27

Browse files
Release v2.00
1 parent cbd823b commit a87ac27

File tree

11 files changed

+11
-5
lines changed

11 files changed

+11
-5
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### Changelog 2.00
4+
- Added support for FW 3.72.
5+
36
### Changelog 1.99
47
- Added support for FW 3.71.
58

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ project(VitaShell)
1414
include("${VITASDK}/share/vita.cmake" REQUIRED)
1515
set(VITA_APP_NAME "VitaShell")
1616
set(VITA_TITLEID "VITASHELL")
17-
set(VITA_VERSION "01.99")
17+
set(VITA_VERSION "02.00")
1818

1919
# Flags and includes
2020
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -O3 -Wno-unused-variable -Wno-unused-but-set-variable -Wno-format-truncation -fno-lto")

main.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
#define INCLUDE_EXTERN_RESOURCE(name) extern unsigned char _binary_resources_##name##_start; extern unsigned char _binary_resources_##name##_size; \
5454

5555
// VitaShell version major.minor
56-
#define VITASHELL_VERSION_MAJOR 0x01
57-
#define VITASHELL_VERSION_MINOR 0x99
56+
#define VITASHELL_VERSION_MAJOR 0x02
57+
#define VITASHELL_VERSION_MINOR 0x00
5858

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

modules/kernel/main.c

+2
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ int _shellKernelMountById(ShellMountIdArgs *args) {
165165
case 0x321E4852: // 3.69 retail
166166
case 0x700DA0CD: // 3.70 retail
167167
case 0xF7846B4E: // 3.71 retail
168+
case 0xA8E80BA8: // 3.72 retail
168169
module_get_offset(KERNEL_PID, tai_info.modid, 0, 0x2DE9, (uintptr_t *)&sceAppMgrFindProcessInfoByPid);
169170
module_get_offset(KERNEL_PID, tai_info.modid, 0, 0x19E95, (uintptr_t *)&sceAppMgrMountById);
170171
break;
@@ -280,6 +281,7 @@ int module_start(SceSize args, void *argp) {
280281
case 0xF16E72C7: // 3.69 retail
281282
case 0x81A49C2B: // 3.70 retail
282283
case 0xF2D59083: // 3.71 retail
284+
case 0x9C16D40A: // 3.72 retail
283285
module_get_offset(KERNEL_PID, info.modid, 0, 0x18735, (uintptr_t *)&sceIoFindMountPoint);
284286
break;
285287

modules/patch/main.c

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ int module_start(SceSize args, void *argp) {
4848
case 0x321E4852: // 3.69 retail
4949
case 0x700DA0CD: // 3.70 retail
5050
case 0xF7846B4E: // 3.71 retail
51+
case 0xA8E80BA8: // 3.72 retail
5152
hooks[0] = taiInjectDataForKernel(KERNEL_PID, info.modid, 0, 0xB34C, &nop_nop_opcode, 4);
5253
hooks[1] = taiInjectDataForKernel(KERNEL_PID, info.modid, 0, 0xB37C, &nop_nop_opcode, 2);
5354
break;

pkg/sce_sys/livearea/contents/template.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<frame id="frame4">
2929
<liveitem>
3030
<text align="left" text-align="left" word-wrap="off" ellipsis="on">
31-
<str size="18" color="#ffffff" shadow="on">v1.99</str>
31+
<str size="18" color="#ffffff" shadow="on">v2.00</str>
3232
</text>
3333
</liveitem>
3434
</frame>

release/VitaShell.vpk

68 Bytes
Binary file not shown.

release/eboot.bin

-11 Bytes
Binary file not shown.

release/param.sfo

0 Bytes
Binary file not shown.

release/template.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<frame id="frame4">
2929
<liveitem>
3030
<text align="left" text-align="left" word-wrap="off" ellipsis="on">
31-
<str size="18" color="#ffffff" shadow="on">v1.99</str>
31+
<str size="18" color="#ffffff" shadow="on">v2.00</str>
3232
</text>
3333
</liveitem>
3434
</frame>

release/version.bin

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)