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

Unified Diff: packagerEdge.py

Issue 29368690: [buildtools] Issue 4578 - Make uap3:AppExtension.Id configurable for Microsoft Edge builds (Closed)
Patch Set: Created Dec. 16, 2016, 10:22 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
« no previous file with comments | « no previous file | templates/edge/AppxManifest.xml.tmpl » ('j') | tests/AppManifest.xml.expect » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packagerEdge.py
diff --git a/packagerEdge.py b/packagerEdge.py
index 23c32403ed13e6f0da0d7909a97c4ffe5f08c1f1..39bde3674c931ed66d628eb4a546b3995d6e5cbc 100644
--- a/packagerEdge.py
+++ b/packagerEdge.py
@@ -84,6 +84,7 @@ def create_appx_manifest(params, files, release_build=False):
w['min'], w['max'] = metadata.get('compat', 'windows').split('/')
params.update(metadata.items('general'))
params['version'] = pad_version(params['version'])
+ params['app_extension_id'] = '1.0' if release_build else 'EdgeExtension'
Wladimir Palant 2016/12/16 10:39:25 Given that this logic isn't something that is inhe
Sebastian Noack 2016/12/16 11:20:11 I already had the same thought. But on the other h
Sebastian Noack 2016/12/19 17:19:52 Yes, it is permanent for Adblock Plus for Microsof
Wladimir Palant 2017/01/05 12:20:49 I don't really see what this discussion is about.
Sebastian Noack 2017/01/05 12:27:57 Thanks for getting back to us. As I said above, I
wspee 2017/01/06 16:18:10 I have made it configure able similar to how you s
Sebastian Noack 2017/01/07 10:18:46 I think it makes sense to use 'EdgeExtension' as d
wspee 2017/01/09 13:32:27 Done.
translation = load_translation(files, defaultLocale)
name_key = 'name' if release_build else 'name_devbuild'
« no previous file with comments | « no previous file | templates/edge/AppxManifest.xml.tmpl » ('j') | tests/AppManifest.xml.expect » ('J')

Powered by Google App Engine
This is Rietveld