From 5ac5a1c80d19d333a2ada7c7ab4f54e1e0ca1abb Mon Sep 17 00:00:00 2001 From: saman Date: Fri, 1 Sep 2017 20:02:15 +0430 Subject: [PATCH 1/3] add raychat --- src/apps.json | 11 ++++++++++- src/icons/raychat.svg | 29 +++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 src/icons/raychat.svg diff --git a/src/apps.json b/src/apps.json index 5435100f46..5cb77bd1d2 100755 --- a/src/apps.json +++ b/src/apps.json @@ -10600,7 +10600,16 @@ "icon": "xui.png", "script": "[^a-z]xui.*\\.js", "website": "http://xuijs.com" - } + }, + "Raychat": { + "cats": [ + "52" + ], + "env": "^Raychat$", + "icon": "raychat.svg", + "script": "(?:app.raychat.io/scripts/js/)", + "website": "https://raychat.io" + } }, "categories": { "1": { diff --git a/src/icons/raychat.svg b/src/icons/raychat.svg new file mode 100644 index 0000000000..7083033072 --- /dev/null +++ b/src/icons/raychat.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + From 04c563ab6006873424b7cefe7fc54632e43a7a71 Mon Sep 17 00:00:00 2001 From: samanbaboli Date: Sun, 3 Sep 2017 13:13:52 +0430 Subject: [PATCH 2/3] change raychat regex --- src/apps.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps.json b/src/apps.json index 5cb77bd1d2..5fcfe09d02 100755 --- a/src/apps.json +++ b/src/apps.json @@ -10607,7 +10607,7 @@ ], "env": "^Raychat$", "icon": "raychat.svg", - "script": "(?:app.raychat.io/scripts/js/)", + "script": "app\.raychat\.io/scripts/js", "website": "https://raychat.io" } }, From ab45460c5e468457b803b69baa72d6dc2ed02186 Mon Sep 17 00:00:00 2001 From: samanbaboli Date: Sun, 3 Sep 2017 21:41:05 +0430 Subject: [PATCH 3/3] raychat regex issue --- src/apps.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps.json b/src/apps.json index 5fcfe09d02..ca8f9fe3ac 100755 --- a/src/apps.json +++ b/src/apps.json @@ -10607,7 +10607,7 @@ ], "env": "^Raychat$", "icon": "raychat.svg", - "script": "app\.raychat\.io/scripts/js", + "script": "app\\.raychat\\.io/scripts/js", "website": "https://raychat.io" } },