aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--all.json8
-rw-r--r--recipes/android-messages/package.json2
-rw-r--r--recipes/android-messages/webview.js6
-rw-r--r--recipes/googlemeet/package.json2
-rw-r--r--recipes/googlemeet/webview.js6
-rw-r--r--recipes/lastpass/package.json2
-rw-r--r--recipes/lastpass/webview.js6
-rw-r--r--recipes/whatsapp/package.json2
-rw-r--r--recipes/whatsapp/webview.js6
9 files changed, 20 insertions, 20 deletions
diff --git a/all.json b/all.json
index 48ec8a0..7bf87ea 100644
--- a/all.json
+++ b/all.json
@@ -26,7 +26,7 @@
26 "featured": false, 26 "featured": false,
27 "id": "android-messages", 27 "id": "android-messages",
28 "name": "Android Messages", 28 "name": "Android Messages",
29 "version": "2.0.0", 29 "version": "2.0.1",
30 "icons": { 30 "icons": {
31 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/android-messages/icon.png", 31 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/android-messages/icon.png",
32 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/android-messages/icon.svg" 32 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/android-messages/icon.svg"
@@ -521,7 +521,7 @@
521 "featured": false, 521 "featured": false,
522 "id": "googlemeet", 522 "id": "googlemeet",
523 "name": "Google Meet", 523 "name": "Google Meet",
524 "version": "2.0.0", 524 "version": "2.0.1",
525 "icons": { 525 "icons": {
526 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/googlemeet/icon.png", 526 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/googlemeet/icon.png",
527 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/googlemeet/icon.svg" 527 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/googlemeet/icon.svg"
@@ -796,7 +796,7 @@
796 "featured": false, 796 "featured": false,
797 "id": "lastpass", 797 "id": "lastpass",
798 "name": "LastPass", 798 "name": "LastPass",
799 "version": "2.0.0", 799 "version": "2.0.1",
800 "icons": { 800 "icons": {
801 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/lastpass/icon.png", 801 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/lastpass/icon.png",
802 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/lastpass/icon.svg" 802 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/lastpass/icon.svg"
@@ -1577,7 +1577,7 @@
1577 "featured": true, 1577 "featured": true,
1578 "id": "whatsapp", 1578 "id": "whatsapp",
1579 "name": "WhatsApp", 1579 "name": "WhatsApp",
1580 "version": "3.0.0", 1580 "version": "3.0.1",
1581 "icons": { 1581 "icons": {
1582 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/whatsapp/icon.png", 1582 "png": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/whatsapp/icon.png",
1583 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/whatsapp/icon.svg" 1583 "svg": "https://cdn.jsdelivr.net/gh/getferdi/recipes/recipes/whatsapp/icon.svg"
diff --git a/recipes/android-messages/package.json b/recipes/android-messages/package.json
index 752357f..437c510 100644
--- a/recipes/android-messages/package.json
+++ b/recipes/android-messages/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "android-messages", 2 "id": "android-messages",
3 "name": "Android Messages", 3 "name": "Android Messages",
4 "version": "2.0.0", 4 "version": "2.0.1",
5 "description": "Android Messages", 5 "description": "Android Messages",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Daniel Weinberger, Stefan Malzner <stefan@adlk.io>", 7 "author": "Daniel Weinberger, Stefan Malzner <stefan@adlk.io>",
diff --git a/recipes/android-messages/webview.js b/recipes/android-messages/webview.js
index 21323a5..0ac39be 100644
--- a/recipes/android-messages/webview.js
+++ b/recipes/android-messages/webview.js
@@ -1,10 +1,10 @@
1"use strict"; 1"use strict";
2 2
3const { 3const {
4 getCurrentWebContents 4 remote
5} = require('@electron/remote'); 5} = require('electron');
6 6
7const webContents = getCurrentWebContents(); 7const webContents = remote.getCurrentWebContents();
8const { 8const {
9 session 9 session
10} = webContents; 10} = webContents;
diff --git a/recipes/googlemeet/package.json b/recipes/googlemeet/package.json
index 00fe1fd..ab25baf 100644
--- a/recipes/googlemeet/package.json
+++ b/recipes/googlemeet/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "googlemeet", 2 "id": "googlemeet",
3 "name": "Google Meet", 3 "name": "Google Meet",
4 "version": "2.0.0", 4 "version": "2.0.1",
5 "description": "Google Meet", 5 "description": "Google Meet",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Patrick Thoelken <patrick.thoelken@outlook.com>", 7 "author": "Patrick Thoelken <patrick.thoelken@outlook.com>",
diff --git a/recipes/googlemeet/webview.js b/recipes/googlemeet/webview.js
index 332dc1c..8e91418 100644
--- a/recipes/googlemeet/webview.js
+++ b/recipes/googlemeet/webview.js
@@ -1,12 +1,12 @@
1"use strict"; 1"use strict";
2 2
3const { 3const {
4 getCurrentWebContents 4 remote
5} = require('@electron/remote'); 5} = require('electron');
6 6
7const path = require('path'); 7const path = require('path');
8 8
9const webContents = getCurrentWebContents(); 9const webContents = remote.getCurrentWebContents();
10const { 10const {
11 session 11 session
12} = webContents; 12} = webContents;
diff --git a/recipes/lastpass/package.json b/recipes/lastpass/package.json
index 38e5cfd..302d40b 100644
--- a/recipes/lastpass/package.json
+++ b/recipes/lastpass/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "lastpass", 2 "id": "lastpass",
3 "name": "LastPass", 3 "name": "LastPass",
4 "version": "2.0.0", 4 "version": "2.0.1",
5 "description": "LastPass integration", 5 "description": "LastPass integration",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Janis Hau <janis@my-new.me>, Jonathan Winter <jonathanhwinter@gmail.com>", 7 "author": "Janis Hau <janis@my-new.me>, Jonathan Winter <jonathanhwinter@gmail.com>",
diff --git a/recipes/lastpass/webview.js b/recipes/lastpass/webview.js
index 2e67364..2b8fc28 100644
--- a/recipes/lastpass/webview.js
+++ b/recipes/lastpass/webview.js
@@ -1,12 +1,12 @@
1"use strict"; 1"use strict";
2 2
3const { 3const {
4 getCurrentWebContents 4 remote
5} = require('@electron/remote'); 5} = require('electron');
6 6
7const path = require('path'); 7const path = require('path');
8 8
9const webContents = getCurrentWebContents(); 9const webContents = remote.getCurrentWebContents();
10const { 10const {
11 session 11 session
12} = webContents; 12} = webContents;
diff --git a/recipes/whatsapp/package.json b/recipes/whatsapp/package.json
index e9c4bf4..90c68aa 100644
--- a/recipes/whatsapp/package.json
+++ b/recipes/whatsapp/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "whatsapp", 2 "id": "whatsapp",
3 "name": "WhatsApp", 3 "name": "WhatsApp",
4 "version": "3.0.0", 4 "version": "3.0.1",
5 "description": "WhatsApp", 5 "description": "WhatsApp",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Stefan Malzner <stefan@adlk.io>", 7 "author": "Stefan Malzner <stefan@adlk.io>",
diff --git a/recipes/whatsapp/webview.js b/recipes/whatsapp/webview.js
index 5dd3729..8320d9e 100644
--- a/recipes/whatsapp/webview.js
+++ b/recipes/whatsapp/webview.js
@@ -1,12 +1,12 @@
1"use strict"; 1"use strict";
2 2
3const { 3const {
4 getCurrentWebContents 4 remote
5} = require('@electron/remote'); 5} = require('electron');
6 6
7const path = require('path'); 7const path = require('path');
8 8
9const webContents = getCurrentWebContents(); 9const webContents = remote.getCurrentWebContents();
10const { 10const {
11 session 11 session
12} = webContents; 12} = webContents;