[PR #2984] [MERGED] qt: save gui settings to separate file #3128

Closed
opened 2026-02-27 22:02:33 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/2984
Author: @georgemoralis
Created: 5/24/2025
Status: Merged
Merged: 6/12/2025
Merged by: @georgemoralis

Base: mainHead: qt_save


📝 Commits (10+)

📊 Changes

19 files changed (+384 additions, -371 deletions)

View changed files

📝 CMakeLists.txt (+4 -0)
📝 src/common/config.cpp (+5 -218)
📝 src/common/config.h (+0 -35)
📝 src/main.cpp (+19 -1)
📝 src/qt_gui/check_update.cpp (+13 -13)
📝 src/qt_gui/check_update.h (+4 -1)
📝 src/qt_gui/game_grid_frame.cpp (+13 -9)
📝 src/qt_gui/game_grid_frame.h (+4 -1)
📝 src/qt_gui/game_list_frame.cpp (+10 -7)
📝 src/qt_gui/game_list_frame.h (+4 -1)
src/qt_gui/gui_settings.cpp (+9 -0)
src/qt_gui/gui_settings.h (+46 -0)
📝 src/qt_gui/main_window.cpp (+59 -54)
📝 src/qt_gui/main_window.h (+3 -1)
📝 src/qt_gui/main_window_ui.h (+0 -1)
src/qt_gui/settings.cpp (+77 -0)
src/qt_gui/settings.h (+55 -0)
📝 src/qt_gui/settings_dialog.cpp (+54 -28)
📝 src/qt_gui/settings_dialog.h (+5 -1)

📄 Description

Initial work on saving gui settings to different file than emulator settings . This makes emu saving file less complex and also helps external launcher to save un-needed stuff

Not yet finished place it here for general review

Also

Added --set-addon-folder for the sdl version
Added catalan language to config


🔄 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/2984 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 5/24/2025 **Status:** ✅ Merged **Merged:** 6/12/2025 **Merged by:** [@georgemoralis](https://github.com/georgemoralis) **Base:** `main` ← **Head:** `qt_save` --- ### 📝 Commits (10+) - [`93d4fe1`](https://github.com/shadps4-emu/shadPS4/commit/93d4fe1031ebf1e913cb31bacb0adbf18cff5d5d) initial save classes for gui save file - [`e24196f`](https://github.com/shadps4-emu/shadPS4/commit/e24196fde722dc69fb0215a1b9d4cf15a3052d38) fixup - [`5fdd3a5`](https://github.com/shadps4-emu/shadPS4/commit/5fdd3a56956e4ce4699f1d4c76c1b52da405b0f2) some more settings passed to the new saving file - [`08d1bc2`](https://github.com/shadps4-emu/shadPS4/commit/08d1bc2a46a4335944a433d05acc06e4509812dc) even more variables parsing - [`a7ef31b`](https://github.com/shadps4-emu/shadPS4/commit/a7ef31b64d9c9cf4117e4a1e7e6ae7e5c5ba05bd) more settings - [`ad284ae`](https://github.com/shadps4-emu/shadPS4/commit/ad284ae9839c02f36fa1ddd31f7529010e1a4b74) fixup - [`fa99a3d`](https://github.com/shadps4-emu/shadPS4/commit/fa99a3d1f1fe18242cfe159e4869f6bb83491b6b) Merge branch 'main' into qt_save - [`09d6a8f`](https://github.com/shadps4-emu/shadPS4/commit/09d6a8f0f7b75650464d6625bc2ba6f0f230d102) Merge branch 'main' into qt_save - [`e3319a5`](https://github.com/shadps4-emu/shadPS4/commit/e3319a54716edaff13c7eee797f0453d075b5dfe) more settings - [`4b63f9e`](https://github.com/shadps4-emu/shadPS4/commit/4b63f9ea2370cb9ef72190cf36de0cf8d64d8f4d) more settings ### 📊 Changes **19 files changed** (+384 additions, -371 deletions) <details> <summary>View changed files</summary> 📝 `CMakeLists.txt` (+4 -0) 📝 `src/common/config.cpp` (+5 -218) 📝 `src/common/config.h` (+0 -35) 📝 `src/main.cpp` (+19 -1) 📝 `src/qt_gui/check_update.cpp` (+13 -13) 📝 `src/qt_gui/check_update.h` (+4 -1) 📝 `src/qt_gui/game_grid_frame.cpp` (+13 -9) 📝 `src/qt_gui/game_grid_frame.h` (+4 -1) 📝 `src/qt_gui/game_list_frame.cpp` (+10 -7) 📝 `src/qt_gui/game_list_frame.h` (+4 -1) ➕ `src/qt_gui/gui_settings.cpp` (+9 -0) ➕ `src/qt_gui/gui_settings.h` (+46 -0) 📝 `src/qt_gui/main_window.cpp` (+59 -54) 📝 `src/qt_gui/main_window.h` (+3 -1) 📝 `src/qt_gui/main_window_ui.h` (+0 -1) ➕ `src/qt_gui/settings.cpp` (+77 -0) ➕ `src/qt_gui/settings.h` (+55 -0) 📝 `src/qt_gui/settings_dialog.cpp` (+54 -28) 📝 `src/qt_gui/settings_dialog.h` (+5 -1) </details> ### 📄 Description Initial work on saving gui settings to different file than emulator settings . This makes emu saving file less complex and also helps external launcher to save un-needed stuff Not yet finished place it here for general review Also Added --set-addon-folder for the sdl version Added catalan language to config --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 22:02:33 +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#3128
No description provided.