summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupahgreg <supahgreg@users.noreply.github.com>2025-10-06 18:51:56 +0000
committersupahgreg <supahgreg@users.noreply.github.com>2025-10-06 18:51:56 +0000
commit358f480ea8f14d9db8a933e84f3339e533c626fb (patch)
treee2906ed47435e2cdc84523d55df16dc597b6849b
parent83140cfbcba7e42202b05c820066d2f2e5a45fef (diff)
Switch links to the 'tt-rss' GitHub organization.
-rw-r--r--Email-Digests.md2
-rw-r--r--Global-Config.md2
-rw-r--r--Home.md8
-rw-r--r--Installation-Guide.md10
-rw-r--r--Making-Plugins.md8
-rw-r--r--Plugins.md2
6 files changed, 16 insertions, 16 deletions
diff --git a/Email-Digests.md b/Email-Digests.md
index c3122d5..961a14b 100644
--- a/Email-Digests.md
+++ b/Email-Digests.md
@@ -4,7 +4,7 @@ Digests are sent out by the update daemon or if running <code>update.php —feed
manually. At most 15 messages are sent in one batch.
> [!NOTE]
-> [PHPMailer plugin](https://github.com/supahgreg/tt-rss-plugin-mailer-smtp) is required to send mail under Docker.
+> [PHPMailer plugin](https://github.com/tt-rss/tt-rss-plugin-mailer-smtp) is required to send mail under Docker.
* Digests may be customized by editing ``templates/digest_template*.txt``.
diff --git a/Global-Config.md b/Global-Config.md
index de52ab0..fc0b62d 100644
--- a/Global-Config.md
+++ b/Global-Config.md
@@ -1,6 +1,6 @@
All settings (see `_DEFAULTS[]` for default values) are listed here:
-- https://github.com/supahgreg/tt-rss/blob/main/classes/Config.php (source code, including default values)
+- https://github.com/tt-rss/tt-rss/blob/main/classes/Config.php (source code, including default values)
It is preferred to adjust tt-rss global configuration through the environment, i.e. defined in `.env` when using docker-compose setup:
diff --git a/Home.md b/Home.md
index 4fe71a6..6663c1a 100644
--- a/Home.md
+++ b/Home.md
@@ -19,7 +19,7 @@ Tiny Tiny RSS (tt-rss) is a free, flexible, open source, web-based news feed (RS
- [sharing arbitrary content through tt-rss](Share-Anything)
- [Plugins](Plugins) and [themes](Themes)
- embedding full article content via readability and site-specific plugins
- - deduplication, including [perceptual hashing](https://github.com/supahgreg/tt-rss-plugin-perceptual-image-hash) for images
+ - deduplication, including [perceptual hashing](https://github.com/tt-rss/tt-rss-plugin-perceptual-image-hash) for images
- podcasts
- [flexible article filtering](Content-Filters)
- [JSON API](Api-Reference)
@@ -43,12 +43,12 @@ See the [[Installation Guide]] for detailed instructions.
## Get in touch
-* Go to https://github.com/supahgreg/tt-rss/discussions if you have questions or want to discuss something.
-* Go to https://github.com/supahgreg/tt-rss/issues if you want to report an issue, request an enhancement/feature, etc.
+* Go to https://github.com/tt-rss/tt-rss/discussions if you have questions or want to discuss something.
+* Go to https://github.com/tt-rss/tt-rss/issues if you want to report an issue, request an enhancement/feature, etc.
## Development and Contributing
* Contributions (code, translations, reporting issues, etc.) are welcome.
-* Development and issue tracking primarily happens in https://github.com/supahgreg/tt-rss .
+* Development and issue tracking primarily happens in https://github.com/tt-rss/tt-rss .
* (not quite ready for this post-`tt-rss.org`) ~~Help translate tt-rss into your own language using [Weblate](https://hosted.weblate.org/engage/tt-rss/)~~
diff --git a/Installation-Guide.md b/Installation-Guide.md
index 2f79155..31aba41 100644
--- a/Installation-Guide.md
+++ b/Installation-Guide.md
@@ -1,6 +1,6 @@
The main (and recommended) way to run tt-rss is under Docker.
-The Docker images related to https://github.com/supahgreg/tt-rss are:
+The Docker images related to https://github.com/tt-rss/tt-rss are:
* https://hub.docker.com/r/supahgreg/tt-rss
* https://hub.docker.com/r/supahgreg/tt-rss-web-nginx
@@ -159,7 +159,7 @@ services:
image: supahgreg/tt-rss:latest
build:
dockerfile: .docker/app/Dockerfile
- context: https://github.com/supahgreg/tt-rss.git
+ context: https://github.com/tt-rss/tt-rss.git
args:
BUILDKIT_CONTEXT_KEEP_GIT_DIR: 1
@@ -167,7 +167,7 @@ services:
image: supahgreg/tt-rss-web-nginx:latest
build:
dockerfile: .docker/web-nginx/Dockerfile
- context: https://github.com/supahgreg/tt-rss.git
+ context: https://github.com/tt-rss/tt-rss.git
```
`BUILDKIT_CONTEXT_KEEP_GIT_DIR` build argument is needed to display tt-rss version info properly.
@@ -222,11 +222,11 @@ TTRSS_SELF_URL_PATH=http://example.com/tt-rss
Don't use quotes around values. Note the prefix (`TTRSS_`) before the value.
-Look [here](https://github.com/supahgreg/tt-rss/wiki/Global-Config) for more information.
+Look [here](https://github.com/tt-rss/tt-rss/wiki/Global-Config) for more information.
#### Container options
-Some options, but not all, are mentioned in `.env-dist`. You can see all available options in the [Dockerfile](https://github.com/supahgreg/tt-rss/blob/main/.docker/app/Dockerfile).
+Some options, but not all, are mentioned in `.env-dist`. You can see all available options in the [Dockerfile](https://github.com/tt-rss/tt-rss/blob/main/.docker/app/Dockerfile).
### How do I customize the YML without committing my changes to git?
diff --git a/Making-Plugins.md b/Making-Plugins.md
index be5a148..159085b 100644
--- a/Making-Plugins.md
+++ b/Making-Plugins.md
@@ -9,14 +9,14 @@ with anything specific.
Some useful information may be found here:
-- https://github.com/supahgreg/tt-rss/blob/main/classes/PluginHost.php
-- https://github.com/supahgreg/tt-rss/blob/main/classes/Plugin.php
+- https://github.com/tt-rss/tt-rss/blob/main/classes/PluginHost.php
+- https://github.com/tt-rss/tt-rss/blob/main/classes/Plugin.php
-Frontend (JS) uses different hooks, which are defined in [PluginHost.js](https://github.com/supahgreg/tt-rss/blob/main/js/PluginHost.js)
+Frontend (JS) uses different hooks, which are defined in [PluginHost.js](https://github.com/tt-rss/tt-rss/blob/main/js/PluginHost.js)
## Localization support
-See ``time_to_read`` plugin for a complete example [here](https://github.com/supahgreg/tt-rss-plugin-time-to-read)
+See ``time_to_read`` plugin for a complete example [here](https://github.com/tt-rss/tt-rss-plugin-time-to-read)
### Implementation
diff --git a/Plugins.md b/Plugins.md
index 8bdbc37..a511832 100644
--- a/Plugins.md
+++ b/Plugins.md
@@ -29,7 +29,7 @@ i.e. ``Af_ExamplePlugin`` should be copied to ``plugins.local/af_exampleplugin``
## First party plugins (maintained on this site but not bundled with tt-rss)
-https://github.com/supahgreg?tab=repositories&q=tt-rss-plugin&sort=name
+https://github.com/orgs/tt-rss/repositories?q=tt-rss-plugin+sort%3Aname-asc
## Third party plugins