Skip to content

Commit 590f7bd

Browse files
mgurgelgithub-actions[bot]
authored andcommitted
Release build 9.2.0 [ci release]
1 parent 707e1eb commit 590f7bd

File tree

74 files changed

+203
-154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+203
-154
lines changed

CHANGELOG.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
- history: support some customizer styles (#1698)
2-
- build(deps-dev): bump the typescript group with 3 updates (#1714)
3-
- build(deps-dev): bump typescript-eslint from 8.32.1 to 8.33.0 (#1710)
4-
- Release Notes: UI updates for Mac + Windows, add “loadingError” state for Windows (#1672)
5-
- History View: Add scrollbar to Sidebar (#1689)
1+
- build(deps-dev): bump eslint in the eslint group across 1 directory (#1717)
2+
- Add basic canvas experiment ability (#1703)
3+
- Updated Scam Blocker help page URLs (#1671)
4+
- Fix capitalisation in tracking attempts text (#1707)

Sources/ContentScopeScripts/dist/contentScope.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7126,6 +7126,10 @@ ul.messages {
71267126
init(args) {
71277127
const { sessionKey, site } = args;
71287128
const domainKey = site.domain;
7129+
const additionalEnabledCheck = this.getFeatureSettingEnabled("additionalEnabledCheck");
7130+
if (!additionalEnabledCheck) {
7131+
return;
7132+
}
71297133
const supportsWebGl = this.getFeatureSettingEnabled("webGl");
71307134
const unsafeCanvases = /* @__PURE__ */ new WeakSet();
71317135
const canvasContexts = /* @__PURE__ */ new WeakMap();
@@ -7148,7 +7152,7 @@ ul.messages {
71487152
}
71497153
});
71507154
proxy.overload();
7151-
const safeMethods = ["putImageData", "drawImage"];
7155+
const safeMethods = this.getFeatureSetting("safeMethods") ?? ["putImageData", "drawImage"];
71527156
for (const methodName of safeMethods) {
71537157
const safeMethodProxy = new DDGProxy(this, CanvasRenderingContext2D.prototype, methodName, {
71547158
apply(target, thisArg, args2) {
@@ -7162,7 +7166,7 @@ ul.messages {
71627166
});
71637167
safeMethodProxy.overload();
71647168
}
7165-
const unsafeMethods = [
7169+
const unsafeMethods = this.getFeatureSetting("unsafeMethods") ?? [
71667170
"strokeRect",
71677171
"bezierCurveTo",
71687172
"quadraticCurveTo",
@@ -7195,7 +7199,7 @@ ul.messages {
71957199
}
71967200
}
71977201
if (supportsWebGl) {
7198-
const unsafeGlMethods = [
7202+
const unsafeGlMethods = this.getFeatureSetting("unsafeGlMethods") ?? [
71997203
"commit",
72007204
"compileShader",
72017205
"shaderSource",
@@ -7248,7 +7252,7 @@ ul.messages {
72487252
}
72497253
return result;
72507254
}
7251-
const canvasMethods = ["toDataURL", "toBlob"];
7255+
const canvasMethods = this.getFeatureSetting("canvasMethods") ?? ["toDataURL", "toBlob"];
72527256
for (const methodName of canvasMethods) {
72537257
const proxy2 = new DDGProxy(this, HTMLCanvasElement.prototype, methodName, {
72547258
apply(target, thisArg, args2) {

Sources/ContentScopeScripts/dist/pages/new-tab/dist/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27746,16 +27746,16 @@
2774627746
note: "Shown in the place a list of browsing history entries will be displayed."
2774727747
},
2774827748
activity_no_adsAndTrackers: {
27749-
title: "No ads + Tracking attempts found",
27749+
title: "No ads + tracking attempts found",
2775027750
note: "Placeholder message indicating that no ads and trackers are detected"
2775127751
},
2775227752
activity_no_adsAndTrackers_blocked: {
27753-
title: "No ads + Tracking attempts blocked",
27753+
title: "No ads + tracking attempts blocked",
2775427754
note: "Placeholder message indicating that no ads and trackers are blocked"
2775527755
},
2775627756
activity_countBlockedAdsAndTrackersPlural: {
27757-
title: "<b>{count}</b> ads + Tracking attempts blocked",
27758-
note: "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + Tracking attempts blocked'"
27757+
title: "<b>{count}</b> ads + tracking attempts blocked",
27758+
note: "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + tracking attempts blocked'"
2775927759
},
2776027760
activity_favoriteAdd: {
2776127761
title: "Add {domain} to favorites",

Sources/ContentScopeScripts/dist/pages/new-tab/locales/de/new-tab.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@
338338
},
339339
"activity_countBlockedAdsAndTrackersPlural" : {
340340
"title" : "<b>{count}</b> Anzeigen + Tracking-Versuche blockiert",
341-
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + Tracking attempts blocked'"
341+
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + tracking attempts blocked'"
342342
},
343343
"activity_favoriteAdd" : {
344344
"title" : "{domain} zu Favoriten hinzufügen",

Sources/ContentScopeScripts/dist/pages/new-tab/locales/en/new-tab.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -330,16 +330,16 @@
330330
"note": "Shown in the place a list of browsing history entries will be displayed."
331331
},
332332
"activity_no_adsAndTrackers": {
333-
"title": "No ads + Tracking attempts found",
333+
"title": "No ads + tracking attempts found",
334334
"note": "Placeholder message indicating that no ads and trackers are detected"
335335
},
336336
"activity_no_adsAndTrackers_blocked": {
337-
"title": "No ads + Tracking attempts blocked",
337+
"title": "No ads + tracking attempts blocked",
338338
"note": "Placeholder message indicating that no ads and trackers are blocked"
339339
},
340340
"activity_countBlockedAdsAndTrackersPlural": {
341-
"title": "<b>{count}</b> ads + Tracking attempts blocked",
342-
"note": "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + Tracking attempts blocked'"
341+
"title": "<b>{count}</b> ads + tracking attempts blocked",
342+
"note": "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + tracking attempts blocked'"
343343
},
344344
"activity_favoriteAdd": {
345345
"title": "Add {domain} to favorites",

Sources/ContentScopeScripts/dist/pages/new-tab/locales/es/new-tab.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,12 +333,12 @@
333333
"note" : "Placeholder message indicating that no ads and trackers are detected"
334334
},
335335
"activity_no_adsAndTrackers_blocked" : {
336-
"title" : "Sin anuncios + Intentos de rastreo bloqueados",
336+
"title" : "Sin anuncios + intentos de rastreo bloqueados",
337337
"note" : "Placeholder message indicating that no ads and trackers are blocked"
338338
},
339339
"activity_countBlockedAdsAndTrackersPlural" : {
340340
"title" : "Se han bloqueado <b>{count}</b> intentos de publicidad + rastreo",
341-
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + Tracking attempts blocked'"
341+
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + tracking attempts blocked'"
342342
},
343343
"activity_favoriteAdd" : {
344344
"title" : "Añadir {domain} a favoritos",

Sources/ContentScopeScripts/dist/pages/new-tab/locales/fr/new-tab.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@
338338
},
339339
"activity_countBlockedAdsAndTrackersPlural" : {
340340
"title" : "<b>{count}</b> publicités et tentatives de pistage bloquées",
341-
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + Tracking attempts blocked'"
341+
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + tracking attempts blocked'"
342342
},
343343
"activity_favoriteAdd" : {
344344
"title" : "Ajouter {domain} aux favoris",

Sources/ContentScopeScripts/dist/pages/new-tab/locales/it/new-tab.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@
338338
},
339339
"activity_countBlockedAdsAndTrackersPlural" : {
340340
"title" : "<b>{count}</b> annunci + tentativi di tracciamento bloccati",
341-
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + Tracking attempts blocked'"
341+
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + tracking attempts blocked'"
342342
},
343343
"activity_favoriteAdd" : {
344344
"title" : "Aggiungi {domain} ai Preferiti",

Sources/ContentScopeScripts/dist/pages/new-tab/locales/nl/new-tab.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@
338338
},
339339
"activity_countBlockedAdsAndTrackersPlural" : {
340340
"title" : "<b>{count}</b> advertenties + trackingpogingen geblokkeerd",
341-
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + Tracking attempts blocked'"
341+
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + tracking attempts blocked'"
342342
},
343343
"activity_favoriteAdd" : {
344344
"title" : "{domain} toevoegen aan favorieten",

Sources/ContentScopeScripts/dist/pages/new-tab/locales/pl/new-tab.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@
338338
},
339339
"activity_countBlockedAdsAndTrackersPlural" : {
340340
"title" : "Zablokowane reklamy i próby śledzenia: <b>{count}</b>",
341-
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + Tracking attempts blocked'"
341+
"note" : "The main headline indicating that more than 1 attempt has been blocked. Eg: '2 ads + tracking attempts blocked'"
342342
},
343343
"activity_favoriteAdd" : {
344344
"title" : "Dodaj {domain} do ulubionych",

0 commit comments

Comments
 (0)