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

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

Issue 29366797: Issue 4697 - Add support for WebExtension-based Firefox development builds (Closed) Base URL: https://hg.adblockplus.org/sitescripts
Patch Set: Updated tests and update manifest generation Created Dec. 5, 2016, 11:21 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
OLDNEW
(Empty)
1 {
2 "addons":
3 {
4 {%- for extension in extensions %}
5 {{extension.extensionID|json}}:
6 {
7 "updates":
8 [
9 {
10 "version": {{extension.version|json}},
11 "update_link": {{extension.updateURL|json}}
12 {%- if extension.compat -%}
13 ,
14 "applications":
15 {
16 {%- for app in extension.compat %}
17 {{app.id|json}}:
18 {
19 "strict_min_version": {{app.minVersion|json}}
20 }
21 {{- "," if not loop.last else "" }}
22 {%- endfor %}
23 }
24 {%- endif %}
25 }
26 ]
27 }
28 {{- "," if not loop.last else "" }}
29 {%- endfor %}
30 }
31 }
OLDNEW
« no previous file with comments | « sitescripts/extensions/template/update.rdf ('k') | sitescripts/extensions/test/oracle/updates.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld