refactor: Redirect to new website

This commit is contained in:
Christian Kußowski 2025-10-24 07:47:52 +02:00
commit 7b8059466b
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
58 changed files with 23 additions and 325 deletions

View file

@ -20,13 +20,13 @@ abstract class AppConfig {
static const double borderRadius = 18.0;
static const double columnWidth = 360.0;
static const String website = 'https://fluffychat.im';
static const String website = 'https://fluffy.chat';
static const String enablePushTutorial =
'https://github.com/krille-chan/fluffychat/wiki/Push-Notifications-without-Google-Services';
'https://fluffy.chat/faq/#push_without_google_services';
static const String encryptionTutorial =
'https://github.com/krille-chan/fluffychat/wiki/How-to-use-end-to-end-encryption-in-FluffyChat';
'https://fluffy.chat/faq/#how_to_use_end_to_end_encryption';
static const String startChatTutorial =
'https://github.com/krille-chan/fluffychat/wiki/How-to-Find-Users-in-FluffyChat';
'https://fluffy.chat/faq/#how_do_i_find_other_users';
static const String appId = 'im.fluffychat.FluffyChat';
static const String appOpenUrlScheme = 'im.fluffychat';
@ -34,8 +34,7 @@ abstract class AppConfig {
'https://github.com/krille-chan/fluffychat';
static const String supportUrl =
'https://github.com/krille-chan/fluffychat/issues';
static const String changelogUrl =
'https://github.com/krille-chan/fluffychat/blob/main/CHANGELOG.md';
static const String changelogUrl = 'https://fluffy.chat/en/changelog/';
static const String donationUrl = 'https://ko-fi.com/krille';
static const Set<String> defaultReactions = {'👍', '❤️', '😂', '😮', '😢'};
@ -54,7 +53,7 @@ abstract class AppConfig {
static final Uri privacyUrl = Uri(
scheme: 'https',
host: 'github.com',
path: '/krille-chan/fluffychat/blob/main/PRIVACY.md',
host: 'fluffy.chat',
path: '/en/privacy',
);
}