chore: change links

This commit is contained in:
AlexeyZavar 2025-05-20 22:59:22 +03:00
parent 3a9899529a
commit 3c7f3e8740
5 changed files with 6 additions and 6 deletions

View file

@ -33,7 +33,7 @@
#### Официальный вариант #### Официальный вариант
Вы можете скачать готовый бинарный файл со вкладки [Releases](https://github.com/AyuGram/AyuGramDesktop/releases) или из Вы можете скачать готовый бинарный файл со вкладки [Releases](https://github.com/AyuGram/AyuGramDesktop/releases) или из
[Телеграм чата](https://t.me/ayugramchat/12788). [Телеграм канала](https://t.me/AyuGramReleases).
#### Winget #### Winget

View file

@ -34,7 +34,7 @@ And many more. Check out our [Documentation](https://docs.ayugram.one/desktop/).
#### Official #### Official
You can download prebuilt Windows binary from [Releases tab](https://github.com/AyuGram/AyuGramDesktop/releases) or from You can download prebuilt Windows binary from [Releases tab](https://github.com/AyuGram/AyuGramDesktop/releases) or from
the [Telegram topic](https://t.me/ayugramchat/12788). the [Telegram channel](https://t.me/AyuGramReleases).
#### Winget #### Winget

View file

@ -58,12 +58,12 @@ void AboutBox::prepare() {
addButton(tr::lng_close(), [this] { closeBox(); }); addButton(tr::lng_close(), [this] { closeBox(); });
addLeftButton( addLeftButton(
rpl::single(QString("@ayugramchat")), rpl::single(QString("@AyuGramReleases")),
[this, controller = _controller] [this, controller = _controller]
{ {
closeBox(); closeBox();
controller->showPeerByLink(Window::PeerByLinkInfo{ controller->showPeerByLink(Window::PeerByLinkInfo{
.usernameOrId = QString("ayugramchat"), .usernameOrId = QString("ayugramreleases"),
}); });
}); });

View file

@ -1620,7 +1620,7 @@ void UpdateApplication() {
} else if (KSandbox::isSnap()) { } else if (KSandbox::isSnap()) {
return "https://snapcraft.io/telegram-desktop"; return "https://snapcraft.io/telegram-desktop";
} }
return "https://t.me/ayugramchat/12788"; return "https://t.me/AyuGramReleases";
#endif // OS_WIN_STORE || OS_MAC_STORE #endif // OS_WIN_STORE || OS_MAC_STORE
}(); }();
UrlClickHandler::Open(url); UrlClickHandler::Open(url);

View file

@ -1159,7 +1159,7 @@ void CheckReactionNotificationSchedule(
} }
[[nodiscard]] TextWithEntities UnsupportedMessageText() { [[nodiscard]] TextWithEntities UnsupportedMessageText() {
const auto siteLink = u"https://t.me/ayugramchat/12788"_q; const auto siteLink = u"https://t.me/AyuGramReleases"_q;
auto result = TextWithEntities{ auto result = TextWithEntities{
tr::lng_message_unsupported(tr::now, lt_link, siteLink).replace("Telegram", "AyuGram") tr::lng_message_unsupported(tr::now, lt_link, siteLink).replace("Telegram", "AyuGram")
}; };