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

MacOSXBundleInfo.plist « gui « src - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da90ec73a5f572d4e5716b6aba3b1609e68801e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<!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>NSPrincipalClass</key>
        <string>NSApplication</string>
	<key>CFBundleDevelopmentRegion</key>
        <string>English</string>
        <key>CFBundleExecutable</key>
        <string>${APPLICATION_EXECUTABLE}</string>
        <key>CFBundleIconFile</key>
        <string>${MACOSX_BUNDLE_ICON_FILE}</string>
        <key>CFBundleIdentifier</key>
        <string>${APPLICATION_REV_DOMAIN}</string>
        <key>CFBundleInfoDictionaryVersion</key>
        <string>6.0</string>
        <key>CFBundleLongVersionString</key>
        <string>${APPLICATION_NAME_XML_ESCAPED} ${MIRALL_VERSION_STRING}</string>
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleSignature</key>
        <string>????</string>
        <key>CFBundleVersion</key>
        <string>${MIRALL_VERSION_FULL}</string>
        <key>CFBundleShortVersionString</key>
        <string>${MIRALL_VERSION_STRING}</string>
        <key>NSHumanReadableCopyright</key>
        <string>(C) 2014-2022 ${APPLICATION_VENDOR}</string>
        <key>SUShowReleaseNotes</key>
        <false/>
        <key>SUPublicDSAKeyFile</key>
        <string>dsa_pub.pem</string>

<key>UTExportedTypeDeclarations</key>
<array>
    <dict>
        <key>UTTypeIdentifier</key>
        <string>${APPLICATION_REV_DOMAIN}.VIRTUALFILE</string>
        <key>UTTypeTagSpecification</key>
        <dict>
            <key>public.filename-extension</key>
            <string>${APPLICATION_VIRTUALFILE_SUFFIX}</string>
            <key>public.mime-type</key>
            <string>application/octet-stream</string>
        </dict>
        <key>UTTypeConformsTo</key>
         <array>
             <string>public.data</string>
         </array>
    </dict>
</array>

<key>CFBundleDocumentTypes</key>
<array>
    <dict>
        <key>CFBundleTypeName</key>
        <string>${APPLICATION_EXECUTABLE} Download Virtual File</string>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>LSHandlerRank</key>
        <string>Owner</string>
        <key>LSItemContentTypes</key>
        <array>
            <string>${APPLICATION_REV_DOMAIN}.VIRTUALFILE</string>
        </array>
    </dict>
</array>


</dict>
</plist>