Skip to content
Snippets Groups Projects
  1. Aug 14, 2020
  2. Aug 13, 2020
  3. Aug 11, 2020
  4. Aug 10, 2020
  5. Aug 07, 2020
    • Kathleen Brade's avatar
      fixup! TB4: Tor Browser's Firefox preference overrides. · 502fe906
      Kathleen Brade authored and Georg Koppen's avatar Georg Koppen committed
      Fixes #40066.
      502fe906
    • Alex Catarineu's avatar
      fixup! Bug 21952: Implement Onion-Location · 9a78f236
      Alex Catarineu authored and Georg Koppen's avatar Georg Koppen committed
      Fixes #40019.
      9a78f236
    • Alex Catarineu's avatar
      Bug 40025: Remove Mozilla add-on install permissions · 988c57a8
      Alex Catarineu authored and Georg Koppen's avatar Georg Koppen committed
      988c57a8
    • Alex Catarineu's avatar
      fixup! Bug 26961: New user onboarding. · e0874b09
      Alex Catarineu authored and Georg Koppen's avatar Georg Koppen committed
      e0874b09
    • Alex Catarineu's avatar
      fixup! Bug 2176: Rebrand Firefox to TorBrowser · ec56b5af
      Alex Catarineu authored and Georg Koppen's avatar Georg Koppen committed
      Fixes #40022.
      ec56b5af
    • Alex Catarineu's avatar
      fixup! Bug 10760: Integrate TorButton to TorBrowser core · fad32507
      Alex Catarineu authored and Georg Koppen's avatar Georg Koppen committed
      Fixes #33737
      fad32507
    • Kathleen Brade's avatar
      Bug 33852: Clean up about:logins (LockWise) to avoid mentioning sync, etc. · 42355591
      Kathleen Brade authored and Alex Catarineu's avatar Alex Catarineu committed
      Hide elements on about:logins that mention sync, "Firefox LockWise", and
      Mozilla's LockWise mobile apps.
      
      Disable the "Create New Login" button when security.nocertdb is true.
      42355591
    • Kathleen Brade's avatar
      Bug 32418: Allow updates to be disabled via an enterprise policy. · 45f4145e
      Kathleen Brade authored and Alex Catarineu's avatar Alex Catarineu committed
      Restrict the Enterprise Policies mechanism to only consult a
      policies.json file (avoiding the Windows Registry and macOS's
      file system attributes).
      
      Add a few disabledByPolicy() checks to the update service to
      avoid extraneous (and potentially confusing) log messages when
      updates are disabled by policy.
      
      Sample content for distribution/policies.json:
      {
        "policies": {
          "DisableAppUpdate": true
        }
      }
      
      On Linux, avoid reading policies from /etc/firefox/policies/policies.json
      45f4145e
    • Alex Catarineu's avatar
      Bug 21952: Implement Onion-Location · 00cc4540
      Alex Catarineu authored
      Whenever a valid Onion-Location HTTP header (or corresponding HTML
      <meta> http-equiv attribute) is found in a document load, we either
      redirect to it (if the user opted-in via preference) or notify the
      presence of an onionsite alternative with a badge in the urlbar.
      00cc4540
    • Alex Catarineu's avatar
      Bug 28005: Implement .onion alias urlbar rewrites · 93cf9c5b
      Alex Catarineu authored
      A custom HTTPS Everywhere update channel is installed,
      which provides rules for locally redirecting some memorable
      .tor.onion URLs to non-memorable .onion URLs.
      
      When these redirects occur, we also rewrite the URL in the urlbar
      to display the human-memorable hostname instead of the actual
      .onion.
      
      Bug 34196: Update site info URL with the onion name
      93cf9c5b
    • Alex Catarineu's avatar
      Bug 33342: Avoid disconnect search addon error after removal. · 13c7fd12
      Alex Catarineu authored
      We removed the addon in #32767, but it was still being loaded
      from addonStartup.json.lz4 and throwing an error on startup
      because its resource: location is not available anymore.
      13c7fd12
    • Matthew Finkel's avatar
      Bug 28125 - Prevent non-Necko network connections · 2a761ffa
      Matthew Finkel authored and Alex Catarineu's avatar Alex Catarineu committed
      2a761ffa
    • Matthew Finkel's avatar
      Bug 25741 - TBA: Disable GeckoNetworkManager · 0721d1d7
      Matthew Finkel authored and Alex Catarineu's avatar Alex Catarineu committed
      The browser should not need information related to the network
      interface or network state, tor should take care of that.
      0721d1d7
    • Amogh Pradeep's avatar
      Orfox: Centralized proxy applied to AbstractCommunicator and BaseResources. · 153185e7
      Amogh Pradeep authored and Alex Catarineu's avatar Alex Catarineu committed
      See Bug 1357997 for partial uplift.
      
      Also:
      Bug 28051 - Use our Orbot for proxying our connections
      
      Bug 31144 - ESR68 Network Code Review
      153185e7
    • Matthew Finkel's avatar
      Bug 24796 - Comment out excess permissions from GeckoView · b89e268a
      Matthew Finkel authored and Alex Catarineu's avatar Alex Catarineu committed
      The GeckoView AndroidManifest.xml is not preprocessed unlike Fennec's
      manifest, so we can't use the ifdef preprocessor guards around the
      permissions we do not want. Commenting the permissions is the
      next-best-thing.
      b89e268a
    • Georg Koppen's avatar
      Bug 32658: Create a new MAR signing key · ac66a7e4
      Georg Koppen authored and Alex Catarineu's avatar Alex Catarineu committed
      It's time for our rotation again: Move the backup key in the front
      position and add a new backup key.
      ac66a7e4
    • Kathleen Brade's avatar
      Bug 30237: Add v3 onion services client authentication prompt · 60ab0188
      Kathleen Brade authored and Alex Catarineu's avatar Alex Catarineu committed
      When Tor informs the browser that client authentication is needed,
      temporarily load about:blank instead of about:neterror and prompt
      for the user's key.
      
      If a correctly formatted key is entered, use Tor's ONION_CLIENT_AUTH_ADD
      control port command to add the key (via Torbutton's control port
      module) and reload the page.
      
      If the user cancels the prompt, display the standard about:neterror
      "Unable to connect" page. This requires a small change to
      browser/actors/NetErrorChild.jsm to account for the fact that the
      docShell no longer has the failedChannel information. The failedChannel
      is used to extract TLS-related error info, which is not applicable
      in the case of a canceled .onion authentication prompt.
      
      Add a leaveOpen option to PopupNotifications.show so we can display
      error messages within the popup notification doorhanger without
      closing the prompt.
      
      Add support for onion services strings to the TorStrings module.
      
      Add support for Tor extended SOCKS errors (Tor proposal 304) to the
      socket transport and SOCKS layers. Improved display of all of these
      errors will be implemented as part of bug 30025.
      
      Also fixes bug 19757:
       Add a "Remember this key" checkbox to the client auth prompt.
      
       Add an "Onion Services Authentication" section within the
       about:preferences "Privacy & Security section" to allow
       viewing and removal of v3 onion client auth keys that have
       been stored on disk.
      
      Also fixes bug 19251: use enhanced error pages for onion service errors.
      60ab0188
    • Richard Pospesel's avatar
      Bug 32220: Improve the letterboxing experience · acaa1dce
      Richard Pospesel authored and Alex Catarineu's avatar Alex Catarineu committed
      CSS and JS changes to alter the UX surrounding letterboxing. The
      browser element containing page content is now anchored to the bottom
      of the toolbar, and the remaining letterbox margin is the same color
      as the firefox chrome. The letterbox margin and border are tied to
      the currently selected theme.
      
      Also adds a 'needsLetterbox' property to tabbrowser.xml to fix a race
      condition present when using the 'isEmpty' property. Using 'isEmpty'
      as a proxy for 'needsLetterbox' resulted in over-zealous/unnecessary
      letterboxing of about:blank tabs.
      acaa1dce
    • Alex Catarineu's avatar
    • Alex Catarineu's avatar
      Bug 31740: Remove some unnecessary RemoteSettings instances · 4436013e
      Alex Catarineu authored
      More concretely, SearchService.jsm 'hijack-blocklists' and
      url-classifier-skip-urls.
      4436013e
    • Alex Catarineu's avatar
    • Richard Pospesel's avatar
      Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#tor · 9e803c96
      Richard Pospesel authored and Alex Catarineu's avatar Alex Catarineu committed
      This patch adds a new about:preferences#tor page which allows modifying
      bridge, proxy, and firewall settings from within Tor Browser. All of the
      functionality present in tor-launcher's Network Configuration panel is
      present:
      
       - Setting built-in bridges
       - Requesting bridges from BridgeDB via moat
       - Using user-provided bridges
       - Configuring SOCKS4, SOCKS5, and HTTP/HTTPS proxies
       - Setting firewall ports
       - Viewing and Copying Tor's logs
       - The Networking Settings in General preferences has been removed
      9e803c96
    • Alex Catarineu's avatar
    • Kathleen Brade's avatar
      Bug 31607: App menu items stop working on macOS · f5bc643e
      Kathleen Brade authored and Alex Catarineu's avatar Alex Catarineu committed
      Avoid re-creating the hidden window, since this causes the nsMenuBarX
      object that is associated with the app menu to be freed (which in
      turn causes all of the app menu items to stop working).
      
      More detail: There should only be one hidden window.
      XREMain::XRE_mainRun() contains an explicit call to create the
      hidden window and that is the normal path by which it is created.
      However, when Tor Launcher's wizard/progress window is opened during
      startup, a hidden window is created earlier as a side effect of
      calls to nsAppShellService::GetHiddenWindow(). Then, when
      XREMain::XRE_mainRun() creates its hidden window, the original one
      is freed which also causes the app menu's nsMenuBarX object which
      is associated with that window to be destroyed. When that happens,
      the menuGroupOwner property within each Cocoa menu items's MenuItemInfo
      object is cleared. This breaks the link that is necessary for
      NativeMenuItemTarget's menuItemHit method to dispatch a menu item
      event.
      f5bc643e
    • Kathleen Brade's avatar
      Bug 26961: New user onboarding. · 0847734e
      Kathleen Brade authored and Alex Catarineu's avatar Alex Catarineu committed
      Reuse the Firefox onboarding mechanism with minimal changes.
      Localizable strings are pulled in from Torbutton (if Torbutton is
        not installed, we lack about:tor and no tour will be shown).
      Replace SVG images with PNGs (see bug 27002),
      For defense in depth, omit include OnboardingTelemetry.jsm entirely.
      Added support for the following UITour page event:
        torBrowserOpenSecuritySettings
      
      Also fix bug 27403: the onboarding bubble is not always displayed.
      
      Arthur suggested to make the onboarding bubble visible on displays with
      less than 960px width available, so we choose 200px instead.
      
      Also fix bug 28628: Change onboarding Security panel to open new
      Security Level panel.
      
      Also fix bug 27484: Improve navigation within onboarding.
      
      Bug 27082: enable a limited UITour
      
      Disallow access to UITour functionality from all pages other than
        about:home, about:newtab, and about:tor.
      Implement a whitelist mechanism for page actions.
      
      Bug 26962 - implement new features onboarding (part 1).
      
      Add an "Explore" button to the "Circuit Display" panel within new user
      onboarding which opens the DuckDuckGo .onion and then guides users through
      a short circuit display tutorial.
      
      Allow a few additional UITour actions while limiting as much as possible
      how it can be used.
      
      Tweak the UITour styles to match the Tor Browser branding.
      
      All user interface strings are retrieved from Torbutton's
      browserOnboarding.properties file.
      
      Bug 27486 Avoid about:blank tabs when opening onboarding pages.
      
      Instead of using a simple <a href>, programmatically open onboarding
      web pages by using tabBrowser.addTab(). The same technique is now
      used for "See My Path", "See FAQs", and "Visit an Onion".
      
      Bug 29768: Introduce new features to users
      
      Add an "update" tour for the Tor Browser 8.5 release that contains two
      panels: Toolbar and Security (with appropriate description text and
      images).
      
      Display an attention-grabbing dot on the onboarding text bubble when
      the update tour is active. The animation lasts for 14 seconds.
      
      Bug 31768: Introduce toolbar and network settings changes in onboarding
      
      Update the "Tor Network" onboarding page to include a note that
      settings can now be accessed via the application preferences and
      add an "Adjust Your Tor Network Settings" action button which opens
      about:preferences#tor.
      
      Replace the Tor Browser 8.5 "update" onboarding tour with a 9.0 one
      that includes the revised "Tor Network" page and a revised "Toolbar"
      page. The latter explains that Torbutton's toolbar item has been
      removed ("Goodbye Onion Button") and explains how to access the
      New Identity feature using the hamburger menu and new toolbar item.
      
      Bug 34321 - Add Learn More onboarding item
      0847734e
    • Alex Catarineu's avatar
      Bring back old Firefox onboarding · 69c21cbd
      Alex Catarineu authored
      Revert "Bug 1462415 - Delete onboarding system add-on r=Standard8,k88hudson"
      
      This reverts commit f7ffd78b.
      
      Revert "Bug 1498378 - Actually remove the old onboarding add-on's prefs r=Gijs"
      
      This reverts commit 057fe36f.
      
      Bug 28822: Convert onboarding to webextension
      
      Partially revert 1564367 (controlCenter in UITour.jsm)
      69c21cbd
    • Alex Catarineu's avatar
      Bug 27511: Add new identity button to toolbar · d2246879
      Alex Catarineu authored
      Also added 'New circuit for this site' button to CustomizableUI, but
      not visible by default.
      d2246879
    • Alex Catarineu's avatar
      Bug 31575: Replace Firefox Home (newtab) with about:tor · 07ffbd7a
      Alex Catarineu authored
      Avoid loading AboutNewTab in BrowserGlue.jsm in order
      to avoid several network requests that we do not need. Besides,
      about:newtab will now point to about:blank or about:tor (depending
      on browser.newtabpage.enabled) and about:home will point to
      about:tor.
      07ffbd7a
Loading