misc: Update about window credits

This commit is contained in:
David Lapshin 2023-04-08 03:41:46 +03:00
parent baad6f059f
commit 005eeb8046

View file

@ -21,59 +21,10 @@ from gi.repository import Gtk, Adw
from gradience.backend import constants
release_notes = """
<ul>
<li>Only configure local CLI if buildtype is set to debug</li>
<li>Changed margins in popup explanations and some other widgets</li>
<li>Changed object names in preferences window</li>
<li>Fixed local CLI executable making issues with Fedora CI</li>
<li>Fixed theme variant menu in Monet Engine not working with non-english locales</li>
<li>Applied temporary patch for CssProvider.load_from_data() new behavior in GTK 4.10</li>
<li>Translation updates</li>
</ul>
"""
gradience_description = """Gradience is a tool for customizing Libadwaita applications and the adw-gtk3 theme.
The main features of Gradience include the following:
🎨 Changing any color of Adwaita theme
🖼 Applying Material 3 color scheme from wallpaper
🎁 Usage of other users presets
Changing advanced options with CSS
🧩 Extending functionality using plugins"""
# TRANSLATORS: This is a place to put your credits (formats:
# "Name https://example.com" or "Name <email@example.com>",
# no quotes) and is not meant to be translated literally.
translator_credits = """0xMRTT https://github.com/0xMRTT
엘련 (Jisu Kim) https://github.com/vbalien
Aggelos Tselios https://www.transifex.com/user/profile/AndroGR
BritishBenji https://github.com/BritishBenji
David Lapshin https://github.com/daudix-UFO
Davide Ferracin https://github.com/phaerrax
Ewout van Mansom https://github.com/emansom
FineFindus https://github.com/FineFindus
Gabriel Lemos https://github.com/gbrlgn
Juanjo Cillero https://www.transifex.com/user/profile/renux918
JungHee Lee https://github.com/MarongHappy
K.B.Dharun Krishna https://github.com/kbdharun
Karol Lademan https://www.transifex.com/user/profile/karlod
Luna Jernberg https://github.com/bittin
Maxime V https://www.transifex.com/user/profile/Adaoh
Michal S. <michal@getcryst.al>
Monty Monteusz https://www.transifex.com/user/profile/MontyQIQI
Philip Goto https://github.com/flipflop97
Renato Corrêa https://github.com/renatocrrs
Rene Coty https://github.com/rene-coty
Sabri Ünal https://github.com/libreajans
Taylan Tatlı https://www.transifex.com/user/profile/TaylanTatli34
bzizmza https://github.com/bzizmza
muzena https://github.com/muzena
renatocrrs https://github.com/renatocrrs
tfuxu https://github.com/tfuxu
yangyangdaji https://github.com/yangyangdaji
Óscar Fernández Díaz https://github.com/oscfdezdz"""
translator_credits = _("translator-credits")
class GradienceAboutWindow:
def __init__(self, parent):
@ -98,77 +49,26 @@ class GradienceAboutWindow:
"tfuxu https://github.com/tfuxu",
"u1F98E https://github.com/u1f98e"
],
artists=[
"David Lapshin https://github.com/daudix-UFO"
],
designers=[
"David Lapshin https://github.com/daudix-UFO"
],
documenters=[
"0xMRTT https://github.com/0xMRTT",
"David Lapshin https://github.com/daudix-UFO"
],
translator_credits=_(translator_credits),
copyright=_("Copyright © 2022-2023 Gradience Team"),
license_type=Gtk.License.GPL_3_0,
version=constants.version,
release_notes_version=constants.rel_ver,
release_notes=_(release_notes),
comments=_(gradience_description),
)
self.about_window.add_credit_section(
_("Plugins by"),
[
"0xMRTT https://github.com/0xMRTT",
"Apisu https://github.com/aspizu",
"Jonathan Lestrelin https://github.com/jle64"
"Contributors on GitHub https://github.com/GradienceTeam/Plugins/graphs/contributors"
]
)
self.about_window.add_credit_section(
_("Presets by"),
[
"0xMRTT https://github.com/0xMRTT",
"Ben Mitchell https://github.com/crispyricepc",
"David Lapshin https://github.com/daudix-UFO",
"JoshM-Yoru https://github.com/JoshM-Yoru",
"José Hunter https://github.com/halfmexican",
"Kainoa Kanter https://github.com/ThatOneCalculator",
"Link Dupont https://github.com/subpop",
"Luis David López https://github.com/lopeztel",
"Mohammad Saleh Kamyab https://github.com/mskf1383",
"Sal Watson https://github.com/salarua",
"TeryVeneno https://github.com/TeryVeneno",
"arslee https://github.com/arslee07",
"badlydrawnface https://github.com/badlydrawnface",
"cmagnificent https://github.com/cmagnificent",
"hericiumvevo https://github.com/hericiumvevo",
"tfuxu https://github.com/tfuxu",
"zehkira https://github.com/zehkira"
]
)
self.about_window.add_credit_section(
_("Packages by"),
[
"0xMRTT https://github.com/0xMRTT",
"Lyes Saadi https://github.com/lyessaadi"
]
)
self.about_window.add_credit_section(
_("Fixes by"),
[
"Erick Howard https://github.com/DivineBicycle",
"Hari Rana https://github.com/TheEvilSkeleton",
"José Hunter https://github.com/halfmexican",
"Sabri Ünal https://github.com/libreajans",
"Sal Watson https://github.com/salarua"
]
)
self.about_window.add_acknowledgement_section(
_("Special thanks to"),
[
"Artyom Fomin https://github.com/ArtyIF",
"Weblate https://weblate.org"
"Contributors on GitHub https://github.com/GradienceTeam/Community/graphs/contributors"
]
)