OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 "use strict"; | 5 "use strict"; |
6 | 6 |
7 (function() { | 7 (function() { |
8 var platform = "chromium"; | 8 var platform = "chromium"; |
9 var platformVersion = null; | 9 var platformVersion = null; |
10 var application = null; | 10 var application = null; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 addonName: {{ metadata.get('general', 'basename')|json }}, | 57 addonName: {{ metadata.get('general', 'basename')|json }}, |
58 addonVersion: {{ version|json }}, | 58 addonVersion: {{ version|json }}, |
59 | 59 |
60 application: application, | 60 application: application, |
61 applicationVersion: applicationVersion, | 61 applicationVersion: applicationVersion, |
62 | 62 |
63 platform: platform, | 63 platform: platform, |
64 platformVersion: platformVersion | 64 platformVersion: platformVersion |
65 }; | 65 }; |
66 })(); | 66 })(); |
OLD | NEW |