morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
00062f02 by meskio at 2024-08-07T23:03:10+00:00
Bump lyrebird version to 0.3.0
- - - - -
1 changed file:
- projects/lyrebird/config
Changes:
=====================================
projects/lyrebird/config
=====================================
@@ -1,5 +1,5 @@
# vim: filetype=yaml sw=2
-version: 0.2.0
+version: 0.3.0
git_url: https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/lyre…
git_hash: 'lyrebird-[% c("version") %]'
tag_gpg_id: 1
@@ -9,7 +9,7 @@ container:
use_container: 1
var:
- go_vendor_sha256sum: dc6b2671250f4ffd0caff3ef020bd60f99207f519f6f5f1be47243677a13c695
+ go_vendor_sha256sum: 71abc8063f2913e74e87a2a5c9262c4fad6ce4ed98b28b7603b50382724baba4
targets:
nightly:
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
732e4181 by Henry Wilkes at 2024-08-07T22:56:00+00:00
fixup! Bug 7494: Create local home page for TBB.
Bug 42713: Use `--link-color` rather than `--in-content-link-color`.
- - - - -
fbf19afe by Henry Wilkes at 2024-08-07T22:56:00+00:00
fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection
Bug 42713: Use `--text-color-error` instead of
`--in-content-error-text-color`.
- - - - -
da08e423 by Henry Wilkes at 2024-08-07T22:56:00+00:00
fixup! Bug 27476: Implement about:torconnect captive portal within Tor Browser
Bug 42713: Use `--text-color-error` instead of
`--in-content-error-text-color`.
- - - - -
3 changed files:
- browser/components/abouttor/content/aboutTor.css
- browser/components/torpreferences/content/torPreferences.css
- toolkit/components/torconnect/content/aboutTorConnect.css
Changes:
=====================================
browser/components/abouttor/content/aboutTor.css
=====================================
@@ -194,14 +194,14 @@ body:not(.show-tor-check) #tor-check {
--in-content-page-color: #fbfbfe;
--in-content-text-color: #fbfbfe;
color: var(--in-content-text-color);
- --in-content-link-color: var(--purple-30);
+ --link-color: var(--purple-30);
/* FIXME: Since we have a dark background, the color should get lighter on
* hover, but --purple-40 and --pruple-50 are darker than --purple-30.
* However, we do not have a standard lighter purple in our current set of
* Photon colors.
* See tor-browser#42025 */
- --in-content-link-color-hover: var(--purple-40);
- --in-content-link-color-active: var(--purple-50);
+ --link-color-hover: var(--purple-40);
+ --link-color-active: var(--purple-50);
}
#search-form {
=====================================
browser/components/torpreferences/content/torPreferences.css
=====================================
@@ -913,7 +913,7 @@ dialog#torPreferences-requestBridge-dialog > hbox {
}
#lox-invite-dialog-error-message {
- color: var(--in-content-error-text-color);
+ color: var(--text-color-error);
}
#lox-invite-dialog-generate-area:not(.show-error) #lox-invite-dialog-error-message {
@@ -1049,7 +1049,7 @@ groupbox#torPreferences-bridges-group textarea {
}
#user-provide-bridge-error-message {
- color: var(--in-content-error-text-color);
+ color: var(--text-color-error);
}
#user-provide-bridge-dialog:not(.show-error) #user-provide-bridge-error-message {
=====================================
toolkit/components/torconnect/content/aboutTorConnect.css
=====================================
@@ -154,7 +154,7 @@ button {
}
#locationDropdownLabel.error {
- color: var(--in-content-error-text-color)
+ color: var(--text-color-error)
}
#tryBridgeButton.danger-button {
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/fdad7c…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/fdad7c…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
4d4e1380 by Nicolas Vigier at 2024-08-06T15:43:19+02:00
Bug 41202: Remove restricted entitlements
Remove the following restricted entitlements:
* com.apple.application-identifier
* com.apple.developer.web-browser.public-key-credential
https://searchfox.org/mozilla-central/source/tools/signing/macos/mach_comma…
- - - - -
1 changed file:
- tools/signing/macos-entitlements/firefox.browser.xml
Changes:
=====================================
tools/signing/macos-entitlements/firefox.browser.xml
=====================================
@@ -23,12 +23,5 @@
<!-- For SmartCardServices(7) -->
<key>com.apple.security.smartcard</key><true/>
-
- <!-- Required for com.apple.developer.web-browser.public-key-credential -->
- <key>com.apple.application-identifier</key>
- <string>43AQ936H96.org.mozilla.firefox</string>
-
- <!-- For platform passkey (webauthn) support -->
- <key>com.apple.developer.web-browser.public-key-credential</key><true/>
</dict>
</plist>
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
95ec0dcc by Henry Wilkes at 2024-08-07T21:39:39+00:00
fixup! Bug 41600: Add a tor circuit display panel.
Bug 42488: Remove redundant role="code" from ip address <code> element.
After ESR 128, the <code> element has an implicit "code" accessible
role.
- - - - -
1 changed file:
- browser/components/torcircuit/content/torCircuitPanel.js
Changes:
=====================================
browser/components/torcircuit/content/torCircuitPanel.js
=====================================
@@ -617,19 +617,10 @@ var gTorCircuitPanel = {
} else {
addressesEl.append(", ");
}
+ // Use semantic <code> block for the ip addresses, so the content
+ // (especially punctuation) can be better interpreted by screen readers,
+ // if they support this.
const ipEl = document.createElement("code");
- // TODO: Current HTML-aam 1.0 specs map the <code> element to the "code"
- // role.
- // However, mozilla-central commented out this mapping in
- // accessible/base/HTMLMarkupMap.h because the HTML-aam specs at the
- // time did not do this.
- // See hg.mozilla.org/mozilla-central/rev/51eebe7d6199#l2.12
- //
- // This was updated in mozilla bug 1834931, for ESR 128
- //
- // For now we explicitly add the role="code", but once this is fixed
- // from mozilla-central we should remove this.
- ipEl.setAttribute("role", "code");
ipEl.classList.add("tor-circuit-ip-address");
ipEl.textContent = ip;
addressesEl.append(ipEl);
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/95ec0dc…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/95ec0dc…
You're receiving this email because of your account on gitlab.torproject.org.