tor-browser

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

nimbus.fml.yaml (1948B)


      1 about:
      2  description: Nimbus Feature Manifest for Focus Android
      3  kotlin:
      4    package: org.mozilla.focus
      5    class: .nimbus.FocusNimbus
      6 channels:
      7  - debug
      8  - nightly
      9  - beta
     10  - release
     11 features:
     12  onboarding:
     13    description: Nimbus feature name intended to control the onboarding plus all CFRs in the app.
     14    variables:
     15      is-enabled:
     16        description: If `true`, the app will show the new onboarding screen
     17        type: Boolean
     18        default: true
     19      is-cfr-enabled:
     20        description: If `true`, the app will show the cfrs
     21        type: Boolean
     22        default: false
     23      is-promote-search-widget-dialog-enabled:
     24        description: If `true`, the app will show the new dialog for promote search widget
     25        type: Boolean
     26        default: false
     27    defaults:
     28      - channel: debug
     29        value: {
     30          "is-enabled": true,
     31          "is-cfr-enabled": true,
     32          "is-promote-search-widget-dialog-enabled": true,
     33        }
     34  cookie-banner:
     35    description: Nimbus feature name intended to control the cookie banner handling  in the app.
     36    variables:
     37      is-cookie-handling-enabled:
     38        description: If 'true' , the app will show the settings part for cookie banner handling
     39        type: Boolean
     40        default: false
     41    defaults:
     42      - channel: debug
     43        value: {
     44          "is-cookie-handling-enabled": true
     45        }
     46  remote-search-configuration:
     47    description: Feature to use search configurations from remote servers.
     48    variables:
     49      enabled:
     50        description: >
     51          Uses search configuration from remote servers .
     52        type: Boolean
     53        default: false
     54  pki:
     55    description: Certificate verification configuration
     56    variables:
     57      certificateTransparencyMode:
     58        description: >
     59          What mode Certificate Transparency is in (0=disable, 1=telemetry only, 2=enforce).
     60        type: Option<Int>
     61        default: null
     62 
     63 types:
     64  objects: { }
     65  enums: { }