diff --git a/CHANGELOG.md b/CHANGELOG.md index c66c3018..fea2b681 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.48 + +What's new: + +- Added support for PSP DLC installation thanks to @lusid1's work + ## 0.47 What's new: diff --git a/CMakeLists.txt b/CMakeLists.txt index a5a2dfe7..252cc0fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ set(CMAKE_CXX_STANDARD 17) set(VITA_APP_NAME "PKGj") set(VITA_TITLEID "PKGJ00000") -set(VITA_VERSION "0.47") +set(VITA_VERSION "0.48") option(PKGI_ENABLE_LOGGING "enables debug logging over udp multicast" OFF) diff --git a/README.md b/README.md index 82b1aac3..dde3aeee 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This homebrew allows to download & unpack pkg file directly on Vita together wit * **background downloads**, now supports native bgdl function, so you can do whatever you want on the console while content is downloading. * **queues** multiple downloads. * **supports** the TSV file format. -* **installs** Game Updates, DLCs, Demos, Themes, PSM, PSP and PSX games. +* **installs** Game Updates, DLCs, Demos, Themes, PSM, PSP games, PSP DLCs, and PSX games. Current limitations: * **no background downloads for PSX/PSP titles** - if application is closed or Vita is put in sleep then download will stop. @@ -41,6 +41,7 @@ pkgj can be configured through `ux0:pkgj/config.txt` or `ur0:pkgj/config.txt`. | `url_dlcs ` | The URL of the PS Vita DLC list | | `url_psm_games ` | The URL of the PS Mobile list (see Q&A) | | `url_psp_games ` | The URL of the PSP game list | +| `url_psp_dlcs ` | The URL of the PSP DLC list | | `url_psx_games ` | The URL of the PSX game list | | `url_comppack ` | The URL of the PS Vita compatibility pack list | | `install_psp_as_pbp 1` | Install PSP games as EBOOT.EBP files instead of ISO files (see Q&A) |