Skip to content

Commit

Permalink
Changelog/updater/building
Browse files Browse the repository at this point in the history
  • Loading branch information
isage committed Nov 19, 2024
1 parent 426939e commit 323cf7b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 5 deletions.
7 changes: 3 additions & 4 deletions cef/updater/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ File files[] = {
{ "ms0:/__ADRENALINE__/sce_module/adrenaline_user.suprx", adrenaline_user, sizeof(adrenaline_user) },
{ "ms0:/__ADRENALINE__/sce_module/adrenaline_kernel.skprx", adrenaline_kernel, sizeof(adrenaline_kernel) },
{ "ms0:/__ADRENALINE__/sce_module/adrenaline_vsh.suprx", adrenaline_vsh, sizeof(adrenaline_vsh) },
// { "ms0:/__ADRENALINE__/sce_module/adrenaline_user.suprx", adrenaline_user, size_adrenaline_user },
// { "ms0:/__ADRENALINE__/sce_module/adrenaline_kernel.skprx", adrenaline_kernel, size_adrenaline_kernel },
// { "ms0:/__ADRENALINE__/sce_module/adrenaline_vsh.suprx", adrenaline_vsh, size_adrenaline_vsh },
};

void ErrorExit(int milisecs, char *fmt, ...) {
Expand Down Expand Up @@ -84,7 +81,9 @@ int main(void) {
printf("6.61 Adrenaline-%d.%d.%d Installer\n", ADRENALINE_VERSION_MAJOR, ADRENALINE_VERSION_MINOR, ADRENALINE_VERSION_MICRO);
printf("Changes:\n\n");

printf("- Added support for native resolution patches.\n");
printf("- Fixed XMB camera app.\n");
printf("- Added support for PS2/PS3 <-> PSP game link.\n");
printf("- Cleaner recovery with adjustable color.\n");

printf("\n");

Expand Down
25 changes: 24 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ ux0:app/PSPEMUCFW/sce_module/adrenaline_kernel.skprx
Changelog
---------

### Changelog v7.1
- Fixed XMB camera app.
- Added support for PS2/PS3 <-> PSP game link.
- Cleaner recovery with adjustable color.

### Changelog v7
- Fixed issue where plugins were loaded in recovery mode.
- Moved native display buffer to a different location, so GePatch works for some more games. Please note that only GePatch v0.18 or above will only work, older versions will cause a black screen. If you're using GTANativeRes, please download the latest binary as well.
Expand Down Expand Up @@ -162,6 +167,24 @@ offical settings, then apply the custom screen mode. On the other hand, if you w
- Fixed bug where 'ms0:/MUSIC' and 'ms0:/PICTURE' were not found in XMB.
- Fixed bug where changing options in the official settings menu didn't have any effect.

# Dependencies
# Building

## Dependencies
- [pspsdk](https://pspdev.github.io/) + psp-packer binary in your $PATH
- [vitasdk](https://vitasdk.org/)
- [vita2dlib-fbo](https://github.com/frangarcj/vita2dlib/tree/fbo)
- [vita-shader-collection](https://github.com/frangarcj/vita-shader-collection)
- python3

## Building
- `cd cef && make && cd ..`
- `cmake -S . -B build -DCMAKE_BUILD_TYPE=Release`
- `cmake --build build`
- grab VKP from `build/bubble/`

## Building updater
- Build adrenaline (sse above)
- `cmake --build build --target updater`
- (optionally) modify `cef/updater/psp-updatelist.template`
- `cd cef/updater && make`
- resulting files are `EBOOT.PBP` and `psp-updatelist.txt`

0 comments on commit 323cf7b

Please sign in to comment.