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

Unified Diff: sitescripts/extensions/template/update.rdf

Issue 29366797: Issue 4697 - Add support for WebExtension-based Firefox development builds (Closed) Base URL: https://hg.adblockplus.org/sitescripts
Patch Set: Created Dec. 5, 2016, 8:38 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sitescripts/extensions/template/update.rdf
===================================================================
--- a/sitescripts/extensions/template/update.rdf
+++ b/sitescripts/extensions/template/update.rdf
@@ -25,18 +25,18 @@
<Seq>
<li>
<Description>
<em:version>{{extension.version}}</em:version>
{%- for app in extension.compat %}
<em:targetApplication>
<Description>
<em:id>{{app.id}}</em:id>
- <em:minVersion>{{app.minVersion}}</em:minVersion>
- <em:maxVersion>{{app.maxVersion}}</em:maxVersion>
+ <em:minVersion>{{app.minVersion or "*"}}</em:minVersion>
+ <em:maxVersion>{{app.maxVersion or "*"}}</em:maxVersion>
<em:updateLink>{{extension.updateURL}}</em:updateLink>
{%- if extension.changelogURL %}
<em:updateInfoURL>{{extension.changelogURL}}</em:updateInfoURL>
{%- endif %}
</Description>
</em:targetApplication>
{%- endfor %}
</Description>

Powered by Google App Engine
This is Rietveld