Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit 716e5df

Browse files
committed
bugfix: app bundle resources
Signed-off-by: 82Flex <82flex@gmail.com>
1 parent 5018bb0 commit 716e5df

File tree

19 files changed

+103
-93
lines changed

19 files changed

+103
-93
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ TrollSpeed is [Free Software](https://www.gnu.org/philosophy/free-sw.html) licen
5757

5858
### Localization
5959

60-
To add a language, create a new `.lproj` folder in `layout/Applications/TrollSpeed.app`.
60+
To add a language, create a new `.lproj` folder in `Resources`.
6161

6262
- en/zh-Hans [@Lessica](https://github.com/Lessica)
6363
- es [@Deci8BelioS](https://github.com/Deci8BelioS)

Resources/Info.plist

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>English</string>
7+
<key>CFBundleDisplayName</key>
8+
<string>TrollSpeed</string>
9+
<key>CFBundleExecutable</key>
10+
<string>TrollSpeed</string>
11+
<key>CFBundleIconFile</key>
12+
<string>icon.png</string>
13+
<key>CFBundleIconName</key>
14+
<string>AppIcon</string>
15+
<key>CFBundleIdentifier</key>
16+
<string>ch.xxtou.hudapp</string>
17+
<key>CFBundleInfoDictionaryVersion</key>
18+
<string>6.0</string>
19+
<key>CFBundleName</key>
20+
<string>TrollSpeed</string>
21+
<key>CFBundlePackageType</key>
22+
<string>APPL</string>
23+
<key>CFBundleShortVersionString</key>
24+
<string>1.11.6</string>
25+
<key>CFBundleSignature</key>
26+
<string>????</string>
27+
<key>CFBundleURLTypes</key>
28+
<array>
29+
<dict>
30+
<key>CFBundleURLName</key>
31+
<string>ch.xxtou.hudapp</string>
32+
<key>CFBundleURLSchemes</key>
33+
<array>
34+
<string>trollspeed</string>
35+
</array>
36+
</dict>
37+
</array>
38+
<key>CFBundleVersion</key>
39+
<string>1.11.6</string>
40+
<key>LSApplicationCategoryType</key>
41+
<string>public.app-category.developer-tools</string>
42+
<key>NSHumanReadableCopyright</key>
43+
<string>Copyright © 2023-2024 Lessica &amp; Lakr Aream. All Rights Reserved.</string>
44+
<key>NSPrincipalClass</key>
45+
<string>HUDMainApplication</string>
46+
<key>UIApplicationShortcutItems</key>
47+
<array>
48+
<dict>
49+
<key>UIApplicationShortcutItemIconSymbolName</key>
50+
<string>wand.and.stars</string>
51+
<key>UIApplicationShortcutItemTitle</key>
52+
<string>Toggle HUD</string>
53+
<key>UIApplicationShortcutItemType</key>
54+
<string>ch.xxtou.shortcut.toggle-hud</string>
55+
</dict>
56+
</array>
57+
<key>UIApplicationShowsViewsWhileLocked</key>
58+
<false/>
59+
<key>UIApplicationSystemWindowsSecureKey</key>
60+
<true/>
61+
<key>UIBackgroundStyle</key>
62+
<string>UIBackgroundStyleDarkBlur</string>
63+
<key>UILaunchStoryboardName</key>
64+
<string>LaunchScreen</string>
65+
<key>UIRequiresFullScreen</key>
66+
<true/>
67+
<key>UIStatusBarStyle</key>
68+
<string>UIStatusBarStyleLightContent</string>
69+
<key>UISupportedInterfaceOrientations</key>
70+
<array>
71+
<string>UIInterfaceOrientationPortrait</string>
72+
<string>UIInterfaceOrientationPortraitUpsideDown</string>
73+
<string>UIInterfaceOrientationLandscapeLeft</string>
74+
<string>UIInterfaceOrientationLandscapeRight</string>
75+
</array>
76+
<key>UIViewControllerBasedStatusBarAppearance</key>
77+
<false/>
78+
</dict>
79+
</plist>

0 commit comments

Comments
 (0)