Merge pull request #25 from aclist/feat/remove-from-thanks

feat: add admonition to submit ticket
This commit is contained in:
aclist 2025-12-13 23:12:13 +09:00 committed by GitHub
commit 94e5f9f6c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -343,7 +343,8 @@ thanks = Thanks(
header = "# Special thanks",
description = (
"This page recognizes beta testers, collaborators, code "
"contributors, and sponsors of the project in alphabetical order."
"contributors, and sponsors of the project in alphabetical order.\n"
"If you wish to be removed from this list, please submit a ticket."
),
users = [
"bongjutsu",

View File

@ -24,7 +24,7 @@ class Thanks(Gtk.Box):
header.set_markup(label)
self.add(header)
description = Gtk.Label(label=thanks.description)
description = Gtk.Label(label=thanks.description, justify=Gtk.Justification.CENTER)
self.add(description)
users = [f"- {user}" for user in sorted(thanks.users, key=str.lower)]