boklm pushed to branch main at The Tor Project / Applications / tor-android-service
Commits:
27924bc7 by Cecylia Bocovich at 2022-12-05T11:45:24-05:00
Bug 41361: Add conjure support
- - - - -
1 changed file:
- service/src/main/java/org/torproject/android/service/TorService.java
Changes:
=====================================
service/src/main/java/org/torproject/android/service/TorService.java
=====================================
@@ -377,8 +377,10 @@ public final class TorService extends Service implements TorServiceConstants, Or
if(!pluggableTransportObfs.canExecute()) pluggableTransportObfs.setExecutable(true);
File pluggableTransportSnow = new File(nativeDir, "libSnowflake.so");
if(!pluggableTransportSnow.canExecute()) pluggableTransportSnow.setExecutable(true);
+ File pluggableTransportConjure = new File(nativeDir, "libConjure.so");
+ if(!pluggableTransportConjure.canExecute()) pluggableTransportConjure.setExecutable(true);
- builder.configurePluggableTransportsFromSettings(pluggableTransportObfs, pluggableTransportSnow);
+ builder.configurePluggableTransportsFromSettings(pluggableTransportObfs, pluggableTransportSnow, pluggableTransportConjure);
mDataService.updateConfigBuilder(builder);
onionProxyManager.getTorInstaller().updateTorConfigCustom
(builder.asString());
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-android-service/-/commit…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-android-service/-/commit…
You're receiving this email because of your account on gitlab.torproject.org.
Richard Pospesel pushed to branch base-browser-102.7.0esr-12.0-1 at The Tor Project / Applications / Tor Browser
Commits:
caf2d28a by Dan Ballard at 2023-01-19T22:21:41+00:00
fixup! Firefox preference overrides.
privacy-browser#17: disable do not track
(cherry picked from commit f5d35ce628bac6b978420536321836294d9e3cf1)
(cherry picked from commit 3d923dc21e52ca31705e26898330a5d5f659d999)
- - - - -
1 changed file:
- browser/app/profile/001-base-profile.js
Changes:
=====================================
browser/app/profile/001-base-profile.js
=====================================
@@ -148,6 +148,7 @@ pref("browser.newtabpage.enabled", false);
pref("browser.search.region", "US"); // The next two prefs disable GeoIP search lookups (#16254)
pref("browser.search.geoip.url", "");
pref("browser.fixup.alternate.enabled", false); // Bug #16783: Prevent .onion fixups
+pref("privacy.donottrackheader.enabled", false); // (privacy-browser#17)
// Make sure there is no Tracking Protection active in Tor Browser, see: #17898.
pref("privacy.trackingprotection.enabled", false);
pref("privacy.trackingprotection.pbmode.enabled", false);
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/caf2d28…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/caf2d28…
You're receiving this email because of your account on gitlab.torproject.org.
Richard Pospesel pushed to branch tor-browser-102.7.0esr-12.0-1 at The Tor Project / Applications / Tor Browser
Commits:
3d923dc2 by Dan Ballard at 2023-01-19T22:21:07+00:00
fixup! Firefox preference overrides.
privacy-browser#17: disable do not track
(cherry picked from commit f5d35ce628bac6b978420536321836294d9e3cf1)
- - - - -
1 changed file:
- browser/app/profile/001-base-profile.js
Changes:
=====================================
browser/app/profile/001-base-profile.js
=====================================
@@ -148,6 +148,7 @@ pref("browser.newtabpage.enabled", false);
pref("browser.search.region", "US"); // The next two prefs disable GeoIP search lookups (#16254)
pref("browser.search.geoip.url", "");
pref("browser.fixup.alternate.enabled", false); // Bug #16783: Prevent .onion fixups
+pref("privacy.donottrackheader.enabled", false); // (privacy-browser#17)
// Make sure there is no Tracking Protection active in Tor Browser, see: #17898.
pref("privacy.trackingprotection.enabled", false);
pref("privacy.trackingprotection.pbmode.enabled", false);
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3d923dc…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3d923dc…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch base-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
35fa3a0c by cypherpunks1 at 2023-01-19T16:20:10+01:00
Bug 41568: Disable LaterRun
- - - - -
1 changed file:
- browser/components/BrowserContentHandler.jsm
Changes:
=====================================
browser/components/BrowserContentHandler.jsm
=====================================
@@ -662,8 +662,8 @@ nsBrowserContentHandler.prototype = {
additionalPage = Services.urlFormatter.formatURLPref(
"startup.homepage_welcome_url.additional"
);
- // Turn on 'later run' pages for new profiles.
- LaterRun.enabled = true;
+ // Disable 'later run' pages for new profiles (tor-browser#41568)
+ LaterRun.enabled = false;
break;
case OVERRIDE_NEW_MSTONE:
// Check whether we will restore a session. If we will, we assume
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/35fa3a0…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/35fa3a0…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
6ebcf4f4 by cypherpunks1 at 2023-01-19T15:17:57+00:00
Bug 41568: Disable LaterRun
- - - - -
1 changed file:
- browser/components/BrowserContentHandler.jsm
Changes:
=====================================
browser/components/BrowserContentHandler.jsm
=====================================
@@ -703,8 +703,8 @@ nsBrowserContentHandler.prototype = {
additionalPage = Services.urlFormatter.formatURLPref(
"startup.homepage_welcome_url.additional"
);
- // Turn on 'later run' pages for new profiles.
- LaterRun.enabled = true;
+ // Disable 'later run' pages for new profiles (tor-browser#41568)
+ LaterRun.enabled = false;
break;
case OVERRIDE_NEW_MSTONE:
// Check whether we will restore a session. If we will, we assume
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/6ebcf4f…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/6ebcf4f…
You're receiving this email because of your account on gitlab.torproject.org.
Richard Pospesel pushed to branch maint-12.0 at The Tor Project / Applications / tor-browser-build
Commits:
6ddcc8bf by Nicolas Vigier at 2023-01-18T19:59:43+01:00
Bug 40712: 12.0.2-build2
- - - - -
2 changed files:
- projects/browser/Bundle-Data/Docs/ChangeLog.txt
- rbm.conf
Changes:
=====================================
projects/browser/Bundle-Data/Docs/ChangeLog.txt
=====================================
@@ -1,4 +1,4 @@
-Tor Browser 12.0.2 - January 16 2023
+Tor Browser 12.0.2 - January 18 2023
* All Platforms
* Updated tor to 0.4.7.13
* Updated NoScript to 11.4.14
@@ -31,6 +31,7 @@ Tor Browser 12.0.2 - January 16 2023
* Bug 40739: tor-expert-bundle should include ClientTransportPlugin torrc lines for each pluggable transport [tor-browser-build]
* Windows + macOS + Linux
* Bug 40734: Backport the translation project [tor-browser-build]
+ * Bug 40746: Remove pt_config.json from pt dir [tor-browser-build]
* macOS
* Bug 40706: macos-signer-stapler should wait for user interaction before attempting stapling [tor-browser-build]
=====================================
rbm.conf
=====================================
@@ -72,7 +72,7 @@ buildconf:
var:
torbrowser_version: '12.0.2'
- torbrowser_build: 'build1'
+ torbrowser_build: 'build2'
torbrowser_incremental_from:
- 12.0.1
build_mar: 1
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6…
You're receiving this email because of your account on gitlab.torproject.org.
boklm pushed to branch maint-12.0 at The Tor Project / Applications / tor-browser-build
Commits:
f5bf29d5 by Nicolas Vigier at 2023-01-18T19:51:46+01:00
Bug 40746: Remove pt_config.json from pt dir
The pt_config.json file is causing issues with macos code-signing.
- - - - -
1 changed file:
- projects/browser/build
Changes:
=====================================
projects/browser/build
=====================================
@@ -83,9 +83,9 @@ mv [% c('input_files_by_name/noscript') %] "$TBDIR/$EXTSPATH/{73a6fe31-595d-460b
mv_tbdir data/{geoip,geoip6} "$TORCONFIGPATH"
# Bridge lists will be consumed later in `bridges_conf`
- mv tor/pluggable_transports/bridges_list.*.txt $rootdir
+ mv tor/pluggable_transports/bridges_list.*.txt tor/pluggable_transports/pt_config.json $rootdir
[% IF c("var/macos_universal") %]
- rm -f aarch64/tor/pluggable_transports/bridges_list.*.txt
+ rm -f aarch64/tor/pluggable_transports/bridges_list.*.txt aarch64/tor/pluggable_transports/pt_config.json
[% END -%]
# Snowflake's README is the only documentation shipped in tor-expert-bundle
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f…
You're receiving this email because of your account on gitlab.torproject.org.
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
14ede88c by Nicolas Vigier at 2023-01-18T19:35:30+01:00
Bug 40746: Remove pt_config.json from pt dir
The pt_config.json file is causing issues with macos code-signing.
- - - - -
1 changed file:
- projects/browser/build
Changes:
=====================================
projects/browser/build
=====================================
@@ -90,9 +90,9 @@ mv [% c('input_files_by_name/noscript') %] "$TBDIR/$EXTSPATH/{73a6fe31-595d-460b
mv_tbdir data/{geoip,geoip6} "$TORCONFIGPATH"
# Bridge lists will be consumed later in `bridges_conf`
- mv tor/pluggable_transports/bridges_list.*.txt $rootdir
+ mv tor/pluggable_transports/bridges_list.*.txt tor/pluggable_transports/pt_config.json $rootdir
[% IF c("var/macos_universal") %]
- rm -f aarch64/tor/pluggable_transports/bridges_list.*.txt
+ rm -f aarch64/tor/pluggable_transports/bridges_list.*.txt aarch64/tor/pluggable_transports/pt_config.json
[% END -%]
# Snowflake's README is a documentation shipped in tor-expert-bundle
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/1…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/1…
You're receiving this email because of your account on gitlab.torproject.org.