Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packit/.elyxbuilder/stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
builds: 543
builds: 544
compiledBuilds: 12
failedBuilds: 8
uncompiledBuilds: 523
uncompiledBuilds: 524
14 changes: 13 additions & 1 deletion packit/src/ui/contributors/fragment.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
_UID_APPLE = 6018596876
_UID_VCVK = 1602207467
_UID_PIXWET = 5184725450
_UID_FAUSTYU = 1415937101

# special thanks user ids
_THANKS_UIDS = [
Expand Down Expand Up @@ -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):
Expand Down
Loading