Overview
| Comment: | [core][fx] gc engine in a dedicated worker |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | fx | webext2 |
| Files: | files | file ages | folders |
| SHA3-256: |
51a209f202acedcd09aedfcc5f6edf28 |
| User & Date: | olr on 2017-08-04 08:18:42 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-08-04
| ||
| 15:41 | [fx][core] initialization in gce_worker.js check-in: 1f4195c966 user: olr tags: fx, webext2 | |
| 08:18 | [core][fx] gc engine in a dedicated worker check-in: 51a209f202 user: olr tags: fx, webext2 | |
| 06:32 | [core][js][py] nextWord and previousWord: only necessary groups + bug fix for JS check-in: 30b40b6153 user: olr tags: core, webext2 | |
Changes
Added gc_lang/fr/webext/background.js version [67f47c2618].
|
Modified gc_lang/fr/webext/gce_worker.js from [172934d86f] to [ea3f39a7e2].
1 | 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 47 48 49 50 51 52 53 54 55 56 | + + + - + + + + + + + + + + + + + + + + + + + + + + |
/*
WORKER:
https://developer.mozilla.org/en-US/docs/Web/API/Worker
https://developer.mozilla.org/en-US/docs/Web/API/DedicatedWorkerGlobalScope
|
| ︙ | |||
119 120 121 122 123 124 125 | 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | - - - - - - - + + + |
catch (e) {
helpers.logerror(e);
}
return JSON.stringify([]);
}
|
Modified gc_lang/fr/webext/manifest.json from [dc30bec757] to [49413af971].
| ︙ | |||
26 27 28 29 30 31 32 | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | - - - - - - - - - - - - - - + |
"default_icon": "img/logo-32.png",
"default_popup": "panel/main.html",
"default_title": "Grammalecte [fr]",
"browser_style": false
},
"background": {
"scripts": [
|
| ︙ |