]> gitweb.factorcode.org Git - factor.git/commitdiff
Added UTExportedTypeDeclarations to Info.plist
authorDave Carlton <davec@polymicro.net>
Wed, 30 Dec 2020 18:58:01 +0000 (12:58 -0600)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 31 Dec 2020 15:41:11 +0000 (07:41 -0800)
    Permit system to identify file extension .factor as text

Factor.app/Contents/Info.plist

index 48581e7554fd197a3ad7455ebf299dbaf73f2111..621697230fc1ecebd1ed54284fa464c09d4bd960 100644 (file)
@@ -34,7 +34,7 @@
        <key>CFBundleVersion</key>
        <string>0.99</string>
        <key>NSHumanReadableCopyright</key>
-       <string>Copyright © 2003-2018 Factor developers</string>
+       <string>Copyright © 2003-2020 Factor developers</string>
        <key>NSServices</key>
        <array>
                <dict>
        </array>
        <key>NSHighResolutionCapable</key>
        <true/>
+    <key>UTExportedTypeDeclarations</key>
+    <array>
+      <dict>
+            <key>UTTypeIdentifier</key>
+            <string>public.source-factor</string>
+            <key>UTTypeReferenceURL</key>
+            <string>http://factorcode.org</string>
+            <key>UTTypeDescription</key>
+            <string>Factor Code</string>
+            <key>UTTypeIconFile</key>
+               <string>Factor.icns</string>
+            <key>UTTypeConformsTo</key>
+            <array>
+                <string>public.source</string>
+                <string>public.plain-text</string>
+                <string>public.text</string>
+                <string>public.data</string>
+            </array>
+            <key>UTTypeTagSpecification</key>
+            <dict>
+                <key>public.filename-extension</key>
+                <array>
+                    <string>.factor</string>
+                </array>
+            </dict>
+        </dict>
+    </array>
 </dict>
 </plist>