Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2009-12-01 02:54:04 +0300
committerMichael Hutchinson <mhutchinson@novell.com>2009-12-01 02:54:04 +0300
commitc7db52d9cfc04fe50b6361c2f7d887eec469ccdb (patch)
treef86facc400930fde7f12f95c555483d845c20bf3 /main/build
parent749973fe9727338de5e0c8168bced3f43a92f9ce (diff)
2009-11-30 Michael Hutchinson <mhutchinson@novell.com>
* Info.plist.in: Add file associations for sln and cs files. * Makefile.am: copy all icon files. svn path=/trunk/monodevelop/; revision=147140
Diffstat (limited to 'main/build')
-rw-r--r--main/build/MacOSX/ChangeLog5
-rw-r--r--main/build/MacOSX/Info.plist.in29
-rw-r--r--main/build/MacOSX/Makefile.am2
3 files changed, 35 insertions, 1 deletions
diff --git a/main/build/MacOSX/ChangeLog b/main/build/MacOSX/ChangeLog
index 629a2a80ee..9772636b7e 100644
--- a/main/build/MacOSX/ChangeLog
+++ b/main/build/MacOSX/ChangeLog
@@ -1,3 +1,8 @@
+2009-11-30 Michael Hutchinson <mhutchinson@novell.com>
+
+ * Info.plist.in: Add file associations for sln and cs files.
+ * Makefile.am: copy all icon files.
+
2009-11-24 Michael Hutchinson <mhutchinson@novell.com>
* mdtool:
diff --git a/main/build/MacOSX/Info.plist.in b/main/build/MacOSX/Info.plist.in
index fc58301413..5f926a70aa 100644
--- a/main/build/MacOSX/Info.plist.in
+++ b/main/build/MacOSX/Info.plist.in
@@ -2,6 +2,35 @@
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>CFBundleDocumentTypes</key>
+ <array>
+ <dict>
+ <key>CFBundleTypeIconFile</key>
+ <string>monodevelop.sln.icns</string>
+ <key>CFBundleTypeExtensions</key>
+ <array>
+ <string>sln</string>
+ </array>
+ <key>CFBundleTypeName</key>
+ <string>MonoDevelop Solution</string>
+ <key>CFBundleTypeRole</key>
+ <string>Editor</string>
+ <key>LSIsAppleDefaultForType</key>
+ <true/>
+ </dict>
+ <dict>
+ <key>CFBundleTypeExtensions</key>
+ <array>
+ <string>cs</string>
+ </array>
+ <key>CFBundleTypeName</key>
+ <string>C# Source File</string>
+ <key>CFBundleTypeRole</key>
+ <string>Editor</string>
+ <key>LSIsAppleDefaultForType</key>
+ <true/>
+ </dict>
+ </array>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
diff --git a/main/build/MacOSX/Makefile.am b/main/build/MacOSX/Makefile.am
index d6f2be747d..251076a4d5 100644
--- a/main/build/MacOSX/Makefile.am
+++ b/main/build/MacOSX/Makefile.am
@@ -31,7 +31,7 @@ MonoDevelop.app: ../AddIns/* ../AddIns/*/* ../AddIns/*/*/* ../bin/* ../data/*/*
cp ../../COPYING $(MAC_APP_DIR)/Contents/MacOS/share/monodevelop/COPYING.LGPL2.1
sed -e "s/@BUNDLE_VERSION@/$(BUNDLE_VERSION)/" -e "s/@ASSEMBLY_VERSION@/$(ASSEMBLY_VERSION)/" Info.plist.in > $(MAC_APP_DIR)/Contents/Info.plist
- cp ../../theme-icons/Mac/monodevelop.icns $(MAC_APP_DIR)/Contents/Resources
+ cp ../../theme-icons/Mac/*.icns $(MAC_APP_DIR)/Contents/Resources/
cp monodevelop $(MACOS)/monodevelop
cp mdtool $(MACOS)/mdtool