diff --git a/CHANGELOG.md b/CHANGELOG.md index d15ae18..10700c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -137,7 +137,7 @@ Changelog * **IMPORTANT:** Starting from this release, new releases will not be uploaded to the APT package repository at `bezdomni.net`. Please use the official Debian or Ubuntu repos or choose another [installation - option](https://toot.readthedocs.io/en/latest/install.html). + option](https://toot.bezdomni.net/installation.html). **0.25.2 (2020-01-23)** diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0d58901..5383f01 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,7 @@ Firstly, thank you for contributing to toot! Relevant links which will be referenced below: -* [toot documentation](https://toot.readthedocs.io/) +* [toot documentation](https://toot.bezdomni.net/) * [toot-discuss mailing list](https://lists.sr.ht/~ihabunek/toot-discuss) used for discussion as well as accepting patches * [toot project on github](https://github.com/ihabunek/toot) diff --git a/README.rst b/README.rst index 552d43d..90751b9 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,7 @@ Resources * Homepage: https://github.com/ihabunek/toot * Issues: https://github.com/ihabunek/toot/issues -* Documentation: https://toot.readthedocs.io/en/latest/ +* Documentation: https://toot.bezdomni.net/ * Mailing list for discussion, support and patches: https://lists.sr.ht/~ihabunek/toot-discuss * Informal discussion: #toot IRC channel on `libera.chat `_ diff --git a/changelog.yaml b/changelog.yaml index ad135ee..164efba 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -122,7 +122,7 @@ - "Fix datetime parsing on Python 3.5 (#162)" - "TUI: Display status links and open them (#154, thanks @dlax)" - "TUI: Fix visibility descriptions (#153, thanks @finnoleary)" - - "**IMPORTANT:** Starting from this release, new releases will not be uploaded to the APT package repository at `bezdomni.net`. Please use the official Debian or Ubuntu repos or choose another [installation option](https://toot.readthedocs.io/en/latest/install.html)." + - "**IMPORTANT:** Starting from this release, new releases will not be uploaded to the APT package repository at `bezdomni.net`. Please use the official Debian or Ubuntu repos or choose another [installation option](https://toot.bezdomni.net/installation.html)." 0.25.2: date: 2020-01-23 diff --git a/docs/changelog.md b/docs/changelog.md index d15ae18..10700c8 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -137,7 +137,7 @@ Changelog * **IMPORTANT:** Starting from this release, new releases will not be uploaded to the APT package repository at `bezdomni.net`. Please use the official Debian or Ubuntu repos or choose another [installation - option](https://toot.readthedocs.io/en/latest/install.html). + option](https://toot.bezdomni.net/installation.html). **0.25.2 (2020-01-23)** diff --git a/docs/contributing.md b/docs/contributing.md index e593b38..bec0c17 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -5,7 +5,7 @@ Firstly, thank you for contributing to toot! Relevant links which will be referenced below: -* [toot documentation](https://toot.readthedocs.io/) +* [toot documentation](https://toot.bezdomni.net/) * [toot-discuss mailing list](https://lists.sr.ht/~ihabunek/toot-discuss) used for discussion as well as accepting patches * [toot project on github](https://github.com/ihabunek/toot) diff --git a/setup.py b/setup.py index abf90f8..6a2cc83 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( author_email='ivan@habunek.com', url='https://github.com/ihabunek/toot/', project_urls={ - 'Documentation': 'https://toot.readthedocs.io/en/latest/', + 'Documentation': 'https://toot.bezdomni.net/', 'Issue tracker': 'https://github.com/ihabunek/toot/issues/', }, keywords='mastodon toot', diff --git a/toot/tui/overlays.py b/toot/tui/overlays.py index 1e006c3..d5f370a 100644 --- a/toot/tui/overlays.py +++ b/toot/tui/overlays.py @@ -205,7 +205,7 @@ class Help(urwid.Padding): yield urwid.Divider() yield urwid.Text(("bold", "Links")) yield urwid.Divider() - yield link("Documentation: ", "https://toot.readthedocs.io/") + yield link("Documentation: ", "https://toot.bezdomni.net/") yield link("Project home: ", "https://github.com/ihabunek/toot/")