diff --git a/README-RU.md b/README-RU.md index b53c011d0c..2713879b4b 100644 --- a/README-RU.md +++ b/README-RU.md @@ -33,7 +33,7 @@ #### Официальный вариант Вы можете скачать готовый бинарный файл со вкладки [Releases](https://github.com/AyuGram/AyuGramDesktop/releases) или из -[Телеграм чата](https://t.me/ayugramchat/12788). +[Телеграм канала](https://t.me/AyuGramReleases). #### Winget diff --git a/README.md b/README.md index 03e151652e..0057258fd8 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ And many more. Check out our [Documentation](https://docs.ayugram.one/desktop/). #### Official 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 diff --git a/Telegram/SourceFiles/boxes/about_box.cpp b/Telegram/SourceFiles/boxes/about_box.cpp index 93015c97a5..71f94cdbaa 100644 --- a/Telegram/SourceFiles/boxes/about_box.cpp +++ b/Telegram/SourceFiles/boxes/about_box.cpp @@ -58,12 +58,12 @@ void AboutBox::prepare() { addButton(tr::lng_close(), [this] { closeBox(); }); addLeftButton( - rpl::single(QString("@ayugramchat")), + rpl::single(QString("@AyuGramReleases")), [this, controller = _controller] { closeBox(); controller->showPeerByLink(Window::PeerByLinkInfo{ - .usernameOrId = QString("ayugramchat"), + .usernameOrId = QString("ayugramreleases"), }); }); diff --git a/Telegram/SourceFiles/core/update_checker.cpp b/Telegram/SourceFiles/core/update_checker.cpp index 0768aad93a..ddd8024387 100644 --- a/Telegram/SourceFiles/core/update_checker.cpp +++ b/Telegram/SourceFiles/core/update_checker.cpp @@ -1620,7 +1620,7 @@ void UpdateApplication() { } else if (KSandbox::isSnap()) { return "https://snapcraft.io/telegram-desktop"; } - return "https://t.me/ayugramchat/12788"; + return "https://t.me/AyuGramReleases"; #endif // OS_WIN_STORE || OS_MAC_STORE }(); UrlClickHandler::Open(url); diff --git a/Telegram/SourceFiles/history/history_item_helpers.cpp b/Telegram/SourceFiles/history/history_item_helpers.cpp index 361fe9fe65..050dee1005 100644 --- a/Telegram/SourceFiles/history/history_item_helpers.cpp +++ b/Telegram/SourceFiles/history/history_item_helpers.cpp @@ -1159,7 +1159,7 @@ void CheckReactionNotificationSchedule( } [[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{ tr::lng_message_unsupported(tr::now, lt_link, siteLink).replace("Telegram", "AyuGram") };