-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathInfo.plist
110 lines (110 loc) · 3.69 KB
/
Info.plist
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="UTF-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>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>QSQRCode</string>
<key>CFBundleIdentifier</key>
<string>com.ssofts.Quicksilver.QSQRCode</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>QSQRCode</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleVersion</key>
<string>6E</string>
<key>NSPrincipalClass</key>
<string>QSQRCode</string>
<key>QSActions</key>
<dict>
<key>QSQRCopyCodeAction</key>
<dict>
<key>actionClass</key>
<string>QSQRCodeAction</string>
<key>actionSelector</key>
<string>copyCodeForObject:</string>
<key>directTypes</key>
<array>
<string>*</string>
</array>
<key>name</key>
<string>Copy QRCode</string>
<key>validatesObjects</key>
<false/>
</dict>
<key>QSQRShowCodeAction</key>
<dict>
<key>actionClass</key>
<string>QSQRCodeAction</string>
<key>actionSelector</key>
<string>showCodeForObject:</string>
<key>directTypes</key>
<array>
<string>*</string>
</array>
<key>name</key>
<string>Show QRCode</string>
<key>validatesObjects</key>
<false/>
</dict>
</dict>
<key>QSPlugIn</key>
<dict>
<key>author</key>
<string>Eric Doughty-Papassideris</string>
<key>categories</key>
<array>
<string>Miscellaneous</string>
</array>
<key>description</key>
<string>Displays objects as QR Code</string>
<key>extendedDescription</key>
<string><h3>Description</h3>
Displays objects as <a href="http://en.wikipedia.org/wiki/QR_Code">QR Code</a> 2D barcodes
<br/><br/><h3>Credits</h3>
Most of the difficult code is written by:
<ul>
<li>libqrencode 3.1 by FUKUCHI Kentaro (<a href="http://megaui.net/fukuchi/works/qrencode/index.en.html">http://megaui.net/...</a>)</li>
<li>Quicksilver plugin Xcode template by Ankur Kothari <a href="http://lipidity.com/apple/quicksilver-plugins-in-objective-c">http://lipidity.com/...</a></li>
<li>UI code heavily inspired from <a href="http://github.com/andreberg/blacktree-alchemy/blob/B5X/Quicksilver/Code-QuickStepInterface/QSLargeTypeDisplay.m">QuickSilvers Large Type by Alcor</a></li>
<li>A tiny function copied from <a href="http://code.google.com/p/mactlmgr/source/browse/trunk/TLMStatusWindow.m?spec=svn569&r=569">Adam Maxwell - TeX Live Manager</a></li>
</ul>
Image conversion, cocoa &quot;ui&quot;, and blending the above resources by <a href="http://s-softs.com">Eric Doughty-Papassideris</a>
<br/><br/><h3>Licence</h3>
IDC v2.0 (&quot;I Dont Care&quot;)
<br/><br/><h3>Disclaimer</h3>
Carefull: I don't want to know about what
happened (or not) because of this code.
You are running it &quot;as-is&quot;,
and it &quot;is not my problem&quot;.
</string>
<key>icon</key>
<string>QSQRCode</string>
<key>qsversion</key>
<string>29CC</string>
<key>relatedBundles </key>
<array/>
</dict>
<key>QSRegistration</key>
<dict>
<key>QSActionProviders</key>
<dict>
<key>QSQRCodeAction</key>
<string>QSQRCodeAction</string>
</dict>
</dict>
<key>QSResourceAdditions</key>
<dict>
<key>QSQRCode</key>
<dict>
<key>bundle</key>
<string>com.ssofts.Quicksilver.QSQRCode</string>
<key>resource</key>
<string>QSQRCode.icns</string>
</dict>
</dict>
</dict>
</plist>