Pier Angelo Vendrame pushed to branch tor-browser-153.1.0esr-16.0-1 at The Tor Project / Applications / Tor Browser
Commits:
-
d0f160ff
by Beatriz Rizental at 2026-08-19T09:42:41+02:00
-
d5978a68
by Beatriz Rizental at 2026-08-19T09:42:41+02:00
-
14bc2a35
by Beatriz Rizental at 2026-08-19T09:42:41+02:00
4 changed files:
- browser/components/preferences/config/letterboxing.mjs
- python/mozlint/mozlint/cli.py
- toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/factory.rs
- toolkit/components/tor-integration/tor_service/src/control_socket.rs
Changes:
| ... | ... | @@ -78,7 +78,8 @@ Preferences.addSetting({ |
| 78 | 78 | SettingGroupManager.registerGroups({
|
| 79 | 79 | letterboxing: {
|
| 80 | 80 | l10nId: "letterboxing-settings-group",
|
| 81 | - supportPage: "tor-manual:features__fingerprinting-protections___letterboxing",
|
|
| 81 | + supportPage:
|
|
| 82 | + "tor-manual:features__fingerprinting-protections___letterboxing",
|
|
| 82 | 83 | headingLevel: 2,
|
| 83 | 84 | items: [
|
| 84 | 85 | {
|
| ... | ... | @@ -25,7 +25,6 @@ INACTIVE_LINTERS = [ |
| 25 | 25 | "android-javadoc",
|
| 26 | 26 | "android-lint",
|
| 27 | 27 | "android-test",
|
| 28 | - "clippy",
|
|
| 29 | 28 | "codespell",
|
| 30 | 29 | "condprof-addons",
|
| 31 | 30 | "file-perm",
|
| ... | ... | @@ -424,7 +424,9 @@ mod tests { |
| 424 | 424 | assert!(!factory.has_pending_data());
|
| 425 | 425 | |
| 426 | 426 | assert_eq!(
|
| 427 | - factory.build(&Bytes::from_static(b"250 OK\r\nA\r\n")).unwrap_err(),
|
|
| 427 | + factory
|
|
| 428 | + .build(&Bytes::from_static(b"250 OK\r\nA\r\n"))
|
|
| 429 | + .unwrap_err(),
|
|
| 428 | 430 | ReplyError::LineTooShort,
|
| 429 | 431 | );
|
| 430 | 432 | assert!(!factory.has_pending_data());
|
| ... | ... | @@ -11,7 +11,11 @@ use nserror::{ |
| 11 | 11 | NS_ERROR_FAILURE, NS_ERROR_INVALID_ARG, NS_ERROR_NOT_AVAILABLE, NS_ERROR_UNEXPECTED, NS_OK,
|
| 12 | 12 | };
|
| 13 | 13 | use nsstring::nsACString;
|
| 14 | -use std::{cell::{Cell, RefCell}, ffi::c_char, ptr::null};
|
|
| 14 | +use std::{
|
|
| 15 | + cell::{Cell, RefCell},
|
|
| 16 | + ffi::c_char,
|
|
| 17 | + ptr::null,
|
|
| 18 | +};
|
|
| 15 | 19 | use thin_vec::ThinVec;
|
| 16 | 20 | use tor_provider::ctor::{ControlSocket, ControlSocketError};
|
| 17 | 21 | use xpcom::interfaces::{
|