From 005eeb80466bb2a8b2cadbdc14639cd81fa5235c Mon Sep 17 00:00:00 2001 From: daudix-UFO Date: Sat, 8 Apr 2023 03:41:46 +0300 Subject: [PATCH] misc: Update about window credits --- gradience/frontend/views/about_window.py | 106 +---------------------- 1 file changed, 3 insertions(+), 103 deletions(-) diff --git a/gradience/frontend/views/about_window.py b/gradience/frontend/views/about_window.py index d9e13d1e..0da24ff5 100644 --- a/gradience/frontend/views/about_window.py +++ b/gradience/frontend/views/about_window.py @@ -21,59 +21,10 @@ from gi.repository import Gtk, Adw from gradience.backend import constants -release_notes = """ - -""" - -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 ", # 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. -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" ] )