Pier Angelo Vendrame pushed to branch firefox-android-115.2.1-13.0-1 at The Tor Project / Applications / firefox-android
Commits:
ec2162be by henry at 2023-09-18T16:12:37+01:00
fixup! Bug 42074: 2023 year end campaign for tor browser HomeFragment
- - - - -
1 changed file:
- fenix/app/src/main/res/values/torbrowser_strings.xml
Changes:
=====================================
fenix/app/src/main/res/values/torbrowser_strings.xml
=====================================
@@ -81,12 +81,8 @@
<!-- Large introduction text. -->
<string name="yec_2023_introduction">Right now, Tor Browser for Android is protecting your privacy!</string>
<!-- 2023 year-end-campaign. -->
- <!-- The first part of yec_2023_pleas_donate_full. Split out from the full string to bring some styling attention to this part. Follows directly below yec_2023_introduction. -->
- <string name="yec_2023_please_donate_beginning">This is possible because of donations from our community.</string>
- <!-- 2023 year-end-campaign. -->
<!-- Full donation message. Follows directly below yec_2023_introduction. -->
- <!-- %s will be replaced with the translated string of yec_2023_please_donate_beginning with some visual styling. -->
- <string name="yec_2023_please_donate_full">%s If you value the privacy that Tor Browser for Android offers yourself and others, please make a donation today.</string>
+ <string name="yec_2023_please_donate">This is possible because of donations from our community. If you value the privacy that Tor Browser for Android offers yourself and others, please make a donation today.</string>
<!-- 2023 year-end-campaign. -->
<!-- Shown only during a period where donations will be matched. The end date should match the end of the year. -->
<!-- %s will be replaced with the donation limit. This will be a whole-number and will be automatically pre-formatted according to the language/locale: using the language's numeral symbols and thousand-separators. -->
View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/ec2…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/ec2…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-115.2.1esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
6a043750 by Richard Pospesel at 2023-09-19T07:46:09+00:00
fixup! Firefox preference overrides.
Bug 42094: Explicitly disable media.aboutwebrtc.hist.enabled
- - - - -
1 changed file:
- browser/app/profile/001-base-profile.js
Changes:
=====================================
browser/app/profile/001-base-profile.js
=====================================
@@ -49,6 +49,7 @@ pref("browser.cache.disk.enable", false);
pref("permissions.memory_only", true);
pref("network.cookie.lifetimePolicy", 2);
pref("security.nocertdb", true);
+pref("media.aboutwebrtc.hist.enabled", false);
// Disk Activity
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/6a04375…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/6a04375…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch base-browser-115.2.1esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
0a1a48fd by Pier Angelo Vendrame at 2023-09-19T01:34:03+00:00
Bug 41995: Generated headers on Windows are not reproducible
The flags optionally passed as a third parameter to DLL_BLOCKLIST_ENTRY
are stored in a set, so they are not ordered.
Sorting them before outputting them makes the creation of the headers
deterministic.
- - - - -
1 changed file:
- toolkit/xre/dllservices/mozglue/gen_dll_blocklist_defs.py
Changes:
=====================================
toolkit/xre/dllservices/mozglue/gen_dll_blocklist_defs.py
=====================================
@@ -570,7 +570,7 @@ class DllBlocklistEntry(object):
flags_str = ""
- flags = self.get_flags_list()
+ flags = sorted(self.get_flags_list())
if flags:
flags_str = ", " + " | ".join(map(self.get_flag_string, flags))
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/0a1a48f…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/0a1a48f…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch tor-browser-115.2.1esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
43f9dbcb by Pier Angelo Vendrame at 2023-09-19T01:29:25+00:00
Bug 41995: Generated headers on Windows are not reproducible
The flags optionally passed as a third parameter to DLL_BLOCKLIST_ENTRY
are stored in a set, so they are not ordered.
Sorting them before outputting them makes the creation of the headers
deterministic.
- - - - -
1 changed file:
- toolkit/xre/dllservices/mozglue/gen_dll_blocklist_defs.py
Changes:
=====================================
toolkit/xre/dllservices/mozglue/gen_dll_blocklist_defs.py
=====================================
@@ -570,7 +570,7 @@ class DllBlocklistEntry(object):
flags_str = ""
- flags = self.get_flags_list()
+ flags = sorted(self.get_flags_list())
if flags:
flags_str = ", " + " | ".join(map(self.get_flag_string, flags))
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/43f9dbc…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/43f9dbc…
You're receiving this email because of your account on gitlab.torproject.org.