Skip to content

Commit

Permalink
Release build 6.43.0 [ci release]
Browse files Browse the repository at this point in the history
  • Loading branch information
mgurgel authored and github-actions[bot] committed Dec 17, 2024
1 parent 93ea6c3 commit bc808eb
Show file tree
Hide file tree
Showing 729 changed files with 57,333 additions and 42,615 deletions.
25 changes: 18 additions & 7 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
- ntp: fix favorites container when expanded+few items (#1306)
- Special Pages: Malware warning support (#1268)
- Moved messages + tests into each special page (#1299)
- NTP Mac style parity (#1263)
- ntp: customizer drawer (#1291)
- ntp: add next-steps docs (#1290)
- Allow for optional types (#1261)
- Malware translations (#1337)
- ntp: fixing components iew (#1335)
- ntp: customizer globals (#1329)
- shipReview: Windows NextSteps feedback (#1316)
- NTP: FE - Freemium PIR Banner (#1315)
- build(deps-dev): bump @playwright/test from 1.49.0 to 1.49.1 (#1326)
- build(deps-dev): bump fast-check from 3.23.1 to 3.23.2 (#1327)
- build(deps-dev): bump typescript-eslint from 8.16.0 to 8.18.0 (#1321)
- ntp: customizer data/messages (#1328)
- special-pages: integrated watch mode (#1317)
- build(deps-dev): bump eslint from 9.16.0 to 9.17.0 in the eslint group (#1325)
- build(deps): bump @rive-app/canvas-single from 2.23.10 to 2.25.1 (#1318)
- build(deps-dev): bump jasmine and @types/jasmine (#1312)
- build(deps-dev): bump prettier from 3.3.3 to 3.4.2 (#1310)
- Copy review - Malicious site warning page (#1313)
- build(deps-dev): bump the typescript group across 1 directory with 5 updates (#1324)
- build(deps-dev): bump eslint in the eslint group across 1 directory (#1298)
- feat: Add confirmation to Mac Next Steps card (#1300)
Original file line number Diff line number Diff line change
Expand Up @@ -1942,7 +1942,7 @@
return null;
}

// pages/duckplayer/src/locales/en/duckplayer.json
// pages/duckplayer/public/locales/en/duckplayer.json
var duckplayer_default = {
smartling: {
string_format: "icu",
Expand Down Expand Up @@ -2092,12 +2092,12 @@
};
}
var MessagingContext2 = G(
/** @type {import("../src/js/index.js").DuckplayerPage} */
/** @type {import("../src/index.js").DuckplayerPage} */
{}
);
var useMessaging = () => x2(MessagingContext2);
var TelemetryContext = G(
/** @type {import("../src/js/index.js").Telemetry} */
/** @type {import("../src/index.js").Telemetry} */
{}
);
var useTelemetry = () => x2(TelemetryContext);
Expand Down Expand Up @@ -2858,7 +2858,7 @@
}
};

// pages/duckplayer/src/js/utils.js
// pages/duckplayer/src/utils.js
function createYoutubeURLForError(href, urlBase) {
const valid = VideoParams.forWatchPage(href);
if (!valid) return null;
Expand Down Expand Up @@ -3360,7 +3360,7 @@
}
}

// pages/duckplayer/src/js/storage.js
// pages/duckplayer/src/storage.js
function deleteStorage(subject) {
Object.keys(subject).forEach((key) => {
if (key.indexOf("yt-player") === 0) {
Expand Down Expand Up @@ -3391,7 +3391,7 @@
});
}

// pages/duckplayer/src/js/index.js
// pages/duckplayer/src/index.js
var DuckplayerPage = class {
/**
* @param {import("@duckduckgo/messaging").Messaging} messaging
Expand All @@ -3403,7 +3403,7 @@
/**
* This will be sent if the application has loaded, but a client-side error
* has occurred that cannot be recovered from
* @returns {Promise<import("../../types/duckplayer.js").InitialSetupResponse>}
* @returns {Promise<import("../types/duckplayer.ts").InitialSetupResponse>}
*/
initialSetup() {
if (this.injectName === "integration") {
Expand All @@ -3427,7 +3427,7 @@
/**
* This is sent when the user wants to set Duck Player as the default.
*
* @param {import("../../types/duckplayer.js").UserValues} userValues
* @param {import("../types/duckplayer.ts").UserValues} userValues
*/
setUserValues(userValues) {
return this.messaging.request("setUserValues", userValues);
Expand Down Expand Up @@ -3467,7 +3467,7 @@
* }
* ```
*
* @param {(value: import("../../types/duckplayer.js").UserValues) => void} cb
* @param {(value: import("../types/duckplayer.ts").UserValues) => void} cb
*/
onUserValuesChanged(cb) {
return this.messaging.subscribe("onUserValuesChanged", cb);
Expand Down Expand Up @@ -3501,7 +3501,7 @@
this.messaging = messaging2;
}
/**
* @param {import('../../types/duckplayer.js').TelemetryEvent} event
* @param {import('../types/duckplayer.ts').TelemetryEvent} event
* @internal
*/
_event(event) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";
(() => {
// pages/duckplayer/src/js/inline.js
// pages/duckplayer/src/inline.js
var param = new URLSearchParams(window.location.search).get("platform");
if (isAllowed(param)) {
document.documentElement.dataset.platform = String(param);
Expand Down
22 changes: 11 additions & 11 deletions Sources/ContentScopeScripts/dist/pages/duckplayer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<script>
"use strict";
(() => {
// pages/duckplayer/src/js/inline.js
// pages/duckplayer/src/inline.js
var param = new URLSearchParams(window.location.search).get("platform");
if (isAllowed(param)) {
document.documentElement.dataset.platform = String(param);
Expand Down Expand Up @@ -2922,7 +2922,7 @@
return null;
}

// pages/duckplayer/src/locales/en/duckplayer.json
// pages/duckplayer/public/locales/en/duckplayer.json
var duckplayer_default = {
smartling: {
string_format: "icu",
Expand Down Expand Up @@ -3072,12 +3072,12 @@
};
}
var MessagingContext2 = G(
/** @type {import("../src/js/index.js").DuckplayerPage} */
/** @type {import("../src/index.js").DuckplayerPage} */
{}
);
var useMessaging = () => x2(MessagingContext2);
var TelemetryContext = G(
/** @type {import("../src/js/index.js").Telemetry} */
/** @type {import("../src/index.js").Telemetry} */
{}
);
var useTelemetry = () => x2(TelemetryContext);
Expand Down Expand Up @@ -3838,7 +3838,7 @@
}
};

// pages/duckplayer/src/js/utils.js
// pages/duckplayer/src/utils.js
function createYoutubeURLForError(href, urlBase) {
const valid = VideoParams.forWatchPage(href);
if (!valid) return null;
Expand Down Expand Up @@ -4340,7 +4340,7 @@
}
}

// pages/duckplayer/src/js/storage.js
// pages/duckplayer/src/storage.js
function deleteStorage(subject) {
Object.keys(subject).forEach((key) => {
if (key.indexOf("yt-player") === 0) {
Expand Down Expand Up @@ -4371,7 +4371,7 @@
});
}

// pages/duckplayer/src/js/index.js
// pages/duckplayer/src/index.js
var DuckplayerPage = class {
/**
* @param {import("@duckduckgo/messaging").Messaging} messaging
Expand All @@ -4383,7 +4383,7 @@
/**
* This will be sent if the application has loaded, but a client-side error
* has occurred that cannot be recovered from
* @returns {Promise<import("../../types/duckplayer.js").InitialSetupResponse>}
* @returns {Promise<import("../types/duckplayer.ts").InitialSetupResponse>}
*/
initialSetup() {
if (this.injectName === "integration") {
Expand All @@ -4407,7 +4407,7 @@
/**
* This is sent when the user wants to set Duck Player as the default.
*
* @param {import("../../types/duckplayer.js").UserValues} userValues
* @param {import("../types/duckplayer.ts").UserValues} userValues
*/
setUserValues(userValues) {
return this.messaging.request("setUserValues", userValues);
Expand Down Expand Up @@ -4447,7 +4447,7 @@
* }
* ```
*
* @param {(value: import("../../types/duckplayer.js").UserValues) => void} cb
* @param {(value: import("../types/duckplayer.ts").UserValues) => void} cb
*/
onUserValuesChanged(cb) {
return this.messaging.subscribe("onUserValuesChanged", cb);
Expand Down Expand Up @@ -4481,7 +4481,7 @@
this.messaging = messaging2;
}
/**
* @param {import('../../types/duckplayer.js').TelemetryEvent} event
* @param {import('../types/duckplayer.ts').TelemetryEvent} event
* @internal
*/
_event(event) {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit bc808eb

Please sign in to comment.