Skip to content

Commit 5a92c69

Browse files
committed
update docs
1 parent 49dfc1d commit 5a92c69

File tree

3 files changed

+77
-1
lines changed

3 files changed

+77
-1
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,33 @@ All notable changes to the `apollo-ps4` project will be documented in this file.
44

55
## [Unreleased]()
66

7+
---
8+
9+
## [v1.6.0](https://github.com/bucanero/apollo-ps4/releases/tag/v1.6.0) - 2024-11-02
10+
11+
### Added
12+
13+
* 7.0x/8.0x/8.5x/9.0x/9.5x/10.50/10.7x firmware support (thanks to @BestPig)
14+
- GoldHEN or ps4debug payload is required
15+
* Manage PS2 Virtual Memory Card images (VMC)
16+
- Supports PS2 MemCard images, ECC and non-ECC (`.PS2`, `.VM2`, `.CARD`, `.VMC`)
17+
- List, import, export, and delete PS2 saves inside VMC images
18+
- Import - Supported formats: `.PSU`, `.PSV`, `.XPS`, `.MAX`, `.CBS`, `.SPS`
19+
- Export - Supported formats: `.PSU`, `.PSV`
20+
* Online DB: added PS2 saves listing
21+
* Save sorting option by Type (PS4/PS2/VMC)
22+
* Add Debug Log option in Settings (on/off)
23+
24+
### Misc
25+
26+
* Updated Apollo Patch Engine to v1.1.0
27+
- Improve code parsing
28+
- Improve SW Code Type 3 (Subtype 3/7/B/F)
29+
- Improve SW Code Type 4 (Subtype 4/5/6/C/D/E)
30+
- Add AES CBC encryption command (`aes_cbc(key, iv)`)
31+
32+
---
33+
734
## [v1.4.5](https://github.com/bucanero/apollo-ps4/releases/tag/v1.4.5) - 2024-06-29
835

936
### Added

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ This homebrew app allows you to download, unlock, patch, and resign save-game fi
4848
* **Account activation:** create fake Account IDs and generate offline PS4 activations
4949
* **Recover passcode:** simple recovery method for the Parental Security Passcode.
5050

51+
## PS2 Virtual Memory Card Management
52+
53+
* **VMC saves management:** quick access to all save files on Virtual Memory Cards images.
54+
- Supported PS2 VMC formats: `.VM2`, `.CARD`, `.PS2`, `.VMC`, `.BIN`
55+
- Supports ECC and non-ECC images
56+
* **VMC saves import:** import saves to VMCs from other systems and consoles (`.PSU`, `.PSV`, `.XPS`, `.CBS`, `.MAX`, `.SPS` supported).
57+
* **VMC saves export:** allows the user export saves on VMC images to `.PSU` and `.PSV` formats
58+
5159
# Download
5260

5361
Get the [latest version here][app_latest].
@@ -88,6 +96,17 @@ On first run, the application will detect and setup the required user settings.
8896
| **External saves (HDD)** | encrypted saves must be placed on `/data/fakeusb/PS4/SAVEDATA/<account-id>/`. |
8997
| **HDD saves** | files will be scanned from the hard disk, based on the current `User ID`. |
9098

99+
### PS2
100+
101+
| PS2 | Folder |
102+
|-----|--------|
103+
| **USB saves** | `/mnt/usbX/PS2/SAVEDATA/` (`*.xps`, `*.max`, `*.psu`, `*.cbs`, `*.psv`, `*.sps`) |
104+
| **VMC cards** | `/mnt/usbX/PS2/VMC/` (`*.vmc`, `*.card`, `*.vm2`, `*.ps2`, `*.bin`) |
105+
| **PSV saves** | `/mnt/usbX/PS3/EXPORT/PSV/` |
106+
| **External saves (HDD)** | `/data/fakeusb/PS2/SAVEDATA/` |
107+
| **External VMCs (HDD)** | `/data/fakeusb/PS2/VMC/` |
108+
| **HDD VMC cards** | VMCs will be scanned from PS4 saves on the hard disk |
109+
91110
## Offline Account activation
92111

93112
To activate an account offline, go to the `User Tools` menu, and select `Activate PS4 Accounts`.

docs/README.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,29 @@ This homebrew app allows you to download, unlock, patch, and resign save-game fi
4343
* **Account activation:** create fake Account IDs and generate offline PS4 activations
4444
* **Recover passcode:** simple recovery method for the Parental Security Passcode.
4545

46+
## PS2 Virtual Memory Card Management
47+
48+
* **VMC saves management:** quick access to all save files on Virtual Memory Cards images.
49+
- Supported PS2 VMC formats: `.VM2`, `.CARD`, `.PS2`, `.VMC`, `.BIN`
50+
- Supports ECC and non-ECC images
51+
* **VMC saves import:** import saves to VMCs from other systems and consoles (`.PSU`, `.PSV`, `.XPS`, `.CBS`, `.MAX`, `.SPS` supported).
52+
* **VMC saves export:** allows the user export saves on VMC images to `.PSU` and `.PSV` formats
53+
4654
# Download
4755

4856
Get the [latest version here][app_latest].
4957

58+
<details>
59+
<summary>Nightly Builds (Click to Expand)</summary>
60+
61+
- Login to GitHub [(this is required to download artifacts)](https://docs.github.com/en/actions/managing-workflow-runs/downloading-workflow-artifacts#:~:text=Who%20can%20use,download%20workflow%20artifacts.).
62+
- Click on a build in the **[Actions](https://github.com/bucanero/apollo-ps4/actions)** Tab.
63+
- ![image](https://github.com/bucanero/apollo-ps4/assets/37698908/2e52961b-04ef-42f1-9453-78b3ceb24afc)
64+
- Click on the artifact to download the pkg zip.
65+
- ![image](https://github.com/bucanero/apollo-ps4/assets/37698908/aaeb523e-eab9-43f7-a993-5fa902ada1b7)
66+
67+
</details>
68+
5069
## Changelog
5170

5271
See the [latest changes here](CHANGELOG.md).
@@ -72,6 +91,17 @@ On first run, the application will detect and setup the required user settings.
7291
| **External saves (HDD)** | encrypted saves must be placed on `/data/fakeusb/PS4/SAVEDATA/<account-id>/`. |
7392
| **HDD saves** | files will be scanned from the hard disk, based on the current `User ID`. |
7493

94+
### PS2
95+
96+
| PS2 | Folder |
97+
|-----|--------|
98+
| **USB saves** | `/mnt/usbX/PS2/SAVEDATA/` (`*.xps`, `*.max`, `*.psu`, `*.cbs`, `*.psv`, `*.sps`) |
99+
| **VMC cards** | `/mnt/usbX/PS2/VMC/` (`*.vmc`, `*.card`, `*.vm2`, `*.ps2`, `*.bin`) |
100+
| **PSV saves** | `/mnt/usbX/PS3/EXPORT/PSV/` |
101+
| **External saves (HDD)** | `/data/fakeusb/PS2/SAVEDATA/` |
102+
| **External VMCs (HDD)** | `/data/fakeusb/PS2/VMC/` |
103+
| **HDD VMC cards** | VMCs will be scanned from PS4 saves on the hard disk |
104+
75105
## Offline Account activation
76106

77107
To activate an account offline, go to the `User Tools` menu, and select `Activate PS4 Accounts`.
@@ -80,7 +110,7 @@ This default account value can be edited using the on-screen keyboard.
80110

81111
# Usage
82112

83-
Using the application is simple and straight-forward:
113+
Using the application is simple and straight-forward:
84114

85115
- Move <kbd>UP</kbd>/<kbd>DOWN</kbd> to select the save-game file you want to patch, and press ![X button](https://github.com/bucanero/pkgi-ps3/raw/master/data/CROSS.png). The patch screen will show the available fixes for the file. Select the patches and click `Apply`.
86116
- To view the item's details, press ![Triangle](https://github.com/bucanero/pkgi-ps3/raw/master/data/TRIANGLE.png).

0 commit comments

Comments
 (0)