Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | [build] Firefox Nightly has a new folder and no need for a specific profile |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | build |
Files: | files | file ages | folders |
SHA3-256: | 58a64cf90ab3669be519b6d4a1f3ce9f |
User & Date: | olr 2019-02-23 07:58:11 |
Context
2019-02-24
| ||
08:50 | [fr][lo] nouvelles couleurs pour LibreOffice check-in: 344818a65d user: olr tags: fr, lo, trunk | |
2019-02-23
| ||
08:17 | merge trunk check-in: 4fa8759303 user: olr tags: comdic | |
07:58 | [build] Firefox Nightly has a new folder and no need for a specific profile check-in: 58a64cf90a user: olr tags: build, trunk | |
07:53 | [fr] faux positif check-in: 36b0fc03cd user: olr tags: fr, trunk | |
Changes
Changes to gc_lang/fr/config.ini.
44 44 oxt_identifier = French.linguistic.resources.from.Dicollecte.by.OlivierR 45 45 46 46 # Firefox 47 47 fx_identifier = French-GC@grammalecte.net 48 48 fx_name = Grammalecte [fr] 49 49 50 50 win_fx_dev_path = C:\Program Files\Firefox Developer Edition\firefox.exe 51 -win_fx_nightly_path = C:\Program Files\Nightly\firefox.exe 51 +win_fx_nightly_path = C:\Program Files\Firefox Nightly\firefox.exe 52 52 linux_fx_dev_path = /usr/bin/firefox 53 53 linux_fx_nightly_path = /usr/bin/firefox 54 54 55 55 # Thunderbird 56 56 tb_identifier = French-GC-TB@grammalecte.net 57 57 tb_name = Grammalecte [fr] 58 58 win_tb_path = C:\Program Files (x86)\Mozilla Thunderbird\thunderbird.exe
Changes to make.py.
474 474 os.system(r'web-ext lint -o text') 475 475 if xArgs.firefox: 476 476 # Firefox Developper edition 477 477 spfFirefox = dVars['win_fx_dev_path'] if platform.system() == "Windows" else dVars['linux_fx_dev_path'] 478 478 else: 479 479 # Firefox Nightly edition 480 480 spfFirefox = dVars['win_fx_nightly_path'] if platform.system() == "Windows" else dVars['linux_fx_nightly_path'] 481 - os.system(r'web-ext run --firefox="' + spfFirefox + '" --browser-console --firefox-profile=debug') 481 + os.system(r'web-ext run --firefox="' + spfFirefox + '" --browser-console') 482 482 # https://github.com/mozilla/web-ext/issues/932 483 483 # os.system(r'web-ext run --firefox="' + spfFirefox + r'" --browser-console --firefox-profile=C:\Users\EAK\AppData\Roaming\Mozilla\Firefox\Profiles\e26559tw.debug --keep-profile-changes') 484 484 485 485 # Thunderbird 486 486 if xArgs.thunderbird: 487 487 spfThunderbird = '"'+dVars['win_tb_path']+'"' if platform.system() == "Windows" else dVars['linux_tb_path'] 488 488 print(spfThunderbird)