From 7b244fe8aece71be00ecd490947d17e90c66c396 Mon Sep 17 00:00:00 2001 From: GitHub Date: Wed, 3 Jan 2024 21:08:40 +0000 Subject: [PATCH] Update instances --- android/app/src/main/AndroidManifest.xml | 6 +++++- ios/Open In Thunder/Resources/content.js | 8 ++++++-- ios/Open In Thunder/Resources/manifest.json | 8 ++++++-- lemmy-instances.txt | 6 +++++- lib/instances.dart | 6 +++++- 5 files changed, 27 insertions(+), 7 deletions(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 4e0fb342a..976a5b30c 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -55,6 +55,7 @@ + @@ -66,10 +67,12 @@ + + @@ -93,6 +96,7 @@ + @@ -109,11 +113,11 @@ + - diff --git a/ios/Open In Thunder/Resources/content.js b/ios/Open In Thunder/Resources/content.js index a725a3489..085a75cb9 100644 --- a/ios/Open In Thunder/Resources/content.js +++ b/ios/Open In Thunder/Resources/content.js @@ -1,4 +1,5 @@ let instances = [ + "ani.social", "aussie.zone", "awful.systems", "bakchodi.org", @@ -10,10 +11,12 @@ let instances = [ "discuss.tchncs.de", "exploding-heads.com", "feddit.ch", + "feddit.cl", "feddit.de", "feddit.dk", "feddit.it", "feddit.nl", + "feddit.nu", "feddit.uk", "geddit.social", "hexbear.net", @@ -37,6 +40,7 @@ let instances = [ "lemmy.today", "lemmy.whynotdrs.org", "lemmy.world", + "lemmy.wtf", "lemmy.zip", "lemmygrad.ml", "lemmynsfw.com", @@ -53,11 +57,11 @@ let instances = [ "sopuli.xyz", "startrek.website", "szmer.info", + "thelemmy.club", "ttrpg.network", "vlemmy.net", "waveform.social", - "www.hexbear.net", - "yiffit.net" + "www.hexbear.net" ]; document.addEventListener('readystatechange', handleNavigation); diff --git a/ios/Open In Thunder/Resources/manifest.json b/ios/Open In Thunder/Resources/manifest.json index 9fb0fd724..b46e7e054 100644 --- a/ios/Open In Thunder/Resources/manifest.json +++ b/ios/Open In Thunder/Resources/manifest.json @@ -17,6 +17,7 @@ "content.js" ], "matches": [ + "*://ani.social/*", "*://aussie.zone/*", "*://awful.systems/*", "*://bakchodi.org/*", @@ -28,10 +29,12 @@ "*://discuss.tchncs.de/*", "*://exploding-heads.com/*", "*://feddit.ch/*", + "*://feddit.cl/*", "*://feddit.de/*", "*://feddit.dk/*", "*://feddit.it/*", "*://feddit.nl/*", + "*://feddit.nu/*", "*://feddit.uk/*", "*://geddit.social/*", "*://hexbear.net/*", @@ -55,6 +58,7 @@ "*://lemmy.today/*", "*://lemmy.whynotdrs.org/*", "*://lemmy.world/*", + "*://lemmy.wtf/*", "*://lemmy.zip/*", "*://lemmygrad.ml/*", "*://lemmynsfw.com/*", @@ -71,11 +75,11 @@ "*://sopuli.xyz/*", "*://startrek.website/*", "*://szmer.info/*", + "*://thelemmy.club/*", "*://ttrpg.network/*", "*://vlemmy.net/*", "*://waveform.social/*", - "*://www.hexbear.net/*", - "*://yiffit.net/*" + "*://www.hexbear.net/*" ] } ], diff --git a/lemmy-instances.txt b/lemmy-instances.txt index dc1db8ef8..914ffb3f9 100644 --- a/lemmy-instances.txt +++ b/lemmy-instances.txt @@ -1,3 +1,4 @@ +ani.social aussie.zone awful.systems bakchodi.org @@ -9,10 +10,12 @@ discuss.online discuss.tchncs.de exploding-heads.com feddit.ch +feddit.cl feddit.de feddit.dk feddit.it feddit.nl +feddit.nu feddit.uk geddit.social hexbear.net @@ -36,6 +39,7 @@ lemmy.sdf.org lemmy.today lemmy.whynotdrs.org lemmy.world +lemmy.wtf lemmy.zip lemmygrad.ml lemmynsfw.com @@ -52,8 +56,8 @@ social.fossware.space sopuli.xyz startrek.website szmer.info +thelemmy.club ttrpg.network vlemmy.net waveform.social www.hexbear.net -yiffit.net diff --git a/lib/instances.dart b/lib/instances.dart index d5fa9ab91..20f02bf97 100644 --- a/lib/instances.dart +++ b/lib/instances.dart @@ -1,4 +1,5 @@ const List instances = [ + 'ani.social', 'aussie.zone', 'awful.systems', 'bakchodi.org', @@ -10,10 +11,12 @@ const List instances = [ 'discuss.tchncs.de', 'exploding-heads.com', 'feddit.ch', + 'feddit.cl', 'feddit.de', 'feddit.dk', 'feddit.it', 'feddit.nl', + 'feddit.nu', 'feddit.uk', 'geddit.social', 'hexbear.net', @@ -37,6 +40,7 @@ const List instances = [ 'lemmy.today', 'lemmy.whynotdrs.org', 'lemmy.world', + 'lemmy.wtf', 'lemmy.zip', 'lemmygrad.ml', 'lemmynsfw.com', @@ -53,9 +57,9 @@ const List instances = [ 'sopuli.xyz', 'startrek.website', 'szmer.info', + 'thelemmy.club', 'ttrpg.network', 'vlemmy.net', 'waveform.social', 'www.hexbear.net', - 'yiffit.net', ];