Skip to content

Commit 2bed9e2

Browse files
shakyShanegithub-actions[bot]
authored andcommitted
Release build 6.17.0 [ci release]
1 parent 4f0d109 commit 2bed9e2

File tree

11 files changed

+79
-88
lines changed

11 files changed

+79
-88
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ jobs:
107107
- name: Setup Github Pages
108108
uses: actions/configure-pages@v5
109109
- name: Upload artifact
110-
uses: actions/upload-pages-artifact@v1
110+
uses: actions/upload-pages-artifact@v3
111111
with:
112112
path: docs
113113
- name: Deploy to GitHub Pages
114114
id: deployment
115-
uses: actions/deploy-pages@v1
115+
uses: actions/deploy-pages@v4

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ src/features/click-to-load/ @kzar @ladamski @franfaccin @jonathanKingston @shaky
99
src/locales/click-to-load/ @kzar @ladamski @franfaccin @jonathanKingston @shakyShane
1010
src/features/broker-protection.js @brianhall @shakyShane
1111
src/features/broker-protection/ @brianhall @shakyShane
12+
packages/special-pages/ @shakyShane @mgurgel
1213

1314
# Platform owners
1415
inject/android.js @jonathanKingston @joshliebe

Sources/ContentScopeScripts/dist/contentScopeIsolated.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5289,8 +5289,6 @@
52895289
return
52905290
}
52915291

5292-
console.log('did get initial setup ', initialSetup);
5293-
52945292
if (!initialSetup) {
52955293
console.error('cannot continue without user settings');
52965294
return
@@ -5633,7 +5631,7 @@
56335631

56345632
const locale = args?.locale || args?.language || 'en';
56355633
const env = new Environment({
5636-
debug: true,
5634+
debug: args.debug,
56375635
injectName: "apple-isolated",
56385636
platform: this.platform,
56395637
locale

build/android/contentScope.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14043,8 +14043,6 @@
1404314043
return
1404414044
}
1404514045

14046-
console.log('did get initial setup ', initialSetup);
14047-
1404814046
if (!initialSetup) {
1404914047
console.error('cannot continue without user settings');
1405014048
return
@@ -14387,7 +14385,7 @@
1438714385

1438814386
const locale = args?.locale || args?.language || 'en';
1438914387
const env = new Environment({
14390-
debug: true,
14388+
debug: args.debug,
1439114389
injectName: "android",
1439214390
platform: this.platform,
1439314391
locale

build/contentScope.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13666,8 +13666,6 @@
1366613666
return
1366713667
}
1366813668

13669-
console.log('did get initial setup ', initialSetup);
13670-
1367113669
if (!initialSetup) {
1367213670
console.error('cannot continue without user settings');
1367313671
return
@@ -14010,7 +14008,7 @@
1401014008

1401114009
const locale = args?.locale || args?.language || 'en';
1401214010
const env = new Environment({
14013-
debug: true,
14011+
debug: args.debug,
1401414012
injectName: "integration",
1401514013
platform: this.platform,
1401614014
locale

build/integration/contentScope.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13666,8 +13666,6 @@
1366613666
return
1366713667
}
1366813668

13669-
console.log('did get initial setup ', initialSetup);
13670-
1367113669
if (!initialSetup) {
1367213670
console.error('cannot continue without user settings');
1367313671
return
@@ -14010,7 +14008,7 @@
1401014008

1401114009
const locale = args?.locale || args?.language || 'en';
1401214010
const env = new Environment({
14013-
debug: true,
14011+
debug: args.debug,
1401414012
injectName: "integration",
1401514013
platform: this.platform,
1401614014
locale

build/windows/contentScope.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10530,8 +10530,6 @@
1053010530
return
1053110531
}
1053210532

10533-
console.log('did get initial setup ', initialSetup);
10534-
1053510533
if (!initialSetup) {
1053610534
console.error('cannot continue without user settings');
1053710535
return
@@ -10874,7 +10872,7 @@
1087410872

1087510873
const locale = args?.locale || args?.language || 'en';
1087610874
const env = new Environment({
10877-
debug: true,
10875+
debug: args.debug,
1087810876
injectName: "windows",
1087910877
platform: this.platform,
1088010878
locale

package-lock.json

Lines changed: 68 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)