morgan pushed to branch mullvad-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser
Commits:
ea0d3618 by Henry Wilkes at 2024-09-19T18:48:12+00:00
fixup! Bug 18905: Hide unwanted items from help menu
Bug 42740: Stop trying to hide "Restore previous session".
Firefox already handles this item. If there is no previous session to
restore (such as when using permanent private browsing) it is already
hidden.
- - - - -
1 changed file:
- browser/base/content/appmenu-viewcache.inc.xhtml
Changes:
=====================================
browser/base/content/appmenu-viewcache.inc.xhtml
=====================================
@@ -178,8 +178,7 @@
<toolbarbutton id="appMenu-restoreSession"
data-l10n-id="appmenu-restore-session"
class="subviewbutton"
- command="Browser:RestoreLastSession"
- hidden="true"/>
+ command="Browser:RestoreLastSession"/>
<toolbarseparator/>
<toolbarbutton id="appMenuClearRecentHistory"
data-l10n-id="appmenu-clear-history"
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/ea0…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/ea0…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch base-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
60479f0b by Henry Wilkes at 2024-09-19T18:47:47+00:00
fixup! Bug 18905: Hide unwanted items from help menu
Bug 42740: Stop trying to hide "Restore previous session".
Firefox already handles this item. If there is no previous session to
restore (such as when using permanent private browsing) it is already
hidden.
- - - - -
1 changed file:
- browser/base/content/appmenu-viewcache.inc.xhtml
Changes:
=====================================
browser/base/content/appmenu-viewcache.inc.xhtml
=====================================
@@ -177,8 +177,7 @@
<toolbarbutton id="appMenu-restoreSession"
data-l10n-id="appmenu-restore-session"
class="subviewbutton"
- command="Browser:RestoreLastSession"
- hidden="true"/>
+ command="Browser:RestoreLastSession"/>
<toolbarseparator/>
<toolbarbutton id="appMenuClearRecentHistory"
data-l10n-id="appmenu-clear-history"
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/60479f0…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/60479f0…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
33111520 by Henry Wilkes at 2024-09-19T14:48:55+01:00
fixup! Bug 18905: Hide unwanted items from help menu
Bug 42740: Stop trying to hide "Restore previous session".
Firefox already handles this item. If there is no previous session to
restore (such as when using permanent private browsing) it is already
hidden.
- - - - -
1 changed file:
- browser/base/content/appmenu-viewcache.inc.xhtml
Changes:
=====================================
browser/base/content/appmenu-viewcache.inc.xhtml
=====================================
@@ -182,8 +182,7 @@
<toolbarbutton id="appMenu-restoreSession"
data-l10n-id="appmenu-restore-session"
class="subviewbutton"
- command="Browser:RestoreLastSession"
- hidden="true"/>
+ command="Browser:RestoreLastSession"/>
<toolbarseparator/>
<toolbarbutton id="appMenuClearRecentHistory"
data-l10n-id="appmenu-clear-history"
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3311152…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3311152…
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
5f325aeb by cypherpunks1 at 2024-09-18T18:02:45-08:00
fixup! Bug 40925: Implemented the Security Level component
Bug 43129: Allow Android error pages to use svg images on the Safest security level
- - - - -
1 changed file:
- dom/base/nsNodeInfoManager.cpp
Changes:
=====================================
dom/base/nsNodeInfoManager.cpp
=====================================
@@ -344,6 +344,16 @@ void nsNodeInfoManager::RemoveNodeInfo(NodeInfo* aNodeInfo) {
}
static bool IsSystemOrAddonOrAboutPrincipal(nsIPrincipal* aPrincipal) {
+#ifdef ANDROID
+ if (aPrincipal->SchemeIs("resource")) {
+ nsAutoCString spec;
+ aPrincipal->GetAsciiSpec(spec);
+ if (StringBeginsWith(spec, "resource://android/assets/"_ns)) {
+ return true;
+ }
+ }
+#endif
+
return aPrincipal->IsSystemPrincipal() ||
BasePrincipal::Cast(aPrincipal)->AddonPolicy() ||
// NOTE: about:blank and about:srcdoc inherit the principal of their
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/5f325ae…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/5f325ae…
You're receiving this email because of your account on gitlab.torproject.org.