generic-enhancements (#1886)

* Finishing updating docs and community links

* Add missing images
This commit is contained in:
tuxsudo 2024-12-16 18:08:56 -05:00 committed by GitHub
parent ae80fb3b55
commit 6499aa2d6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 97 additions and 101 deletions

View file

@ -4,7 +4,7 @@ contact_links:
url: https://github.com/cake-tech/cake_wallet/discussions/new?category=feature-requests url: https://github.com/cake-tech/cake_wallet/discussions/new?category=feature-requests
about: Suggest an idea for Cake Wallet about: Suggest an idea for Cake Wallet
- name: Not sure where to start? - name: Not sure where to start?
url: https://guides.cakewallet.com url: https://docs.cakewallet.com
about: Start by reading checking out the guides! about: Start by reading checking out the guides!
- name: Need help? - name: Need help?
url: https://cakewallet.com/#contact url: https://cakewallet.com/#contact

BIN
assets/images/discord.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
assets/images/discourse.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

View file

@ -384,7 +384,7 @@ class CryptoBalanceWidget extends StatelessWidget {
behavior: HitTestBehavior.opaque, behavior: HitTestBehavior.opaque,
onTap: () => launchUrl( onTap: () => launchUrl(
Uri.parse( Uri.parse(
"https://guides.cakewallet.com/docs/cryptos/litecoin/#mweb"), "https://docs.cakewallet.com/cryptos/litecoin/#mweb"),
mode: LaunchMode.externalApplication, mode: LaunchMode.externalApplication,
), ),
child: Text( child: Text(

View file

@ -25,7 +25,7 @@ class WelcomePage extends BasePage {
@override @override
Widget trailing(BuildContext context) { Widget trailing(BuildContext context) {
final Uri _url = Uri.parse('https://guides.cakewallet.com/docs/basic-features/basic-features/'); final Uri _url = Uri.parse('https://docs.cakewallet.com/get-started/setup/create-first-wallet/');
return IconButton( return IconButton(
icon: Icon(Icons.info_outline), icon: Icon(Icons.info_outline),
onPressed: () async { onPressed: () async {

View file

@ -17,13 +17,16 @@ abstract class SupportViewModelBase with Store {
icon: 'assets/images/support_icon.png', icon: 'assets/images/support_icon.png',
linkTitle: 'support@cakewallet.com', linkTitle: 'support@cakewallet.com',
link: 'mailto:support@cakewallet.com'), link: 'mailto:support@cakewallet.com'),
if (!isMoneroOnly)
LinkListItem( LinkListItem(
title: 'Website', title: 'Website',
icon: 'assets/images/global.png', icon: 'assets/images/global.png',
linkTitle: 'cakewallet.com', linkTitle: 'cakewallet.com',
link: 'https://cakewallet.com'), link: 'https://cakewallet.com'),
if (!isMoneroOnly) LinkListItem(
title: 'Forum',
icon: 'assets/images/discourse.png',
linkTitle: 'forum.cakewallet.com',
link: 'https://forum.cakewallet.com'),
LinkListItem( LinkListItem(
title: 'GitHub', title: 'GitHub',
icon: 'assets/images/github.png', icon: 'assets/images/github.png',
@ -87,7 +90,7 @@ abstract class SupportViewModelBase with Store {
lightIcon: 'assets/images/dfx_light.png', lightIcon: 'assets/images/dfx_light.png',
linkTitle: 'support@dfx.swiss', linkTitle: 'support@dfx.swiss',
link: 'mailto:support@dfx.swiss'), link: 'mailto:support@dfx.swiss'),
if (!isMoneroOnly) ... [ if (!isMoneroOnly) ...[
LinkListItem( LinkListItem(
title: 'MoonPay', title: 'MoonPay',
icon: 'assets/images/moonpay.png', icon: 'assets/images/moonpay.png',
@ -100,12 +103,6 @@ abstract class SupportViewModelBase with Store {
linkTitle: S.current.submit_request, linkTitle: S.current.submit_request,
link: 'https://robinhood.com/contact') link: 'https://robinhood.com/contact')
] ]
//LinkListItem(
// title: 'Yat',
// icon: 'assets/images/yat_mini_logo.png',
// hasIconColor: true,
// linkTitle: 'support@y.at',
// link: 'mailto:support@y.at')
]; ];
final docsUrl = 'https://docs.cakewallet.com'; final docsUrl = 'https://docs.cakewallet.com';
@ -114,8 +111,7 @@ abstract class SupportViewModelBase with Store {
var supportUrl = var supportUrl =
"https://app.chatwoot.com/widget?website_token=${secrets.chatwootWebsiteToken}&locale=${locale}"; "https://app.chatwoot.com/widget?website_token=${secrets.chatwootWebsiteToken}&locale=${locale}";
if (authToken.isNotEmpty) if (authToken.isNotEmpty) supportUrl += "&cw_conversation=$authToken";
supportUrl += "&cw_conversation=$authToken";
return supportUrl; return supportUrl;
} }