Overview
| Comment: | [build] paths for Firefox on Windows and on Linux |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | build | webext2 |
| Files: | files | file ages | folders |
| SHA3-256: |
7ba08610f3c165b6fe8b4ec708f02389 |
| User & Date: | olr on 2017-08-06 13:40:25 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-08-06
| ||
| 20:54 | [fx][fr][bug] conj: initialisation incorrecte pour les content-scripts check-in: 2e0c8273f1 user: olr tags: fx, webext2 | |
| 13:40 | [build] paths for Firefox on Windows and on Linux check-in: 7ba08610f3 user: olr tags: build, webext2 | |
| 13:27 | [build] don’t use Firefox nightly for Addon-SDK tests -> developper edition check-in: 97544c27f2 user: olr tags: build, webext2 | |
Changes
Modified gc_lang/fr/config.ini from [1617a5f4ba] to [4666c13388].
| ︙ | |||
27 28 29 30 31 32 33 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | - - - + + + + | oxt_version = 6.2 oxt_identifier = French.linguistic.resources.from.Dicollecte.by.OlivierR # Firefox fx_identifier = French-GC@grammalecte.net fx_name = Grammalecte [fr] |
| ︙ |
Modified make.py from [d0e8712740] to [48fa32607c].
| ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | + | import traceback import configparser import datetime import argparse import importlib import unittest import json import platform from distutils import dir_util, file_util import dialog_bundled import compile_rules import helpers |
| ︙ | |||
346 347 348 349 350 351 352 | 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | + - + + - + |
if xArgs.perf or xArgs.perf_memo:
hDst = open("./gc_lang/"+sLang+"/perf_memo.txt", "a", encoding="utf-8", newline="\n") if xArgs.perf_memo else None
tests.perf(sVersion, hDst)
# Firefox
if xArgs.firefox:
with helpers.cd("_build/xpi/"+sLang):
spfFirefox = dVars['win_fx_dev_path'] if platform.system() == "Windows" else dVars['linux_fx_dev_path']
|