richard pushed to branch base-browser-115.2.0esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
- 
cde79442
by hackademix at 2023-08-22T15:53:12+00:00
- 
ed48588b
by cypherpunks1 at 2023-08-22T15:53:31+00:00
2 changed files:
Changes:
| ... | ... | @@ -17,6 +17,9 @@ pref("startup.homepage_welcome_url.additional", ""); | 
| 17 | 17 |  // Disable Firefox Welcome Dialog
 | 
| 18 | 18 |  pref("browser.aboutwelcome.enabled", false);
 | 
| 19 | 19 | |
| 20 | +// Disable the Firefox View tab (tor-browser#41876)
 | |
| 21 | +pref("browser.tabs.firefox-view", false);
 | |
| 22 | + | |
| 20 | 23 |  // Bug 41668: allow users to apply updates. This is set also in firefox.js for
 | 
| 21 | 24 |  // all platforms, except for Windows. As explained on firefox.js, Firefox uses a
 | 
| 22 | 25 |  // per-installation preference on Windows. However, we patch this behavior, and
 | 
| ... | ... | @@ -1909,6 +1909,7 @@ BrowserGlue.prototype = { | 
| 1909 | 1909 |            lazy.UpdateListener.reset();
 | 
| 1910 | 1910 |          }
 | 
| 1911 | 1911 |        },
 | 
| 1912 | +      () => Services.clipboard.emptyClipboard(Ci.nsIClipboard.kGlobalClipboard) // tor-browser#42019
 | |
| 1912 | 1913 |      ];
 | 
| 1913 | 1914 | |
| 1914 | 1915 |      for (let task of tasks) {
 |