summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-09-17 00:29:11 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-09-17 00:29:11 +0000
commit99bb78bfb26deb9bf1223c1ceb4968cc922592fd (patch)
treec232a693358142acab07e2bd6277eb932c1ae8c7
parenta5a97b02c0205f0cc98327389ec88672ddd769f2 (diff)
downloadpcsxr-99bb78bfb26deb9bf1223c1ceb4968cc922592fd.tar.gz
Updating the Info.plist files.
Don't deny directories being open, just in case we get to support UTIs that are OS X packages. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@87222 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rw-r--r--macosx/CheatController.m2
-rwxr-xr-xmacosx/ConfigurationController.m2
-rwxr-xr-xmacosx/PcsxrController.m6
-rw-r--r--macosx/plugins/Bladesio1/Info.plist4
-rw-r--r--macosx/plugins/DFCdrom/Info.plist2
-rw-r--r--macosx/plugins/DFInput/Info.plist2
-rw-r--r--macosx/plugins/DFNet/Info.plist2
-rw-r--r--macosx/plugins/DFSound/Info-AL.plist2
-rw-r--r--macosx/plugins/DFSound/Info-SDL.plist2
-rw-r--r--macosx/plugins/DFXVideo/Info.plist2
-rw-r--r--macosx/plugins/PeopsXgl/Info.plist2
11 files changed, 17 insertions, 11 deletions
diff --git a/macosx/CheatController.m b/macosx/CheatController.m
index d65d112d..2c09cf2a 100644
--- a/macosx/CheatController.m
+++ b/macosx/CheatController.m
@@ -199,8 +199,6 @@
- (IBAction)loadCheats:(id)sender
{
NSOpenPanel *openDlg = [NSOpenPanel openPanel];
- [openDlg setCanChooseFiles:YES];
- [openDlg setCanChooseDirectories:NO];
[openDlg setAllowsMultipleSelection:NO];
[openDlg setAllowedFileTypes:[PcsxrCheatHandler supportedUTIs]];
diff --git a/macosx/ConfigurationController.m b/macosx/ConfigurationController.m
index 4dcb3afd..ab887d69 100755
--- a/macosx/ConfigurationController.m
+++ b/macosx/ConfigurationController.m
@@ -91,8 +91,6 @@ NSString *const memCardChangeNumberKey = @"PcsxrMemoryCardThatChangedKey";
mcd = Config.Mcd2;
}
- [openDlg setCanChooseFiles:YES];
- [openDlg setCanChooseDirectories:NO];
[openDlg setAllowedFileTypes:[PcsxrMemCardHandler supportedUTIs]];
path = [[NSFileManager defaultManager] stringWithFileSystemRepresentation:mcd length:strlen(mcd)];
diff --git a/macosx/PcsxrController.m b/macosx/PcsxrController.m
index f517ba3d..c7d1e18b 100755
--- a/macosx/PcsxrController.m
+++ b/macosx/PcsxrController.m
@@ -139,9 +139,6 @@ static void PSXDiscAppearedCallback(DADiskRef disk, void *context)
// switch to another ISO if using internal image reader, otherwise eject the CD
if (UsingIso()) {
NSOpenPanel* openDlg = [NSOpenPanel openPanel];
-
- [openDlg setCanChooseFiles:YES];
- [openDlg setCanChooseDirectories:NO];
[openDlg setAllowedFileTypes:[PcsxrDiscHandler supportedUTIs]];
if ([openDlg runModal] == NSFileHandlingPanelOKButton) {
@@ -248,9 +245,6 @@ static void PSXDiscAppearedCallback(DADiskRef disk, void *context)
- (IBAction)runIso:(id)sender
{
NSOpenPanel* openDlg = [NSOpenPanel openPanel];
-
- [openDlg setCanChooseFiles:YES];
- [openDlg setCanChooseDirectories:NO];
[openDlg setAllowedFileTypes:[PcsxrDiscHandler supportedUTIs]];
if ([openDlg runModal] == NSFileHandlingPanelOKButton) {
diff --git a/macosx/plugins/Bladesio1/Info.plist b/macosx/plugins/Bladesio1/Info.plist
index b96b848d..d36489ab 100644
--- a/macosx/plugins/Bladesio1/Info.plist
+++ b/macosx/plugins/Bladesio1/Info.plist
@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>CFBundleAllowMixedLocalizations</key>
+ <true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
@@ -15,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>PsxP</string>
<key>CFBundleSignature</key>
- <string>CdDI</string>
+ <string>BSio</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>NSPrincipalClass</key>
diff --git a/macosx/plugins/DFCdrom/Info.plist b/macosx/plugins/DFCdrom/Info.plist
index 34e2144e..a7c66670 100644
--- a/macosx/plugins/DFCdrom/Info.plist
+++ b/macosx/plugins/DFCdrom/Info.plist
@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>CFBundleAllowMixedLocalizations</key>
+ <true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
diff --git a/macosx/plugins/DFInput/Info.plist b/macosx/plugins/DFInput/Info.plist
index 68188a25..31774205 100644
--- a/macosx/plugins/DFInput/Info.plist
+++ b/macosx/plugins/DFInput/Info.plist
@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>CFBundleAllowMixedLocalizations</key>
+ <true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
diff --git a/macosx/plugins/DFNet/Info.plist b/macosx/plugins/DFNet/Info.plist
index 8a57e31f..f890abf5 100644
--- a/macosx/plugins/DFNet/Info.plist
+++ b/macosx/plugins/DFNet/Info.plist
@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>CFBundleAllowMixedLocalizations</key>
+ <true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
diff --git a/macosx/plugins/DFSound/Info-AL.plist b/macosx/plugins/DFSound/Info-AL.plist
index fa162fa8..9444d7c8 100644
--- a/macosx/plugins/DFSound/Info-AL.plist
+++ b/macosx/plugins/DFSound/Info-AL.plist
@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>CFBundleAllowMixedLocalizations</key>
+ <true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
diff --git a/macosx/plugins/DFSound/Info-SDL.plist b/macosx/plugins/DFSound/Info-SDL.plist
index 789dc5c1..921fd155 100644
--- a/macosx/plugins/DFSound/Info-SDL.plist
+++ b/macosx/plugins/DFSound/Info-SDL.plist
@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>CFBundleAllowMixedLocalizations</key>
+ <true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
diff --git a/macosx/plugins/DFXVideo/Info.plist b/macosx/plugins/DFXVideo/Info.plist
index d290e2e8..4f9669f0 100644
--- a/macosx/plugins/DFXVideo/Info.plist
+++ b/macosx/plugins/DFXVideo/Info.plist
@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>CFBundleAllowMixedLocalizations</key>
+ <true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
diff --git a/macosx/plugins/PeopsXgl/Info.plist b/macosx/plugins/PeopsXgl/Info.plist
index 9213c5d8..5d2b991d 100644
--- a/macosx/plugins/PeopsXgl/Info.plist
+++ b/macosx/plugins/PeopsXgl/Info.plist
@@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>CFBundleAllowMixedLocalizations</key>
+ <true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>