Release v1.79

This commit is contained in:
TheFloW 2018-01-25 17:00:37 +01:00
parent d0910065a6
commit 5832045ac3
3 changed files with 13 additions and 4 deletions

View File

@ -106,6 +106,7 @@ The english language file is provided in **'VitaShellCustomization.rar'** and av
- Added support for file property in archives, now it can show size and contains.
- Added natural sorting for filenames.
- Fixed bug where size of files in archives over 2GB where shown as 16EB.
- Fixed refresh license DB when ran from ur0:.
### Changelog 1.78 ###
- Fixed bug where archives > 2GB couldn't be opened.

View File

@ -352,7 +352,6 @@ int getPsarcPathInfo(const char *path, uint64_t *size, uint32_t *folders, uint32
int extractPsarcFile(const char *src_path, const char *dst_path, FileProcessParam *param) {
SceUID fdsrc = psarcFileOpen(src_path, SCE_O_RDONLY, 0);
debugPrintf("psarcFileOpen %s: 0x%08X\n", src_path, fdsrc);
if (fdsrc < 0)
return fdsrc;
@ -425,9 +424,7 @@ int extractPsarcFile(const char *src_path, const char *dst_path, FileProcessPara
int extractPsarcPath(const char *src_path, const char *dst_path, FileProcessParam *param) {
SceFiosDH dh = -1;
SceFiosBuffer buf = SCE_FIOS_BUFFER_INITIALIZER;
int ret = sceFiosDHOpenSync(NULL, &dh, src_path, buf);
debugPrintf("sceFiosDHOpenSync %s: 0x%08X\n", src_path, ret);
if (ret >= 0) {
if (sceFiosDHOpenSync(NULL, &dh, src_path, buf) >= 0) {
int ret = sceIoMkdir(dst_path, 0777);
if (ret < 0 && ret != SCE_ERROR_ERRNO_EEXIST) {
sceFiosDHCloseSync(NULL, dh);

View File

@ -328,4 +328,15 @@
- Fixed bug where archives > 2GB couldn't be opened.<br>
]]>
</changes>
<changes app_ver="01.79">
<![CDATA[
- Added ability to open .psarc files.<br>
- Added support for multi volume rar archives.<br>
- Added support for password encrypted zip archives.<br>
- Added support for file property in archives, now it can show size and contains.<br>
- Added natural sorting for filenames.<br>
- Fixed bug where size of files in archives over 2GB where shown as 16EB.<br>
- Fixed refresh license DB when ran from ur0:.<br>
]]>
</changes>
</changeinfo>