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' |