aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2021-12-08 23:40:09 +0530
committerLibravatar GitHub <noreply@github.com>2021-12-08 23:40:09 +0530
commit1e1f9ecc53121749bc99a46bb5aecca51325836f (patch)
treeb52348c59f00ba4d0b8e1390d8f535d63fe90f3d
parentchore: upgrade 'pnpm' to '6.23.6' (diff)
downloadferdium-recipes-1e1f9ecc53121749bc99a46bb5aecca51325836f.tar.gz
ferdium-recipes-1e1f9ecc53121749bc99a46bb5aecca51325836f.tar.zst
ferdium-recipes-1e1f9ecc53121749bc99a46bb5aecca51325836f.zip
chore: use 'nativeWindowOpen' to see if this resolves issues with opening browser window on clicking links (#786)
(based on https://github.com/TheGoddessInari/hamsket/commit/27226145f7ac0c5acf7aa13e6c8b26687b4e1013\)
-rw-r--r--all.json4
-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.js3
5 files changed, 7 insertions, 5 deletions
diff --git a/all.json b/all.json
index c447f9f..07fa090 100644
--- a/all.json
+++ b/all.json
@@ -324,7 +324,7 @@
324 "featured": true, 324 "featured": true,
325 "id": "discord", 325 "id": "discord",
326 "name": "Discord", 326 "name": "Discord",
327 "version": "1.4.5", 327 "version": "1.4.6",
328 "icons": { 328 "icons": {
329 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/discord/icon.svg" 329 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/discord/icon.svg"
330 } 330 }
@@ -1497,7 +1497,7 @@
1497 "featured": false, 1497 "featured": false,
1498 "id": "skype", 1498 "id": "skype",
1499 "name": "Skype", 1499 "name": "Skype",
1500 "version": "3.2.3", 1500 "version": "3.2.4",
1501 "icons": { 1501 "icons": {
1502 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/skype/icon.svg" 1502 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/skype/icon.svg"
1503 } 1503 }
diff --git a/recipes/discord/package.json b/recipes/discord/package.json
index 175b4ce..cf227cd 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.4.5", 4 "version": "1.4.6",
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 cf13cc9..9ad54e8 100644
--- a/recipes/discord/webview.js
+++ b/recipes/discord/webview.js
@@ -49,6 +49,7 @@ module.exports = (Ferdi, 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,
52 // TODO: Aren't these needed here? 53 // TODO: Aren't these needed here?
53 // contextIsolation: false, 54 // contextIsolation: false,
54 // enableRemoteModule: true, 55 // enableRemoteModule: true,
diff --git a/recipes/skype/package.json b/recipes/skype/package.json
index 9727a06..9243300 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.2.3", 4 "version": "3.2.4",
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 7c07ee1..1947ddb 100644
--- a/recipes/skype/webview.js
+++ b/recipes/skype/webview.js
@@ -48,7 +48,8 @@ module.exports = (Ferdi, settings) => {
48 height: window.innerHeight, 48 height: window.innerHeight,
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,
52 // TODO: Aren't these needed here? 53 // TODO: Aren't these needed here?
53 // contextIsolation: false, 54 // contextIsolation: false,
54 // enableRemoteModule: true, 55 // enableRemoteModule: true,