aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-18 18:19:43 -0500
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-18 18:19:43 -0500
commitc819fe925dac556dee8336d3c19147073179c71a (patch)
treecf8e759a854b8a2b7c992e07f3b00a8887febe92
parentRebranded from 'ferdi' to 'ferdium' (companion changes for the main repo PR #2) (diff)
downloadferdium-recipes-c819fe925dac556dee8336d3c19147073179c71a.tar.gz
ferdium-recipes-c819fe925dac556dee8336d3c19147073179c71a.tar.zst
ferdium-recipes-c819fe925dac556dee8336d3c19147073179c71a.zip
Remove deprecated 'nativeWindowOpen' option from webPreferences due to upgrade of electron to '18.'
-rw-r--r--all.json6
-rw-r--r--recipes/discord/package.json2
-rw-r--r--recipes/discord/webview.js1
-rw-r--r--recipes/skype/package.json2
-rw-r--r--recipes/skype/webview.js1
-rw-r--r--recipes/zoom/package.json2
-rw-r--r--recipes/zoom/webview.js1
7 files changed, 6 insertions, 9 deletions
diff --git a/all.json b/all.json
index 6746459..e604a9c 100644
--- a/all.json
+++ b/all.json
@@ -333,7 +333,7 @@
333 "featured": true, 333 "featured": true,
334 "id": "discord", 334 "id": "discord",
335 "name": "Discord", 335 "name": "Discord",
336 "version": "1.6.0", 336 "version": "1.7.0",
337 "icons": { 337 "icons": {
338 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/discord/icon.svg" 338 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/discord/icon.svg"
339 } 339 }
@@ -1524,7 +1524,7 @@
1524 "featured": true, 1524 "featured": true,
1525 "id": "skype", 1525 "id": "skype",
1526 "name": "Skype", 1526 "name": "Skype",
1527 "version": "3.4.0", 1527 "version": "3.5.0",
1528 "icons": { 1528 "icons": {
1529 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/skype/icon.svg" 1529 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/skype/icon.svg"
1530 } 1530 }
@@ -2100,7 +2100,7 @@
2100 "featured": false, 2100 "featured": false,
2101 "id": "zoom", 2101 "id": "zoom",
2102 "name": "Zoom", 2102 "name": "Zoom",
2103 "version": "1.2.0", 2103 "version": "1.3.0",
2104 "icons": { 2104 "icons": {
2105 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/zoom/icon.svg" 2105 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/zoom/icon.svg"
2106 } 2106 }
diff --git a/recipes/discord/package.json b/recipes/discord/package.json
index bba848b..1dc89b4 100644
--- a/recipes/discord/package.json
+++ b/recipes/discord/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "discord", 2 "id": "discord",
3 "name": "Discord", 3 "name": "Discord",
4 "version": "1.6.0", 4 "version": "1.7.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://discordapp.com/login", 7 "serviceURL": "https://discordapp.com/login",
diff --git a/recipes/discord/webview.js b/recipes/discord/webview.js
index a72ef3a..16a3a1a 100644
--- a/recipes/discord/webview.js
+++ b/recipes/discord/webview.js
@@ -49,7 +49,6 @@ module.exports = (Ferdium, settings) => {
49 minWidth: 600, 49 minWidth: 600,
50 webPreferences: { 50 webPreferences: {
51 partition: `persist:service-${settings.id}`, 51 partition: `persist:service-${settings.id}`,
52 nativeWindowOpen: true,
53 // TODO: Aren't these needed here? 52 // TODO: Aren't these needed here?
54 // contextIsolation: false, 53 // contextIsolation: false,
55 }, 54 },
diff --git a/recipes/skype/package.json b/recipes/skype/package.json
index 58aee4c..a3a0840 100644
--- a/recipes/skype/package.json
+++ b/recipes/skype/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "skype", 2 "id": "skype",
3 "name": "Skype", 3 "name": "Skype",
4 "version": "3.4.0", 4 "version": "3.5.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://web.skype.com/", 7 "serviceURL": "https://web.skype.com/",
diff --git a/recipes/skype/webview.js b/recipes/skype/webview.js
index a488699..ca0befb 100644
--- a/recipes/skype/webview.js
+++ b/recipes/skype/webview.js
@@ -49,7 +49,6 @@ module.exports = (Ferdium, settings) => {
49 minWidth: 600, 49 minWidth: 600,
50 webPreferences: { 50 webPreferences: {
51 partition: `persist:service-${settings.id}`, 51 partition: `persist:service-${settings.id}`,
52 nativeWindowOpen: true,
53 // TODO: Aren't these needed here? 52 // TODO: Aren't these needed here?
54 // contextIsolation: false, 53 // contextIsolation: false,
55 } 54 }
diff --git a/recipes/zoom/package.json b/recipes/zoom/package.json
index dc0e12c..ce12ff9 100644
--- a/recipes/zoom/package.json
+++ b/recipes/zoom/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "zoom", 2 "id": "zoom",
3 "name": "Zoom", 3 "name": "Zoom",
4 "version": "1.2.0", 4 "version": "1.3.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://zoom.us/join", 7 "serviceURL": "https://zoom.us/join",
diff --git a/recipes/zoom/webview.js b/recipes/zoom/webview.js
index a72ef3a..16a3a1a 100644
--- a/recipes/zoom/webview.js
+++ b/recipes/zoom/webview.js
@@ -49,7 +49,6 @@ module.exports = (Ferdium, settings) => {
49 minWidth: 600, 49 minWidth: 600,
50 webPreferences: { 50 webPreferences: {
51 partition: `persist:service-${settings.id}`, 51 partition: `persist:service-${settings.id}`,
52 nativeWindowOpen: true,
53 // TODO: Aren't these needed here? 52 // TODO: Aren't these needed here?
54 // contextIsolation: false, 53 // contextIsolation: false,
55 }, 54 },