Commit 934044f 1 parent d380786 commit 934044f Copy full SHA for 934044f
File tree 2 files changed +23
-10
lines changed
PublishFiles/Space Station 14 Launcher.app/Contents
2 files changed +23
-10
lines changed Original file line number Diff line number Diff line change 1
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">
2
+ <!DOCTYPE plist PUBLIC "-//Apple Computer //DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
3
<plist version =" 1.0" >
4
4
<dict >
5
- <key >CFBundleName </key >
6
- <string >SS14L </string >
7
- <key >CFBundleDisplayName </key >
8
- <string >Space Station 14 Launcher </string >
9
- <key >CFBundleExecutable </key >
10
- <string >SS14 </string >
11
- <key >CFBundleIconFile </key >
12
- <string >ss14 </string >
5
+ <key >CFBundleName </key >
6
+ <string >SS14L </string >
7
+ <key >CFBundleDisplayName </key >
8
+ <string >Space Station 14 Launcher </string >
9
+ <key >CFBundleExecutable </key >
10
+ <string >SS14 </string >
11
+ <!--
12
+ Just a note about this icon.
13
+ MacOS seems REALLY iffy about this and even when the file is correct,
14
+ it can take forever before it decides to actually update it and display it.
15
+ TL;DR Apple is stupid.
16
+ -->
17
+ <key >CFBundleIconFile </key >
18
+ <string >ss14 </string >
13
19
<key >CFBundleIdentifier </key >
14
20
<string >com.spacestation14.launcher </string >
15
21
<key >CFBundleURLTypes </key >
33
39
<string >rtbundle </string >
34
40
</array >
35
41
<key >CFBundleTypeIconFile </key >
36
- <string >ss14.icns </string >
42
+ <string >ss14 </string >
37
43
<key >LSHandlerRank </key >
38
44
<string >Owner </string >
39
45
<key >CFBundleTypeName </key >
Original file line number Diff line number Diff line change @@ -34,6 +34,13 @@ public App()
34
34
public App ( OverrideAssetsManager overrideAssets )
35
35
{
36
36
_overrideAssets = overrideAssets ;
37
+
38
+ UrlsOpened += OnOSXUrlsOpened ;
39
+ }
40
+
41
+ private void OnOSXUrlsOpened ( object ? sender , UrlOpenedEventArgs e )
42
+ {
43
+ Log . Debug ( "Url opened: {Url}" , e . Urls ) ;
37
44
}
38
45
39
46
public override void Initialize ( )
You can’t perform that action at this time.
0 commit comments