Skip to content

Commit 3bc619f

Browse files
author
Ryan Winkler
authored
docs: add Discord and bug report links to README and issue templates (#798)
- Add Discord channel and Report a Bug links to top README.md navigation bar - Add Discord community link to Support the project section in README.md - Add Discord contact link in .github/ISSUE_TEMPLATE/config.yml - Update Discord community invite in SECURITY.md and sqlite_recovery_server.py
1 parent 02e55cf commit 3bc619f

5 files changed

Lines changed: 12 additions & 5 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
blank_issues_enabled: false
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Discord Community
4+
url: https://discord.gg/uFgha7Kb6n
5+
about: Ask questions, get help, or chat with the Floppy community.

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111
<p align="center">
1212
<a href="https://yamtrack.dannyvfilms.com">Demo</a> ·
1313
<a href="https://github.com/dannyvfilms/Floppy/pkgs/container/floppy">Docker Image</a> ·
14+
<a href="https://discord.gg/uFgha7Kb6n">Discord</a> ·
1415
<a href="https://github.com/dannyvfilms/Floppy/wiki">Wiki</a> ·
15-
<a href="https://github.com/dannyvfilms/Floppy/releases">Releases</a>
16+
<a href="https://github.com/dannyvfilms/Floppy/releases">Releases</a> ·
17+
<a href="https://github.com/dannyvfilms/Floppy/issues">Report a Bug</a>
1618
</p>
1719

1820
Floppy is a self-hosted, all-in-one media tracker and personal media diary, a broader alternative to Trakt, Letterboxd, and TV Time for people who want one place for everything they watch, read, play, or listen to. It gives you a real progress view that tells you what to watch next, a unified history you can actually scan, recap-style statistics, shareable lists, owned-media collections, and integrations that sync instead of asking you to upload a file every few months.
@@ -721,6 +723,7 @@ dependency.
721723
## Support the project
722724

723725
- Star the repository if you want to help more people find Floppy.
726+
- Join the [Discord channel](https://discord.gg/uFgha7Kb6n) to ask questions, share feedback, and chat with the community.
724727
- Open an [issue](https://github.com/dannyvfilms/Floppy/issues) for bugs, or for feature requests and ideas.
725728
- Open a pull request if you want to contribute code, docs, or polish.
726729

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ We take the security of this project seriously.
99

1010
## Urgent Inquiries
1111

12-
For urgent but non-sensitive matters, general questions, and immediate assistance requests, please reach out to our community Discord Channel: [https://discord.gg/sqyZUU37ZY](https://discord.gg/sqyZUU37ZY).
12+
For urgent but non-sensitive matters, general questions, and immediate assistance requests, please reach out to our community Discord Channel: [https://discord.gg/uFgha7Kb6n](https://discord.gg/uFgha7Kb6n).
1313

1414
## Contributing Security Fixes
1515

src/config/sqlite_recovery_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
_HELP_LINKS = (
5252
("Report a problem", "https://github.com/dannyvfilms/Floppy/issues"),
5353
("Read the wiki", "https://github.com/dannyvfilms/Floppy/wiki"),
54-
("Ask on Discord", "https://discord.gg/QfNA6zJ5Ws"),
54+
("Ask on Discord", "https://discord.gg/uFgha7Kb6n"),
5555
)
5656

5757
# navigator.clipboard exists only in a secure context. Floppy is usually opened

src/config/tests/test_sqlite_recovery_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ def test_the_page_offers_places_to_get_help(self):
369369
page = recovery.render_page(candidate, interactive=True)
370370
self.assertIn("github.com/dannyvfilms/Floppy/issues", page)
371371
self.assertIn("github.com/dannyvfilms/Floppy/wiki", page)
372-
self.assertIn("discord.gg/QfNA6zJ5Ws", page)
372+
self.assertIn("discord.gg/uFgha7Kb6n", page)
373373

374374
def test_a_cross_site_form_cannot_make_the_choice(self):
375375
with tempfile.TemporaryDirectory() as tmp_dir:

0 commit comments

Comments
 (0)