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
Christopher Snowhill 2022-02-20 01:51:11 -08:00
parent 1b48459eaa
commit 81f5adfb5c
3 changed files with 4 additions and 4 deletions

View File

@ -764,7 +764,7 @@
<key>CFBundleTypeIconFile</key>
<string>ape.icns</string>
<key>CFBundleTypeName</key>
<string>Monkey's Audio File</string>
<string>Monkey&apos;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&apos; Highest eXperience File</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSTypeIsPackage</key>

View File

@ -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&apos;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"],

View File

@ -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&apos; Highest eXperience File", @"song.icns", @"ahx"]
];
}