[PR #7] [MERGED] New game list #1212

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

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/7
Author: @georgemoralis
Created: 3/17/2023
Status: Merged
Merged: 3/17/2023
Merged by: @georgemoralis

Base: mainHead: new_game_list


📝 Commits (10+)

  • a161c9e start reworking on adding the new gamelist part1
  • 6d2680d abstracting setting class and more wokr on gamelist class
  • 2809eb7 Revert "abstracting setting class and more wokr on gamelist class"
  • 29a4b24 Revert "Revert "abstracting setting class and more wokr on gamelist class""
  • c0b2c35 Load/Save column visability
  • fece7bc menu for hide/show colums
  • c60ce78 sort columns , and sort order
  • 86be793 we can now display entries in gamelist view
  • 8b9f094 ok we can display icons in columns now
  • f5570a1 ingnore ini files

📊 Changes

24 files changed (+1849 additions, -78 deletions)

View changed files

📝 .gitignore (+1 -0)
shadPS4/gui/custom_dock_widget.h (+67 -0)
📝 shadPS4/gui/custom_table_widget_item.cpp (+2 -2)
📝 shadPS4/gui/custom_table_widget_item.h (+2 -1)
📝 shadPS4/gui/game_list_frame.cpp (+672 -1)
📝 shadPS4/gui/game_list_frame.h (+73 -2)
📝 shadPS4/gui/game_list_grid.cpp (+42 -40)
📝 shadPS4/gui/game_list_grid.h (+1 -1)
shadPS4/gui/game_list_item.h (+44 -0)
📝 shadPS4/gui/game_list_table.h (+2 -0)
shadPS4/gui/gui_save.h (+30 -0)
📝 shadPS4/gui/gui_settings.cpp (+19 -1)
📝 shadPS4/gui/gui_settings.h (+76 -4)
shadPS4/gui/main_window.cpp (+232 -0)
shadPS4/gui/main_window.h (+49 -0)
shadPS4/gui/main_window.ui (+297 -0)
shadPS4/gui/qt_utils.h (+23 -0)
shadPS4/gui/settings.cpp (+94 -0)
shadPS4/gui/settings.h (+48 -0)
📝 shadPS4/gui/shadps4gui.cpp (+8 -4)

...and 4 more files

📄 Description

Added new game list (game list , and game grid modes) . Still a few things left but mostly functional


🔄 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/7 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 3/17/2023 **Status:** ✅ Merged **Merged:** 3/17/2023 **Merged by:** [@georgemoralis](https://github.com/georgemoralis) **Base:** `main` ← **Head:** `new_game_list` --- ### 📝 Commits (10+) - [`a161c9e`](https://github.com/shadps4-emu/shadPS4/commit/a161c9e74a839174e5b9937960c73dec6d0be909) start reworking on adding the new gamelist part1 - [`6d2680d`](https://github.com/shadps4-emu/shadPS4/commit/6d2680d5a3c990dbe2d679086cc8d9a9a46fb077) abstracting setting class and more wokr on gamelist class - [`2809eb7`](https://github.com/shadps4-emu/shadPS4/commit/2809eb7c2cda94b80d993608772bdb9635e6a06b) Revert "abstracting setting class and more wokr on gamelist class" - [`29a4b24`](https://github.com/shadps4-emu/shadPS4/commit/29a4b249d81cfeafabb90f01c318de6268f8135f) Revert "Revert "abstracting setting class and more wokr on gamelist class"" - [`c0b2c35`](https://github.com/shadps4-emu/shadPS4/commit/c0b2c357ec0a2de51da333f3901707e0a1bf8b3f) Load/Save column visability - [`fece7bc`](https://github.com/shadps4-emu/shadPS4/commit/fece7bc008a4dc5818e056053ec80c261b396560) menu for hide/show colums - [`c60ce78`](https://github.com/shadps4-emu/shadPS4/commit/c60ce7897e39d22f4d5b533a971e6229f5895e07) sort columns , and sort order - [`86be793`](https://github.com/shadps4-emu/shadPS4/commit/86be7933067a0fd0a7e55d2068e63e1b3d9d9b60) we can now display entries in gamelist view - [`8b9f094`](https://github.com/shadps4-emu/shadPS4/commit/8b9f09442048bf9d87758986ce4e55ae665a4bf6) ok we can display icons in columns now - [`f5570a1`](https://github.com/shadps4-emu/shadPS4/commit/f5570a156f75eea89ffac79290e8323995281659) ingnore ini files ### 📊 Changes **24 files changed** (+1849 additions, -78 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) ➕ `shadPS4/gui/custom_dock_widget.h` (+67 -0) 📝 `shadPS4/gui/custom_table_widget_item.cpp` (+2 -2) 📝 `shadPS4/gui/custom_table_widget_item.h` (+2 -1) 📝 `shadPS4/gui/game_list_frame.cpp` (+672 -1) 📝 `shadPS4/gui/game_list_frame.h` (+73 -2) 📝 `shadPS4/gui/game_list_grid.cpp` (+42 -40) 📝 `shadPS4/gui/game_list_grid.h` (+1 -1) ➕ `shadPS4/gui/game_list_item.h` (+44 -0) 📝 `shadPS4/gui/game_list_table.h` (+2 -0) ➕ `shadPS4/gui/gui_save.h` (+30 -0) 📝 `shadPS4/gui/gui_settings.cpp` (+19 -1) 📝 `shadPS4/gui/gui_settings.h` (+76 -4) ➕ `shadPS4/gui/main_window.cpp` (+232 -0) ➕ `shadPS4/gui/main_window.h` (+49 -0) ➕ `shadPS4/gui/main_window.ui` (+297 -0) ➕ `shadPS4/gui/qt_utils.h` (+23 -0) ➕ `shadPS4/gui/settings.cpp` (+94 -0) ➕ `shadPS4/gui/settings.h` (+48 -0) 📝 `shadPS4/gui/shadps4gui.cpp` (+8 -4) _...and 4 more files_ </details> ### 📄 Description Added new game list (game list , and game grid modes) . Still a few things left but mostly functional --- <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:09 +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#1212
No description provided.