Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set GCSupportsGameMode in info.plist files for iOS and Mac #19270

Merged
merged 2 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ios/PPSSPP-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,10 @@
<array>
<string>arm64</string>
</array>
<key>LSApplicationCategory</key>
<key>LSApplicationCategoryType</key>
<string>public.app-category.games</string>
<key>GCSupportsGameMode</key>
<true/>
<key>UIStatusBarHidden</key>
<true/>
<key>UISupportedInterfaceOrientations</key>
Expand Down
4 changes: 3 additions & 1 deletion macOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,10 @@
<true/>
<key>NSHumanReadableCopyright</key>
<string></string>
<key>LSApplicationCategory</key>
<key>LSApplicationCategoryType</key>
<string>public.app-category.games</string>
<key>GCSupportsGameMode</key>
<true/>
<key>UTExportedTypeDeclarations</key>
<array>
<dict>
Expand Down
4 changes: 4 additions & 0 deletions macOS/InfoGold.plist
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@
<true/>
<key>NSHumanReadableCopyright</key>
<string></string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.games</string>
Copy link
Collaborator

@anr2me anr2me Jun 11, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This value should be used for LSApplicationCategoryType instead of LSApplicationCategory isn't? https://developer.apple.com/documentation/bundleresources/information_property_list/lsapplicationcategorytype

PS: LSApplicationCategory key might not even existed. https://stackoverflow.com/questions/59571251/catalyst-app-info-plist-not-being-recognized

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, that's a typo by me indeed. I'll fix it.

<key>GCSupportsGameMode</key>
<true/>
<key>UTExportedTypeDeclarations</key>
<array>
<dict>
Expand Down
Loading