[PR #88] [MERGED] file formats and qt #1281

Closed
opened 2026-02-27 21:11:54 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/88
Author: @georgemoralis
Created: 2/28/2024
Status: Merged
Merged: 2/29/2024
Merged by: @georgemoralis

Base: mainHead: file_formats


📝 Commits (10+)

  • 8afc346 added psf file format
  • 6cd20f3 clang format fix
  • 5a0ae86 Merge branch 'main' into file_formats
  • cf6f9db crypto functions for pkg decryption
  • 7a9d6c3 pkg decryption
  • 27ad752 initial add of qt gui , not yet usable
  • 3328e82 renamed ini for qt gui settings into shadps4qt.ini
  • 083c990 file detection and loader support
  • 9ea5daa option to build QT qui
  • 8a74103 clang format fix

📊 Changes

53 files changed (+5781 additions, -42 deletions)

View changed files

.github/linux-appimage-qt.sh (+24 -0)
📝 .github/shadps4.desktop (+1 -1)
.github/workflows/linux-qt.yml (+60 -0)
.github/workflows/windows-qt.yml (+54 -0)
📝 .reuse/dep5 (+2 -0)
📝 CMakeLists.txt (+162 -41)
CONTRIBUTING.md (+128 -0)
📝 externals/CMakeLists.txt (+23 -0)
src/common/endian.h (+242 -0)
📝 src/common/io_file.h (+5 -0)
src/core/crypto/crypto.cpp (+174 -0)
src/core/crypto/crypto.h (+63 -0)
src/core/crypto/keys.h (+389 -0)
src/core/file_format/pfs.h (+123 -0)
src/core/file_format/pkg.cpp (+375 -0)
src/core/file_format/pkg.h (+137 -0)
src/core/file_format/pkg_type.cpp (+638 -0)
src/core/file_format/pkg_type.h (+10 -0)
src/core/file_format/psf.cpp (+59 -0)
src/core/file_format/psf.h (+48 -0)

...and 33 more files

📄 Description

First draft of merging the WIP qt interface

Steps:

  • add psf file format
  • add crypto depedencies
  • add pkg file format
  • add qt interface
  • qt ci actions

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/shadps4-emu/shadPS4/pull/88 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 2/28/2024 **Status:** ✅ Merged **Merged:** 2/29/2024 **Merged by:** [@georgemoralis](https://github.com/georgemoralis) **Base:** `main` ← **Head:** `file_formats` --- ### 📝 Commits (10+) - [`8afc346`](https://github.com/shadps4-emu/shadPS4/commit/8afc346f5578ee86930311910d1aded0d873b7da) added psf file format - [`6cd20f3`](https://github.com/shadps4-emu/shadPS4/commit/6cd20f33bda844814bb5cc6417ff66fa6ef375b3) clang format fix - [`5a0ae86`](https://github.com/shadps4-emu/shadPS4/commit/5a0ae86a71d67b5afa260c9f40ba8408bd4ebaf0) Merge branch 'main' into file_formats - [`cf6f9db`](https://github.com/shadps4-emu/shadPS4/commit/cf6f9db055df6d2bcf33f761e7d355ab4e410c69) crypto functions for pkg decryption - [`7a9d6c3`](https://github.com/shadps4-emu/shadPS4/commit/7a9d6c331279e22c72a9958352affa9adc09f876) pkg decryption - [`27ad752`](https://github.com/shadps4-emu/shadPS4/commit/27ad7529adb6883c945ccf402bf11b85b2b04703) initial add of qt gui , not yet usable - [`3328e82`](https://github.com/shadps4-emu/shadPS4/commit/3328e82c9c134142e94216fb16002dd878442584) renamed ini for qt gui settings into shadps4qt.ini - [`083c990`](https://github.com/shadps4-emu/shadPS4/commit/083c990ca6bdf9973e7369c87cd1695006138840) file detection and loader support - [`9ea5daa`](https://github.com/shadps4-emu/shadPS4/commit/9ea5daaad9608621c78369905f8b0fa5a4ce7437) option to build QT qui - [`8a74103`](https://github.com/shadps4-emu/shadPS4/commit/8a7410360357ad8f327089408ea2a763fa72c934) clang format fix ### 📊 Changes **53 files changed** (+5781 additions, -42 deletions) <details> <summary>View changed files</summary> ➕ `.github/linux-appimage-qt.sh` (+24 -0) 📝 `.github/shadps4.desktop` (+1 -1) ➕ `.github/workflows/linux-qt.yml` (+60 -0) ➕ `.github/workflows/windows-qt.yml` (+54 -0) 📝 `.reuse/dep5` (+2 -0) 📝 `CMakeLists.txt` (+162 -41) ➕ `CONTRIBUTING.md` (+128 -0) 📝 `externals/CMakeLists.txt` (+23 -0) ➕ `src/common/endian.h` (+242 -0) 📝 `src/common/io_file.h` (+5 -0) ➕ `src/core/crypto/crypto.cpp` (+174 -0) ➕ `src/core/crypto/crypto.h` (+63 -0) ➕ `src/core/crypto/keys.h` (+389 -0) ➕ `src/core/file_format/pfs.h` (+123 -0) ➕ `src/core/file_format/pkg.cpp` (+375 -0) ➕ `src/core/file_format/pkg.h` (+137 -0) ➕ `src/core/file_format/pkg_type.cpp` (+638 -0) ➕ `src/core/file_format/pkg_type.h` (+10 -0) ➕ `src/core/file_format/psf.cpp` (+59 -0) ➕ `src/core/file_format/psf.h` (+48 -0) _...and 33 more files_ </details> ### 📄 Description First draft of merging the WIP qt interface Steps: - [x] add psf file format - [x] add crypto depedencies - [x] add pkg file format - [x] add qt interface - [x] qt ci actions --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 21:11:54 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/shadPS4#1281
No description provided.