Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: sitescripts/extensions/template/updates.plist

Issue 29322531: Issue 2797 - Add "Update From Gallery" key to the Safari extension update manifest (Closed)
Patch Set: Add "Update From Gallery" for stable, not development builds Created July 17, 2015, 11:33 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sitescripts/extensions/bin/updateUpdateManifests.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ PropertyList-1.0.dtd"> 1 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ PropertyList-1.0.dtd">
2 <plist version="1.0"> 2 <plist version="1.0">
3 <dict> 3 <dict>
4 <key>Extension Updates</key> 4 <key>Extension Updates</key>
5 <array> 5 <array>
6 {%- for extension in extensions %} 6 {%- for extension in extensions %}
7 <dict> 7 <dict>
8 <key>CFBundleIdentifier</key> 8 <key>CFBundleIdentifier</key>
9 <string>org.adblockplus.{{ extension.basename }}</string> 9 <string>org.adblockplus.{{ extension.basename }}</string>
10 <key>Developer Identifier</key> 10 <key>Developer Identifier</key>
11 <string>{{ extension.certificateID }}</string> 11 <string>{{ extension.certificateID }}</string>
12 <key>CFBundleVersion</key> 12 <key>CFBundleVersion</key>
13 <string>{{ extension.version }}</string> 13 <string>{{ extension.version }}</string>
14 <key>CFBundleShortVersionString</key> 14 <key>CFBundleShortVersionString</key>
15 <string>{{ extension.shortVersion }}</string> 15 <string>{{ extension.shortVersion }}</string>
16 <key>URL</key> 16 <key>URL</key>
17 <string>{{ extension.updateURL }}</string> 17 <string>{{ extension.updateURL }}</string>
18 {%- if extension.updatedFromGallery %}
19 <key>Update From Gallery</key>
20 <true/>
21 {%- endif %}
18 </dict> 22 </dict>
19 {%- endfor %} 23 {%- endfor %}
20 </array> 24 </array>
21 </dict> 25 </dict>
22 </plist> 26 </plist>
OLDNEW
« no previous file with comments | « sitescripts/extensions/bin/updateUpdateManifests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld