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>CQTexperiment
parent
1b48459eaa
commit
81f5adfb5c
|
@ -764,7 +764,7 @@
|
|||
<key>CFBundleTypeIconFile</key>
|
||||
<string>ape.icns</string>
|
||||
<key>CFBundleTypeName</key>
|
||||
<string>Monkey's Audio File</string>
|
||||
<string>Monkey's Audio File</string>
|
||||
<key>CFBundleTypeRole</key>
|
||||
<string>Viewer</string>
|
||||
<key>LSTypeIsPackage</key>
|
||||
|
@ -1157,7 +1157,7 @@
|
|||
<key>CFBundleTypeIconFile</key>
|
||||
<string>song.icns</string>
|
||||
<key>CFBundleTypeName</key>
|
||||
<string>Abyss' Highest eXperience File</string>
|
||||
<string>Abyss' Highest eXperience File</string>
|
||||
<key>CFBundleTypeRole</key>
|
||||
<string>Viewer</string>
|
||||
<key>LSTypeIsPackage</key>
|
||||
|
|
|
@ -925,7 +925,7 @@ static uint8_t reverse_bits[0x100];
|
|||
@[@"MPEG-4 Audio File", @"m4a.icns", @"mp4", @"m4a"],
|
||||
@[@"MPEG-4 AAC Audio File", @"song.icns", @"aac"],
|
||||
@[@"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"],
|
||||
@[@"DTS Audio File", @"song.icns", @"dts"],
|
||||
@[@"DTS-HD MA Audio File", @"song.icns", @"dtshd"],
|
||||
|
|
|
@ -185,7 +185,7 @@ static void oneTimeInit(void) {
|
|||
+ (NSArray *)fileTypeAssociations {
|
||||
return @[
|
||||
@[@"Hively Tracker File", @"song.icns", @"hvl"],
|
||||
@[@"Abyss' Highest eXperience File", @"song.icns", @"ahx"]
|
||||
@[@"Abyss' Highest eXperience File", @"song.icns", @"ahx"]
|
||||
];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue