Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bucanero committed Sep 12, 2020
1 parent 6583d1f commit ff06f35
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to the `apollo-ps3` project will be documented in this file.

## [Unreleased]()

## [v1.4.0](https://github.com/bucanero/apollo-ps3/releases/tag/v1.4.0) - 2020-09-12

### Added

* PS2 Classics: decrypt `.VME` memcards
* PS2 Classics: encrypt `.VM2` memcards
* PS2 Classics: decrypt `BIN.ENC` images
* PS2 Classics: encrypt `.ISO` images
* Add `.PSV` resigning (PS1/PS2)
* Add PS1 `.mcs`/`.psx` conversion to `.PSV`
* Add PS2 `.max`/`.cbs`/`.xps`/`.psu` conversion to `.PSV`
* Added `APOLLO-99PS2.PSV` dummy save (to refresh XMB virtual memcards)

## [v1.2.5](https://github.com/bucanero/apollo-ps3/releases/tag/v1.2.5) - 2020-07-26

### Added
Expand Down
4 changes: 2 additions & 2 deletions sfo.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" ?>
<sfo>
<value name="APP_VER" type="string">
01.25
01.40
</value>
<value name="ATTRIBUTE" type="integer">
133
Expand Down Expand Up @@ -34,6 +34,6 @@
NP0APOLLO
</value>
<value name="VERSION" type="string">
01.25
01.40
</value>
</sfo>
4 changes: 2 additions & 2 deletions source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ enum menu_screen_ids

//Sound
#include "spu_soundmodule_bin.h"
#include "spu_soundlib.h"
#include "audioplayer.h"
#include <soundlib/spu_soundlib.h>
#include <soundlib/audioplayer.h>
#include "background_music_mp3.h"

// SPU
Expand Down
2 changes: 1 addition & 1 deletion source/saves.c
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ list_t * ReadBackupList(const char* userPath)

item = (save_entry_t *)malloc(sizeof(save_entry_t));
memset(item, 0, sizeof(save_entry_t));
asprintf(&item->name, "\x0b PS2 Classics: Export & Decrypt BIN.ENC files");
asprintf(&item->name, "\x0b PS2 Classics: Export & Decrypt BIN.ENC images");
asprintf(&item->path, IMPORT_PS2_PATH_HDD);
item->flags = SAVE_FLAG_PS2;
item->type = FILE_TYPE_BINENC;
Expand Down

0 comments on commit ff06f35

Please sign in to comment.