tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bouncer_firefox_nightly.py (2286B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 # lint_ignore=E501
      6 config = {
      7    "products": {
      8        "installer-latest": {
      9            "product-name": "Firefox-nightly-latest",
     10            "platforms": [
     11                "linux64",
     12                "linux64-aarch64",
     13                "osx",
     14                "win",
     15                "win64",
     16                "win64-aarch64",
     17            ],
     18        },
     19        "installer-latest-ssl": {
     20            "product-name": "Firefox-nightly-latest-SSL",
     21            "platforms": [
     22                "linux64",
     23                "linux64-aarch64",
     24                "osx",
     25                "win",
     26                "win64",
     27                "win64-aarch64",
     28            ],
     29        },
     30        "installer-latest-l10n-ssl": {
     31            "product-name": "Firefox-nightly-latest-l10n-SSL",
     32            "platforms": [
     33                "linux64",
     34                "linux64-aarch64",
     35                "osx",
     36                "win",
     37                "win64",
     38                "win64-aarch64",
     39            ],
     40        },
     41        "msi-latest": {
     42            "product-name": "Firefox-nightly-msi-latest-SSL",
     43            "platforms": [
     44                "win",
     45                "win64",
     46            ],
     47        },
     48        "msi-latest-l10n": {
     49            "product-name": "Firefox-nightly-msi-latest-l10n-SSL",
     50            "platforms": [
     51                "win",
     52                "win64",
     53            ],
     54        },
     55        "stub-installer": {
     56            "product-name": "Firefox-nightly-stub",
     57            "platforms": [
     58                "win",
     59                "win64",
     60                "win64-aarch64",
     61            ],
     62        },
     63        "stub-installer-l10n": {
     64            "product-name": "Firefox-nightly-stub-l10n",
     65            "platforms": [
     66                "win",
     67                "win64",
     68                "win64-aarch64",
     69            ],
     70        },
     71        "pkg-latest": {
     72            "product-name": "Firefox-nightly-pkg-latest-ssl",
     73            "platforms": ["osx"],
     74        },
     75        "pkg-latest-l10n": {
     76            "product-name": "Firefox-nightly-pkg-latest-l10n-ssl",
     77            "platforms": ["osx"],
     78        },
     79    },
     80 }