- 22 Jun, 2018 1 commit
-
-
Georg Koppen authored
-
- 19 Jun, 2018 1 commit
-
-
Added strings needed for Onion domain Page Info dialog to en locale
-
- 15 Jun, 2018 1 commit
-
-
Georg Koppen authored
This reverts commit d127873b.
-
- 07 Jun, 2018 1 commit
-
-
Arthur Edelstein authored
We try to maintain the same security slider behavior as for the legacy version of NoScript. This patch uses a few tricks: 1. Using a LegacyExtensionContext (defined in LegacyExtensionsUtils.jsm) to send JSON objects to NoScript via sendMessage. 2. Taking advantage of an existing invocation of browser.runtime.onMessage.addListener(...) in NoScript's code that accepts a JSON object for updating NoScript's settings. 3. Providing NoScript with settings for a "site" whose "domain" is "http:", which causes NoScript to match non-https sites. (Thanks to Sukhbir Singh for help.)
-
- 30 May, 2018 2 commits
-
-
Georg Koppen authored
-
-
- 28 May, 2018 1 commit
-
-
Georg Koppen authored
-
- 24 May, 2018 6 commits
-
-
Igor Oliveira authored
code - Move all the resource files to the same directory and change the chrome.manifest file to allow them to be accessible by the chrome.[1] - jsversion.h was removed, we don't need to specify the JS version anymore.[2] - Since Torbutton has now logic to load the default preferences and we don't know when a string is a complex data, for the sake of simplicity, we are now retiring non-localized.properties and hard coding the about:tor in the preferences file. - Use tabbrowser-initialBrowser instead of content [1] https://bugzilla.mozilla.org/show_bug.cgi?id=863246 [2] https://bugzilla.mozilla.org/show_bug.cgi?id=1440043
-
Igor Oliveira authored
Mozilla switched from Task.spawn to async/await[1] and we should follow it since it makes the code simple. [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1353542
-
Igor Oliveira authored
Mozilla removed the code that loads the default extension preferences[1]. Thus we need to load them in the startup time. [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1413413
-
Igor Oliveira authored
The xmlhttprequest xpcom interface was deprecated in favor of the XMLHttpRequest.
-
Igor Oliveira authored
- catch statement can not have if statements. https://bugzilla.mozilla.org/show_bug.cgi?id=1228841 - Use 0o to represent octal numbers. https://bugzilla.mozilla.org/show_bug.cgi?id=1263074 - remove -moz- prefix in css https://bugzilla.mozilla.org/show_bug.cgi?id=1270406
-
Igor Oliveira authored
intl.locale.requested is the new way that Gecko handles locales. See https://bugzilla.mozilla.org/show_bug.cgi?id=1414390
-
- 23 May, 2018 1 commit
-
-
On some OSes relay lines are wrapping and the doorhanger is sometimes rendering too small to show everything inside. We avoid the line wrapping and resize the identity popup where needed.
-
- 22 May, 2018 2 commits
-
-
Georg Koppen authored
-
New circuit display design by Antonela Debiasi. The new design includes a "Guard" indicator, a "Load New Circuit" button, new Photon-compatible style.
-
- 03 May, 2018 1 commit
-
-
Georg Koppen authored
-
- 11 Apr, 2018 1 commit
-
-
Georg Koppen authored
-
- 05 Apr, 2018 1 commit
-
-
Use flexbox and media queries to make the layout responsive. For small and medium break points, remove the tor status image since there isn't enough space.
-
- 07 Mar, 2018 1 commit
-
-
Georg Koppen authored
-
- 21 Feb, 2018 1 commit
-
-
Georg Koppen authored
-
- 25 Jan, 2018 1 commit
-
-
Arthur Edelstein authored
The campaign is finished, so we can remove the banner. I'm leaving in the strings in case we want to use some of them next year.
-
- 23 Jan, 2018 1 commit
-
-
Kathleen Brade authored
For known platforms, append "-Windows", "-Linux", "-MacOS", or "-Android" to torbrowser.version before checking against the recommended versions JSON file. This allows for platform differences in the supported version.
-
- 18 Jan, 2018 1 commit
-
-
Georg Koppen authored
Translations update, CHANGELOG update, and version bump
-
- 10 Jan, 2018 1 commit
-
-
Georg Koppen authored
-
- 21 Dec, 2017 1 commit
-
-
Arthur Edelstein authored
-
- 18 Dec, 2017 2 commits
-
-
Georg Koppen authored
-
-
- 17 Dec, 2017 1 commit
-
-
Georg Koppen authored
We update the copy of our desktop security slider following the experience provided for mobile users.
-
- 08 Nov, 2017 1 commit
-
-
Georg Koppen authored
-
- 27 Oct, 2017 1 commit
-
-
Arthur Edelstein authored
-
- 23 Oct, 2017 1 commit
-
-
Georg Koppen authored
-
- 17 Oct, 2017 1 commit
-
-
Georg Koppen authored
-
- 24 Oct, 2017 1 commit
-
-
Arthur Edelstein authored
Also: change donation link to https://www.torproject.org/donate/donate-pdr-tbb-[locale]
-
- 22 Sep, 2017 1 commit
-
-
Georg Koppen authored
-
- 21 Sep, 2017 1 commit
-
-
Arthur Edelstein authored
(Also removes a dot from aboutTor.donationBanner.slogan)
-
- 15 Sep, 2017 1 commit
-
-
Arthur Edelstein authored
-
- 29 Aug, 2017 1 commit
-
-
Georg Koppen authored
-
- 23 Aug, 2017 2 commits
-
-
When the browser window is maximized, we show users a notification warning that maximizing the screen is fingerprintable. We should show this warning when the window enters fullscreen mode as well. This change is especially important for macOS, which uses window.STATE_FULLSCREEN instead of window.STATE_MAXIMIZED when the user clicks the "maximize" button on the window title bar.
-
Before this patch, a new Tor Browser window, non-maximized, was showing a "don't maximize this window" notification briefly as soon as it was first displayed. Worse, the notification box that appears causes the window height to increase by 10 or 11 pixels and thus breaks our desired window dimension rounding. Our intended behavior is that this notification only be shown when the window is maximized by the user. I discovered that, on macOS, windowState === window.STATE_MAXIMIZED for a short time when the window is first created. Then it rapidly changes to windowState === window.STATE_NORMAL. So I added a `setTimeout` promise to postpone checking the window size until after window creation "settles" and that seems to be enough to ensure we avoid showing the spurious notification box at window creation. Also fixes Bug 22543, "Tor Browser 7.0 shows window resize warning on every new window for a few seconds". And fixes issues raised in comments 2 and 3 in that ticket as well.
-