Skip to content

Commit 63b2469

Browse files
committed
update
1 parent dced366 commit 63b2469

File tree

6 files changed

+20
-5
lines changed

6 files changed

+20
-5
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ All notable changes to the `apollo-ps4` project will be documented in this file.
1717
* Custom checksum support
1818
- Shin Megami Tensei V (SHA1)
1919

20+
---
21+
2022
## [v1.4.4](https://github.com/bucanero/apollo-ps4/releases/tag/v1.4.4) - 2024-05-25
2123

2224
### Added

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package metadata.
22
TITLE := Apollo Save Tool
3-
VERSION := 01.45
3+
VERSION := 01.60
44
TITLE_ID := APOL00004
55
CONTENT_ID := IV0000-APOL00004_00-APOLLO0000000PS4
66

docs/apollo_ps4_tile.7z

543 KB
Binary file not shown.

include/orbis_patches.h

+14
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,20 @@ const orbis_patch_t shellcore_patches_672[] = {
203203
{0, NULL, 0}
204204
};
205205

206+
/* 6.72 patches disabled (restore SceShellCore) by Bucanero */
207+
const orbis_patch_t shellcore_patches_672_disabled[] = {
208+
{0x01600060, "\xB5", 1},
209+
{0x0087F840, "\x55\x48\x89\xE5", 4},
210+
{0x00071130, "\x55\x48\x89", 3},
211+
{0x000D6830, "\x55\x48\x89", 3},
212+
{0x0007379E, "\xEB\x35", 2},
213+
{0x00070C38, "\x0F\x88\xA3\x00\x00\x00", 6},
214+
{0x00070855, "\x0F\x88\xD9\x00\x00\x00", 6},
215+
{0x00070054, "\x78\x43", 2},
216+
{0x00070260, "\x0F\x89", 2},
217+
{0, NULL, 0}
218+
};
219+
206220
/* 7.02 patches below are taken from Joonie Save-Mounter */
207221
const orbis_patch_t shellcore_patches_702[] = {
208222
{0x0130C060, "\x00", 1}, // 'sce_sdmemory' patch

include/saves.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
#define USER_PATH_HDD "/system_data/savedata/%08x/db/user/savedata.db"
2626

2727
#define PS4_SAVES_PATH_USB "PS4/APOLLO/"
28-
#define PS2_SAVES_PATH_USB "PS3/EXPORT/PS2SD/"
29-
#define PSP_SAVES_PATH_USB "PSP/SAVEDATA/"
28+
#define PS2_SAVES_PATH_USB "PS2/SAVEDATA/"
29+
#define PS1_SAVES_PATH_USB "PS1/SAVEDATA/"
3030
#define PSV_SAVES_PATH_USB "PS3/EXPORT/PSV/"
3131
#define TROPHIES_PATH_USB "PS4/EXPORT/TROPHY/"
3232

include/settings.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define APOLLO_VERSION "1.4.5" //Apollo PS4 version (about menu)
1+
#define APOLLO_VERSION "1.6.0" //Apollo PS4 version (about menu)
22

33
#define MENU_TITLE_OFF 45 //Offset of menu title text from menu mini icon
44
#define MENU_ICON_OFF 105 //X Offset to start printing menu mini icon
@@ -47,5 +47,4 @@ void update_callback(int sel);
4747

4848
int get_firmware_version(void);
4949
int save_xml_owner(const char *xmlfile);
50-
int read_xml_owner(const char *xmlfile, const char *owner);
5150
int get_xml_owners(const char *xmlfile, int cmd, char*** nam, char*** val);

0 commit comments

Comments
 (0)