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 on 2019-02-23 07:58:11 | 
| Other Links: | manifest | tags | 
Context
| 2019-02-24 | ||
| 08:50 | [fr][lo] nouvelles couleurs pour LibreOffice check-in: 344818a65d user: olr tags: trunk, fr, lo | |
| 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: trunk, build | |
| 07:53 | [fr] faux positif check-in: 36b0fc03cd user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/config.ini from [aee238173d] to [7da1c762b3].
| ︙ | ︙ | |||
| 44 45 46 47 48 49 50 | oxt_identifier = French.linguistic.resources.from.Dicollecte.by.OlivierR # Firefox fx_identifier = French-GC@grammalecte.net fx_name = Grammalecte [fr] win_fx_dev_path = C:\Program Files\Firefox Developer Edition\firefox.exe | | | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | oxt_identifier = French.linguistic.resources.from.Dicollecte.by.OlivierR # Firefox fx_identifier = French-GC@grammalecte.net fx_name = Grammalecte [fr] win_fx_dev_path = C:\Program Files\Firefox Developer Edition\firefox.exe win_fx_nightly_path = C:\Program Files\Firefox Nightly\firefox.exe linux_fx_dev_path = /usr/bin/firefox linux_fx_nightly_path = /usr/bin/firefox # Thunderbird tb_identifier = French-GC-TB@grammalecte.net tb_name = Grammalecte [fr] win_tb_path = C:\Program Files (x86)\Mozilla Thunderbird\thunderbird.exe | 
| ︙ | ︙ | 
Modified make.py from [7a5afc5f1b] to [38cc0aad8b].
| ︙ | ︙ | |||
| 474 475 476 477 478 479 480 | 
                        os.system(r'web-ext lint -o text')
                    if xArgs.firefox:
                        # Firefox Developper edition
                        spfFirefox = dVars['win_fx_dev_path']  if platform.system() == "Windows"  else dVars['linux_fx_dev_path']
                    else:
                        # Firefox Nightly edition
                        spfFirefox = dVars['win_fx_nightly_path']  if platform.system() == "Windows"  else dVars['linux_fx_nightly_path']
 | | | 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 | 
                        os.system(r'web-ext lint -o text')
                    if xArgs.firefox:
                        # Firefox Developper edition
                        spfFirefox = dVars['win_fx_dev_path']  if platform.system() == "Windows"  else dVars['linux_fx_dev_path']
                    else:
                        # Firefox Nightly edition
                        spfFirefox = dVars['win_fx_nightly_path']  if platform.system() == "Windows"  else dVars['linux_fx_nightly_path']
                    os.system(r'web-ext run --firefox="' + spfFirefox + '" --browser-console')
                    # https://github.com/mozilla/web-ext/issues/932
                    # 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')
            # Thunderbird
            if xArgs.thunderbird:
                spfThunderbird = '"'+dVars['win_tb_path']+'"'  if platform.system() == "Windows"  else dVars['linux_tb_path']
                print(spfThunderbird)
 | 
| ︙ | ︙ |