Fix Info.plist having bare apostrophes
Xcode touched the Info.plist and fixed these, and I changed the file type association definitions to print the correct thing in the future. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
This commit is contained in:
parent
1b48459eaa
commit
81f5adfb5c
3 changed files with 4 additions and 4 deletions
|
@ -764,7 +764,7 @@
|
||||||
<key>CFBundleTypeIconFile</key>
|
<key>CFBundleTypeIconFile</key>
|
||||||
<string>ape.icns</string>
|
<string>ape.icns</string>
|
||||||
<key>CFBundleTypeName</key>
|
<key>CFBundleTypeName</key>
|
||||||
<string>Monkey's Audio File</string>
|
<string>Monkey's Audio File</string>
|
||||||
<key>CFBundleTypeRole</key>
|
<key>CFBundleTypeRole</key>
|
||||||
<string>Viewer</string>
|
<string>Viewer</string>
|
||||||
<key>LSTypeIsPackage</key>
|
<key>LSTypeIsPackage</key>
|
||||||
|
@ -1157,7 +1157,7 @@
|
||||||
<key>CFBundleTypeIconFile</key>
|
<key>CFBundleTypeIconFile</key>
|
||||||
<string>song.icns</string>
|
<string>song.icns</string>
|
||||||
<key>CFBundleTypeName</key>
|
<key>CFBundleTypeName</key>
|
||||||
<string>Abyss' Highest eXperience File</string>
|
<string>Abyss' Highest eXperience File</string>
|
||||||
<key>CFBundleTypeRole</key>
|
<key>CFBundleTypeRole</key>
|
||||||
<string>Viewer</string>
|
<string>Viewer</string>
|
||||||
<key>LSTypeIsPackage</key>
|
<key>LSTypeIsPackage</key>
|
||||||
|
|
|
@ -925,7 +925,7 @@ static uint8_t reverse_bits[0x100];
|
||||||
@[@"MPEG-4 Audio File", @"m4a.icns", @"mp4", @"m4a"],
|
@[@"MPEG-4 Audio File", @"m4a.icns", @"mp4", @"m4a"],
|
||||||
@[@"MPEG-4 AAC Audio File", @"song.icns", @"aac"],
|
@[@"MPEG-4 AAC Audio File", @"song.icns", @"aac"],
|
||||||
@[@"MPEG Audio File", @"mp3.icns", @"mp3", @"m2a", @"mpa"],
|
@[@"MPEG Audio File", @"mp3.icns", @"mp3", @"m2a", @"mpa"],
|
||||||
@[@"Monkey's Audio File", @"ape.icns", @"ape"],
|
@[@"Monkey's Audio File", @"ape.icns", @"ape"],
|
||||||
@[@"AC-3 Audio File", @"song.icns", @"ac3"],
|
@[@"AC-3 Audio File", @"song.icns", @"ac3"],
|
||||||
@[@"DTS Audio File", @"song.icns", @"dts"],
|
@[@"DTS Audio File", @"song.icns", @"dts"],
|
||||||
@[@"DTS-HD MA Audio File", @"song.icns", @"dtshd"],
|
@[@"DTS-HD MA Audio File", @"song.icns", @"dtshd"],
|
||||||
|
|
|
@ -185,7 +185,7 @@ static void oneTimeInit(void) {
|
||||||
+ (NSArray *)fileTypeAssociations {
|
+ (NSArray *)fileTypeAssociations {
|
||||||
return @[
|
return @[
|
||||||
@[@"Hively Tracker File", @"song.icns", @"hvl"],
|
@[@"Hively Tracker File", @"song.icns", @"hvl"],
|
||||||
@[@"Abyss' Highest eXperience File", @"song.icns", @"ahx"]
|
@[@"Abyss' Highest eXperience File", @"song.icns", @"ahx"]
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue