Loading
Commits on Source 55
-
-
TB 43308: Remove about:logo which exposes a branding asset.
-
TB 43466: Drop unnecessary changes to the aboutDialog.css stylesheet. Common branding rules common to tor browser releases were moved to the existing aboutDialogTor.css. Duplicate rules that were already in browser/base/content/aboutDialog.css were dropped. Rules that only made a minor difference were dropped: 1. We now centre-align the logo, instead of right-aligning (which did not seem to work as intended in right-to-left locales). 2. We keep the logo at the default 192px size, rather than 180px, which is a 0.75 scaling of the original 256px PNG. 3. We use the default size between the wordmark and "Extended Support Release", which increases the gap by 6px.
-
Pier Angelo Vendrame authored
ScreenCaptureKit is not available on older macOS versions. For some reason, the upstream build have it as a weak import even though they do not specify the -weak_framework flag, whereas our builds have it as a normal import and do not work on macOS 10.15 without this patch.
-
TB 43406: Hide the "onion available" button whilst the "Connect" button is shown.
-
TB 43398: Prevent tor-button CSS rules from overwriting the tor-urlbar-button-plain class rules.
-
TB 43461: Drop our wordmark padding.
-
add base-browser branch+taggging step
-
TB 43462: Drop preference for blocking internet tests since it no longer requires Moat access.
-
fixup! TB 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection TB 43462: Make the internet status in `about:preferences` update automatically without any user input. We listen to the status via TorConnect.
-
TB 43462: Add a string for the "unknown" internet status.
-
TB 43462: Use NetworkLinkService instead of Moat for the internet test. TorConnect now exposes an `internetStatus` property, which is kept up to date using `NetworkLinkService`.
-
Fetch the custom built no-op application services library from tor-browser-build when building for Android.
-
add issue template for mozilla uplifts and tweak MR template to signal to merger an uplift issue should be created after merge
-
Bug 42669: get latest application services by date and put in tools
-
Bug 42669: Inject gradle property for nimbus-fml path for application services
-
Rename TorIntegrationAndroid.java to TorAndroidIntegration.java
-
rename TorIntegrationAndroid.java to TorAndroidIntegration.java
-
TB 43446: Include alpha and nightly branding in the translation CI.
-
TB 43446: Allow the combine translation script to select some branding strings from different files.
-
TB 43446: Change the branding name for the alpha and nightly releases.
-
Pier Angelo Vendrame authored
BB 43498: Remove our old patch for 43129. This commit should be ignored at the next rebase (and we will likely have a conflict on the security level commit).
-
Pier Angelo Vendrame authored
Differential Revision: https://phabricator.services.mozilla.com/D224895
-
Bug 42669: use topsrcdir as defined by us in local.properties for gradle to support different project dirs in AS
-
add backport template and tweak the uplift template
-
fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection TB 43328: Improve the Tor log dialog.
-
TB 43328: Make getLog return the LogEntry data.
-
TB 43328: Improve the Tor log.
-
bug 42669: fenix dir missing from nimbusFml path
-
-
include Bugzilla as potential source of backports
-
update the auto /label command to Apps::Type::Bug
-
add /label command to add Apps::Type::Rebase automatically
-
TB 43502: Move about:torconnect methods to TorConnectParent.
-
fixup! TB 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection TB 43502: Move about:torconnect methods to TorConnectParent.
-
TB 43502: Remove about:torconnect specific methods from TorConnect module.
-
update release prep label link
-
Bug 43518: Fix TBB builds without topsrcdir defined
-
TB 43529: Await BootstrapAttempt.cancel in AutoBootstrapAttempt. We also add a comment for the reason why we need to await.
-
This should have been included with the following. Bug 43359: Improper handling of TorBootstrapChangeListener with respect to system onDestroy() calls for HomeActivity
-
TBB 41382: Replace gitlab templates ReleasePrep label references with Apps::Type::ReleasePreparation
-
TBB 41382: Replace gitlab templates ReleasePrep label references with Apps::Type::ReleasePreparation
-
Pier Angelo Vendrame authored
When the dimension is less than 50px, we need to return dimension itself, rather than a 0px margin.
-
Pier Angelo Vendrame authored
BB 43205: Fix newwin rounding. RFP might produce bad rounding because of platform-specific bugs. Solving them might involve a refactor that is out of our capacity, therefore we add a JS patch to fix wrong sizes.
-
Pier Angelo Vendrame authored
BB 43205: Fix newwin rounding. Do not fix sizes when remember last size is enabled.
-
fixup! TB 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection TB 43469: Change the quickstart checkbox to a toggle. We also update the description text to use "connect automatically" rather than "Quickstart".
-
TB 43469: Use "Connect automatically" instead of "Quickstart" in the UI.
-
TB 43465: Replace TorConnect.canBeginBootstrap with TorConnect.canBeginNormalBootstrap to distinguish it from TorConnect.canBeginAutoBootstrap.
-
TB 43465: Show the urlbar Connect button when the user might want to return to about:torconnect. Instead of hiding the button when canBeginNormalBootstrap is false we show it as a plain button. Instead we hide it only when we are already bootstrapped. We also avoid initialising the button when TorConnect is not enabled. We also update TorConnect.open: 1. Do not re-open about:torconnect if we are already connected. E.g. when the user selects "Connect" in a bridge dialog but we are already connected by the time the settings are applied. 2. Do not call TorConnect.startAgain when receiving a "hard" request. Only the bridge dialogs make this request, and they would have already triggered startAgain by changing the bridge settings.