aboutsummaryrefslogtreecommitdiffstats
path: root/recipes
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-17 01:38:50 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-17 01:38:50 +0530
commitfc58230e6d229acb0573fc10b6fc4fd451c87c9c (patch)
treef26a9b8abe0625da06c0d5d1216c8faa34be160c /recipes
parentChanged license filename and the new license-holders (diff)
downloadferdium-recipes-fc58230e6d229acb0573fc10b6fc4fd451c87c9c.tar.gz
ferdium-recipes-fc58230e6d229acb0573fc10b6fc4fd451c87c9c.tar.zst
ferdium-recipes-fc58230e6d229acb0573fc10b6fc4fd451c87c9c.zip
Rebranded from 'ferdi' to 'ferdium' (companion changes for the main repo PR #2)
Diffstat (limited to 'recipes')
-rw-r--r--recipes/discord/package.json2
-rw-r--r--recipes/discord/webview.js2
-rw-r--r--recipes/hostnet/package.json2
-rw-r--r--recipes/hostnet/webview.js2
-rw-r--r--recipes/instagram/package.json2
-rw-r--r--recipes/instagram/webview.js2
-rw-r--r--recipes/messenger/package.json2
-rw-r--r--recipes/messenger/webview.js4
-rw-r--r--recipes/nextcloud-news/README.md4
-rw-r--r--recipes/nextcloud-news/package.json2
-rw-r--r--recipes/reddit/package.json2
-rw-r--r--recipes/skype/package.json2
-rw-r--r--recipes/skype/webview.js2
-rw-r--r--recipes/twitter/package.json2
-rw-r--r--recipes/zoom/package.json2
-rw-r--r--recipes/zoom/webview.js2
16 files changed, 18 insertions, 18 deletions
diff --git a/recipes/discord/package.json b/recipes/discord/package.json
index cf227cd..7477f53 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.6", 4 "version": "1.5.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 9ad54e8..712d216 100644
--- a/recipes/discord/webview.js
+++ b/recipes/discord/webview.js
@@ -42,7 +42,7 @@ module.exports = (Ferdi, settings) => {
42 event.preventDefault(); 42 event.preventDefault();
43 event.stopPropagation(); 43 event.stopPropagation();
44 // TODO: Can we send an ipc event 'open-browser-window' to open the child window? (see the slack recipe for how to send an ipc message) 44 // TODO: Can we send an ipc event 'open-browser-window' to open the child window? (see the slack recipe for how to send an ipc message)
45 // TODO: Can we change the slack recipe to add a clickHandler for screensharing/video calls? (https://github.com/getferdi/ferdi/issues/1697) 45 // TODO: Can we change the slack recipe to add a clickHandler for screensharing/video calls? (https://github.com/ferdium/ferdium-app/issues/1697)
46 let win = new Ferdi.BrowserWindow({ 46 let win = new Ferdi.BrowserWindow({
47 width: 800, 47 width: 800,
48 height: window.innerHeight, 48 height: window.innerHeight,
diff --git a/recipes/hostnet/package.json b/recipes/hostnet/package.json
index 3cc7580..eda6832 100644
--- a/recipes/hostnet/package.json
+++ b/recipes/hostnet/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "hostnet", 2 "id": "hostnet",
3 "name": "Hostnet", 3 "name": "Hostnet",
4 "version": "1.0.0", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://appsuite.hostnet.nl/appsuite/" 7 "serviceURL": "https://appsuite.hostnet.nl/appsuite/"
diff --git a/recipes/hostnet/webview.js b/recipes/hostnet/webview.js
index bf383c3..71d3306 100644
--- a/recipes/hostnet/webview.js
+++ b/recipes/hostnet/webview.js
@@ -1,6 +1,6 @@
1module.exports = Ferdi => { 1module.exports = Ferdi => {
2 const getMessages = () => { 2 const getMessages = () => {
3 Ferdi.setBadge(parseInt(document.getElementsByClassName('badge topbar-launcherbadge')[0].firstChild.data)); 3 Ferdi.setBadge(Number.parseInt(document.querySelectorAll('.badge.topbar-launcherbadge')[0].firstChild.data));
4 }; 4 };
5 5
6 Ferdi.loop(getMessages); 6 Ferdi.loop(getMessages);
diff --git a/recipes/instagram/package.json b/recipes/instagram/package.json
index faa73ca..7771412 100644
--- a/recipes/instagram/package.json
+++ b/recipes/instagram/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "instagram", 2 "id": "instagram",
3 "name": "Instagram", 3 "name": "Instagram",
4 "version": "2.2.5", 4 "version": "2.3.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://instagram.com/direct/inbox", 7 "serviceURL": "https://instagram.com/direct/inbox",
diff --git a/recipes/instagram/webview.js b/recipes/instagram/webview.js
index 1fb253d..e04a5c8 100644
--- a/recipes/instagram/webview.js
+++ b/recipes/instagram/webview.js
@@ -12,7 +12,7 @@ module.exports = Ferdi => {
12 12
13 Ferdi.loop(getMessages); 13 Ferdi.loop(getMessages);
14 14
15 // https://github.com/getferdi/recipes/blob/9d715597a600710c20f75412d3dcd8cdb7b3c39e/docs/frontend_api.md#usage-4 15 // https://github.com/ferdium/ferdium-recipes/blob/9d715597a600710c20f75412d3dcd8cdb7b3c39e/docs/frontend_api.md#usage-4
16 // Helper that activates DarkReader and injects your darkmode.css at the same time 16 // Helper that activates DarkReader and injects your darkmode.css at the same time
17 Ferdi.handleDarkMode((isEnabled, helpers) => { 17 Ferdi.handleDarkMode((isEnabled, helpers) => {
18 if (isEnabled) { 18 if (isEnabled) {
diff --git a/recipes/messenger/package.json b/recipes/messenger/package.json
index 2d1cddc..d3a50a0 100644
--- a/recipes/messenger/package.json
+++ b/recipes/messenger/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "messenger", 2 "id": "messenger",
3 "name": "Messenger", 3 "name": "Messenger",
4 "version": "1.3.3", 4 "version": "1.4.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://messenger.com", 7 "serviceURL": "https://messenger.com",
diff --git a/recipes/messenger/webview.js b/recipes/messenger/webview.js
index d2d85fe..45b4460 100644
--- a/recipes/messenger/webview.js
+++ b/recipes/messenger/webview.js
@@ -6,14 +6,14 @@ module.exports = Ferdi => {
6 6
7 /* 7 /*
8 * Notification case for group chats, workaround by tamas646 8 * Notification case for group chats, workaround by tamas646
9 * see https://github.com/getferdi/ferdi/issues/1113#issuecomment-783409154 9 * see https://github.com/ferdium/ferdium-app/issues/1113#issuecomment-783409154
10 */ 10 */
11 if (isNotification) { 11 if (isNotification) {
12 count = Ferdi.safeParseInt(/^\((\d+)\)/.exec(document.title)[1]); 12 count = Ferdi.safeParseInt(/^\((\d+)\)/.exec(document.title)[1]);
13 } else { 13 } else {
14 /* 14 /*
15 * Notification case for direct messages, workaround by manavortex 15 * Notification case for direct messages, workaround by manavortex
16 * see https://github.com/getferdi/ferdi/issues/1113#issuecomment-846611765 16 * see https://github.com/ferdium/ferdium-app/issues/1113#issuecomment-846611765
17 */ 17 */
18 count = document.querySelectorAll( 18 count = document.querySelectorAll(
19 '._5fx8:not(._569x),._1ht3:not(._569x)', 19 '._5fx8:not(._569x),._1ht3:not(._569x)',
diff --git a/recipes/nextcloud-news/README.md b/recipes/nextcloud-news/README.md
index 2d09cf5..417ceb9 100644
--- a/recipes/nextcloud-news/README.md
+++ b/recipes/nextcloud-news/README.md
@@ -14,8 +14,8 @@ Icons were sourced from <https://github.com/nextcloud/tasks/news/master/img> (`f
14 14
15Ferdi: 15Ferdi:
16 16
17- [Ferdi](https://getferdi.com/) 17- [Ferdi](https://ferdium.org/)
18- [Ferdi recipes](https://github.com/getferdi/recipes) 18- [Ferdi recipes](https://github.com/ferdium/ferdium-recipes)
19 19
20Nextcloud: 20Nextcloud:
21 21
diff --git a/recipes/nextcloud-news/package.json b/recipes/nextcloud-news/package.json
index 3dc39b1..f145a86 100644
--- a/recipes/nextcloud-news/package.json
+++ b/recipes/nextcloud-news/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "nextcloud-news", 2 "id": "nextcloud-news",
3 "name": "Nextcloud News", 3 "name": "Nextcloud News",
4 "version": "1.0.1", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/csolisr/recipes/tree/master/recipes/nextcloud-news/", 6 "repository": "https://github.com/csolisr/recipes/tree/master/recipes/nextcloud-news/",
7 "config": { 7 "config": {
diff --git a/recipes/reddit/package.json b/recipes/reddit/package.json
index e570e01..bcb002f 100644
--- a/recipes/reddit/package.json
+++ b/recipes/reddit/package.json
@@ -3,7 +3,7 @@
3 "name": "Reddit", 3 "name": "Reddit",
4 "version": "1.1.2", 4 "version": "1.1.2",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/getferdi/recipes", 6 "repository": "https://github.com/ferdium/ferdium-recipes",
7 "config": { 7 "config": {
8 "hasIndirectMessages": true, 8 "hasIndirectMessages": true,
9 "serviceURL": "https://www.reddit.com/" 9 "serviceURL": "https://www.reddit.com/"
diff --git a/recipes/skype/package.json b/recipes/skype/package.json
index 9243300..d89bdec 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.4", 4 "version": "3.3.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 1947ddb..1e679d1 100644
--- a/recipes/skype/webview.js
+++ b/recipes/skype/webview.js
@@ -42,7 +42,7 @@ module.exports = (Ferdi, settings) => {
42 event.preventDefault(); 42 event.preventDefault();
43 event.stopPropagation(); 43 event.stopPropagation();
44 // TODO: Can we send an ipc event 'open-browser-window' to open the child window? (see the slack recipe for how to send an ipc message) 44 // TODO: Can we send an ipc event 'open-browser-window' to open the child window? (see the slack recipe for how to send an ipc message)
45 // TODO: Can we change the slack recipe to add a clickHandler for screensharing/video calls? (https://github.com/getferdi/ferdi/issues/1697) 45 // TODO: Can we change the slack recipe to add a clickHandler for screensharing/video calls? (https://github.com/ferdium/ferdium-app/issues/1697)
46 let win = new Ferdi.BrowserWindow({ 46 let win = new Ferdi.BrowserWindow({
47 width: 800, 47 width: 800,
48 height: window.innerHeight, 48 height: window.innerHeight,
diff --git a/recipes/twitter/package.json b/recipes/twitter/package.json
index 83cf0fa..485afb7 100644
--- a/recipes/twitter/package.json
+++ b/recipes/twitter/package.json
@@ -3,7 +3,7 @@
3 "name": "Twitter", 3 "name": "Twitter",
4 "version": "1.2.1", 4 "version": "1.2.1",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/getferdi/recipes", 6 "repository": "https://github.com/ferdium/ferdium-recipes",
7 "config": { 7 "config": {
8 "serviceURL": "https://twitter.com", 8 "serviceURL": "https://twitter.com",
9 "hasNotificationSound": true 9 "hasNotificationSound": true
diff --git a/recipes/zoom/package.json b/recipes/zoom/package.json
index ecaf20c..4c7aa8d 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.0.0", 4 "version": "1.1.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 9ad54e8..712d216 100644
--- a/recipes/zoom/webview.js
+++ b/recipes/zoom/webview.js
@@ -42,7 +42,7 @@ module.exports = (Ferdi, settings) => {
42 event.preventDefault(); 42 event.preventDefault();
43 event.stopPropagation(); 43 event.stopPropagation();
44 // TODO: Can we send an ipc event 'open-browser-window' to open the child window? (see the slack recipe for how to send an ipc message) 44 // TODO: Can we send an ipc event 'open-browser-window' to open the child window? (see the slack recipe for how to send an ipc message)
45 // TODO: Can we change the slack recipe to add a clickHandler for screensharing/video calls? (https://github.com/getferdi/ferdi/issues/1697) 45 // TODO: Can we change the slack recipe to add a clickHandler for screensharing/video calls? (https://github.com/ferdium/ferdium-app/issues/1697)
46 let win = new Ferdi.BrowserWindow({ 46 let win = new Ferdi.BrowserWindow({
47 width: 800, 47 width: 800,
48 height: window.innerHeight, 48 height: window.innerHeight,