diff --git a/.docker/app/Dockerfile b/.docker/app/Dockerfile index d5d5c32a7..6b64fe7f6 100644 --- a/.docker/app/Dockerfile +++ b/.docker/app/Dockerfile @@ -59,7 +59,7 @@ ADD .docker/app/config.docker.php ${SCRIPT_ROOT} COPY . ${SRC_DIR} -ARG ORIGIN_REPO_XACCEL=https://git.tt-rss.org/fox/ttrss-nginx-xaccel.git +ARG ORIGIN_REPO_XACCEL=https://github.com/supahgreg/tt-rss-plugin-nginx-xaccel.git RUN git clone --depth=1 ${ORIGIN_REPO_XACCEL} ${SRC_DIR}/plugins.local/nginx_xaccel diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a0dd4d70b..a0990367e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,39 +1 @@ -## Contributing code the right way - -TLDR: it works *almost* like Github. - -Due to spam, new Gitlab users are set to [external](https://docs.gitlab.com/ee/user/admin_area/external_users.html). In order to do anything, you'll need to ask for your account to be promoted. Sorry for the inconvenience. - -1. Register on the [Gitlab](https://gitlab.tt-rss.org); -2. Post on the forums asking for your account to be promoted; -3. Fork the repository you're interested in; -4. Do the needful; -6. File a PR against master branch and verify that CI pipeline (especially, PHPStan) passes; - -If you have any other questions, see this [forum thread](https://discourse.tt-rss.org/t/how-to-contribute-code-via-pull-requests-on-git-tt-rss-org/1850). - -Please don't inline patches in forum posts, attach files instead (``.patch`` or ``.diff`` file extensions should work). - -### FAQ - -#### How do I push or pull without SSH? - -You can't use SSH directly because tt-rss Gitlab is behind Cloudflare. You can use HTTPS with personal access tokens instead. - -Create a personal access token in [Gitlab preferences](https://gitlab.tt-rss.org/-/user_settings/personal_access_tokens); - -Optionally, configure Git to transparently work with tt-rss Gitlab repositories using HTTPS: - -``` -git config --global \ - --add url."https://gitlab-token:your-personal-access-token@gitlab.tt-rss.org/".insteadOf \ - "git@gitlab.tt-rss.org:" -``` - -Alternatively, checkout over HTTPS while adding the token manually: - -``` -git clone https://gitlab-token:your-personal-access-token@gitlab.tt-rss.org/tt-rss/tt-rss.git tt-rss -``` - -That's it. +TBD diff --git a/README.md b/README.md index 71b11cc8b..5b168d086 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,19 @@ -Tiny Tiny RSS -============= +Tiny Tiny RSS (tt-rss) +====================== -Web-based news feed aggregator, designed to allow you to read news from +Web-based news feed aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible. -http://tt-rss.org +## Some notes + +* The original tt-rss project, hosted at https://tt-rss.org/ and its various subdomains, [will be gone after 2025-11-01](https://community.tt-rss.org/t/the-end-of-tt-rss-org/7164). + * Massive thanks to fox for maintaining tt-rss (and absolutely everything else that went along with it) for so many years. +* https://github.com/supahgreg/tt-rss is a fork of tt-rss as of 2025-10-03, created by one of its long-time contributors (`wn` on `tt-rss.org`, `supahgreg` on GitHub). + * For now, just treat this as a slightly-tweaked mirror of the original project (initially just removing `tt-rss.org` references and integrations). +* Plugins that were under https://gitlab.tt-rss.org/tt-rss/plugins have been mirrored to `https://github.com/supahgreg/tt-rss-plugin-*` (NOTE: names have changed) +* The repository that held the content for https://tt-rss.org has been mirrored to https://github.com/supahgreg/tt-rss-web-static. + +## License This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/classes/Config.php b/classes/Config.php index 49715a576..61aab85ca 100644 --- a/classes/Config.php +++ b/classes/Config.php @@ -272,7 +272,7 @@ class Config { Config::CHECK_FOR_PLUGIN_UPDATES => [ "true", Config::T_BOOL ], Config::ENABLE_PLUGIN_INSTALLER => [ "true", Config::T_BOOL ], Config::AUTH_MIN_INTERVAL => [ 5, Config::T_INT ], - Config::HTTP_USER_AGENT => [ 'Tiny Tiny RSS/%s (https://tt-rss.org/)', + Config::HTTP_USER_AGENT => [ 'Tiny Tiny RSS/%s (https://github.com/supahgreg/tt-rss)', Config::T_STRING ], Config::HTTP_429_THROTTLE_INTERVAL => [ 3600, Config::T_INT ], Config::DISABLE_LOGIN_FORM => [ "", Config::T_BOOL ], @@ -632,8 +632,8 @@ class Config { -
You might want to check the tt-rss wiki or - forums for more information. Please search the forums before creating a new topic +
You might want to check the tt-rss wiki or + discussions for more information. Please search before creating a new topic for your question.