[PR #3091] [CLOSED] User management #3216

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

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/3091
Author: @georgemoralis
Created: 6/12/2025
Status: Closed

Base: mainHead: user_management


📝 Commits (10+)

  • 3da6f25 using common OrbisUserServiceUserId from Userservice
  • 0e2f414 initial user management dialog
  • dbaf2cc clang fix
  • 7d6b79b adding home dir
  • 6c64dee Merge branch 'main' into user_management
  • 4bccf7a some more draft work
  • 7b0d6c4 use json to read local file
  • 32fcd80 added createdDefaultUser
  • ee54507 Merge branch 'main' into user_management
  • d61e313 Merge branch 'main' into user_management

📊 Changes

39 files changed (+399 additions, -63 deletions)

View changed files

📝 .gitmodules (+3 -0)
📝 CMakeLists.txt (+5 -1)
📝 REUSE.toml (+1 -0)
📝 externals/CMakeLists.txt (+4 -0)
externals/json (+1 -0)
📝 src/common/config.cpp (+9 -0)
📝 src/common/config.h (+3 -1)
📝 src/common/path_util.cpp (+1 -0)
📝 src/common/path_util.h (+2 -0)
📝 src/core/libraries/audio3d/audio3d.cpp (+5 -5)
📝 src/core/libraries/audio3d/audio3d.h (+3 -4)
📝 src/core/libraries/game_live_streaming/gamelivestreaming.h (+3 -2)
📝 src/core/libraries/ime/error_dialog.cpp (+2 -1)
📝 src/core/libraries/ime/error_dialog.h (+0 -2)
📝 src/core/libraries/ime/ime.cpp (+3 -2)
📝 src/core/libraries/ime/ime.h (+3 -2)
📝 src/core/libraries/ime/ime_common.h (+2 -1)
📝 src/core/libraries/np_manager/np_manager.cpp (+11 -6)
📝 src/core/libraries/np_manager/np_manager.h (+12 -8)
📝 src/core/libraries/np_trophy/np_trophy.cpp (+6 -4)

...and 19 more files

📄 Description

PS4 unlikely previous consoles is user oriented , that means that we have to have user management .

This is still WIP , i will update it once it goes on


🔄 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/3091 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 6/12/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `user_management` --- ### 📝 Commits (10+) - [`3da6f25`](https://github.com/shadps4-emu/shadPS4/commit/3da6f25c59b5726e2825c58efd6c48e5f5e93a08) using common OrbisUserServiceUserId from Userservice - [`0e2f414`](https://github.com/shadps4-emu/shadPS4/commit/0e2f414cb6998116cca7b3e367176178ec3975db) initial user management dialog - [`dbaf2cc`](https://github.com/shadps4-emu/shadPS4/commit/dbaf2cc38edd53d0b1963ce0434b35504e2e4103) clang fix - [`7d6b79b`](https://github.com/shadps4-emu/shadPS4/commit/7d6b79b19e568ee18fe5acb67595ba34f8825b6f) adding home dir - [`6c64dee`](https://github.com/shadps4-emu/shadPS4/commit/6c64deecde48f46f34c84a78e6e653e3e1d0c240) Merge branch 'main' into user_management - [`4bccf7a`](https://github.com/shadps4-emu/shadPS4/commit/4bccf7a2db94e0dc71fbacd5431cc0f4ddd590aa) some more draft work - [`7b0d6c4`](https://github.com/shadps4-emu/shadPS4/commit/7b0d6c4bf8753fd5ba2181579dd2f94cecfe0766) use json to read local file - [`32fcd80`](https://github.com/shadps4-emu/shadPS4/commit/32fcd80a66923544f5e6ebc1bb27dbebb9a162e6) added createdDefaultUser - [`ee54507`](https://github.com/shadps4-emu/shadPS4/commit/ee545074574f3471ca2cc4441ad64eaca8307fd0) Merge branch 'main' into user_management - [`d61e313`](https://github.com/shadps4-emu/shadPS4/commit/d61e313966976964734bb5d62ec76662333259d5) Merge branch 'main' into user_management ### 📊 Changes **39 files changed** (+399 additions, -63 deletions) <details> <summary>View changed files</summary> 📝 `.gitmodules` (+3 -0) 📝 `CMakeLists.txt` (+5 -1) 📝 `REUSE.toml` (+1 -0) 📝 `externals/CMakeLists.txt` (+4 -0) ➕ `externals/json` (+1 -0) 📝 `src/common/config.cpp` (+9 -0) 📝 `src/common/config.h` (+3 -1) 📝 `src/common/path_util.cpp` (+1 -0) 📝 `src/common/path_util.h` (+2 -0) 📝 `src/core/libraries/audio3d/audio3d.cpp` (+5 -5) 📝 `src/core/libraries/audio3d/audio3d.h` (+3 -4) 📝 `src/core/libraries/game_live_streaming/gamelivestreaming.h` (+3 -2) 📝 `src/core/libraries/ime/error_dialog.cpp` (+2 -1) 📝 `src/core/libraries/ime/error_dialog.h` (+0 -2) 📝 `src/core/libraries/ime/ime.cpp` (+3 -2) 📝 `src/core/libraries/ime/ime.h` (+3 -2) 📝 `src/core/libraries/ime/ime_common.h` (+2 -1) 📝 `src/core/libraries/np_manager/np_manager.cpp` (+11 -6) 📝 `src/core/libraries/np_manager/np_manager.h` (+12 -8) 📝 `src/core/libraries/np_trophy/np_trophy.cpp` (+6 -4) _...and 19 more files_ </details> ### 📄 Description PS4 unlikely previous consoles is user oriented , that means that we have to have user management . This is still WIP , i will update it once it goes on --- <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:52 +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#3216
No description provided.