From 0766c597c59e2ea3450dca646e07fc0dc287aea2 Mon Sep 17 00:00:00 2001 From: Daniil Shashimov Date: Sat, 18 Jul 2026 01:57:55 +0500 Subject: [PATCH] Add faustyu to contributors --- packit/.elyxbuilder/stats.yml | 4 ++-- packit/src/ui/contributors/fragment.py | 14 +++++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/packit/.elyxbuilder/stats.yml b/packit/.elyxbuilder/stats.yml index d9ad249..ec43b51 100644 --- a/packit/.elyxbuilder/stats.yml +++ b/packit/.elyxbuilder/stats.yml @@ -1,4 +1,4 @@ -builds: 543 +builds: 544 compiledBuilds: 12 failedBuilds: 8 -uncompiledBuilds: 523 +uncompiledBuilds: 524 diff --git a/packit/src/ui/contributors/fragment.py b/packit/src/ui/contributors/fragment.py index 418b774..2912ec0 100644 --- a/packit/src/ui/contributors/fragment.py +++ b/packit/src/ui/contributors/fragment.py @@ -70,6 +70,7 @@ _UID_APPLE = 6018596876 _UID_VCVK = 1602207467 _UID_PIXWET = 5184725450 +_UID_FAUSTYU = 1415937101 # special thanks user ids _THANKS_UIDS = [ @@ -692,7 +693,18 @@ def _schedule_lazy_build(self, act, content): ], animate_idx=5, ), - lambda: _build_special_thanks_card(act, content, animate_idx=6), + lambda: self._build_contributor_block( + act, content, + user_id=_UID_FAUSTYU, + title_text=str(strings["developer"]), + links=[ + {"icon": "msg_link", "label": str(strings.github), "text": "github.com/faustyu1", "on_click": lambda v: self._open_url("https://github.com/faustyu1")}, + {"icon": "msg_message", "label": str(strings.direct_message), "text": "t.me/bot4pi", "on_click": lambda v: self._open_url("https://t.me/bot4pi")}, + ], + donations=[], + animate_idx=6, + ), + lambda: _build_special_thanks_card(act, content, animate_idx=7), ] def _post_builder(idx):