Overview
Comment: | [fx] other tests... (sigh) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | webext |
Files: | files | file ages | folders |
SHA3-256: |
0053e9898b640da414fcd88f8dbfa9af |
User & Date: | olr on 2017-07-28 10:17:55 |
Other Links: | branch diff | manifest | tags |
Context
2017-07-31
| ||
04:55 | [fx][core][js] WebExtension: merge with 0053e9898b check-in: a43bd18afb user: olr tags: trunk, fx | |
2017-07-29
| ||
07:54 | [core][js] helpers: inspect check-in: 8820c8ab4d user: olr tags: core, webext | |
2017-07-28
| ||
10:17 | [fx] other tests... (sigh) check-in: 0053e9898b user: olr tags: fx, webext | |
2017-07-26
| ||
06:26 | [fx] unfruitful tests with import/export check-in: fc5f0c057a user: olr tags: fx, webext | |
Changes
Modified gc_core/js/helpers.js from [871413f780] to [4c14caefb4].
1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | - + - + - + - + | // HELPERS "use strict"; // In Firefox, there is no console.log in PromiseWorker, but there is worker.log. // In Thunderbird, you can’t access to console directly. So it’s required to pass a log function. let funcOutput = null; |
︙ | |||
56 57 58 59 60 61 62 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | - + - + + + + + + + + + + + + | logerror(e); return null } } // conversions |
Modified gc_lang/fr/config.ini from [77819114c8] to [102d5ba968].
︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | + + + | oxt_version = 6.1 oxt_identifier = French.linguistic.resources.from.Dicollecte.by.OlivierR # Firefox fx_identifier = French-GC@grammalecte.net fx_name = Grammalecte [fr] fx_standard_path = C:\Program Files\Mozilla Firefox\firefox.exe fx_beta_path = C:\Program Files\Mozilla Firefox Beta\firefox.exe fx_nightly_path = C:\Program Files (x86)\Nightly\firefox.exe # Thunderbird tb_identifier = French-GC-TB@grammalecte.net tb_name = Grammalecte [fr] tb_debug_extension_path = _build/tb-debug.profile/extensions/French-GC-TB@grammalecte.net # Set Thunderbird folder in your PATH variable # Create a local profile: |
︙ |
Modified gc_lang/fr/webext/gce_worker.js from [92282c126d] to [8fda2777a3].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | - + - + + + + + - + + + + + - - - + + + + |
|
︙ | |||
123 124 125 126 127 128 129 | 132 133 134 135 136 137 138 139 | - - - + - - - | function handleMessage (oRequest, xSender, sendResponse) { console.log(`[background] received: ${oRequest.content}`); sendResponse({response: "response from background script"}); } browser.runtime.onMessage.addListener(handleMessage); |
Modified gc_lang/fr/webext/manifest.json from [ceb631e8ca] to [53ddc564c6].
︙ | |||
26 27 28 29 30 31 32 | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | - + | "browser_action": { "default_icon": "img/logo-32.png", "default_popup": "panel/main.html", "default_title": "Grammalecte [fr]", "browser_style": false }, "background": { |
︙ |
Modified make.py from [e6482fde8c] to [18d1b24a9f].
︙ | |||
350 351 352 353 354 355 356 | 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | - + | # Firefox if xArgs.firefox: with helpers.cd("_build/xpi/"+sLang): os.system("jpm run -b nightly") if xArgs.web_ext: with helpers.cd("_build/webext/"+sLang): |
︙ |