-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Revert "Cw 397 chatwoot live support (#1011)" This reverts commit af9b5ff. * Add Version 4.8.1 configs * Update macos build version [skip ci]
- Loading branch information
1 parent
f4fad4d
commit ad6edd9
Showing
68 changed files
with
274 additions
and
789 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
Monero background syncing! See https://guides.cakewallet.com/docs/monero/#background-syncing | ||
Cake 2FA access control settings! See https://guides.cakewallet.com/docs/advanced-features/authentication/#cake-2fa-presets-and-access-control-settings | ||
Support Monero node proxy | ||
UI improvements when sending to Address Book entry | ||
Allow renaming Monero account names | ||
Send templates now support multiple recipients (try using to make Monero change) | ||
Onramper improvements | ||
Scan node QR codes (for Umbrel) | ||
Bug fixes | ||
Fiat Onramp improvements |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
Ethereum! Store ETH and ERC-20 tokens | ||
Monero background syncing! See https://guides.cakewallet.com/docs/monero/#background-syncing | ||
Cake 2FA access control settings! See https://guides.cakewallet.com/docs/advanced-features/authentication/#cake-2fa-presets-and-access-control-settings | ||
Support Monero node proxy | ||
UI improvements when sending to Address Book entry | ||
Allow renaming Monero/Haven account names | ||
Send templates now support multiple recipients (try using to make Monero change) | ||
Onramper improvements | ||
Scan node QR codes (for Umbrel) | ||
Bug fixes | ||
Fiat Onramp improvements |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,23 @@ | ||
import 'package:flutter_secure_storage/flutter_secure_storage.dart'; | ||
import 'package:cw_core/cake_hive.dart'; | ||
import 'package:hive/hive.dart'; | ||
|
||
Future<List<int>> getEncryptionKey( | ||
{required String forKey, required FlutterSecureStorage secureStorage}) async { | ||
final stringifiedKey = await secureStorage.read(key: 'transactionDescriptionsBoxKey'); | ||
final stringifiedKey = | ||
await secureStorage.read(key: 'transactionDescriptionsBoxKey'); | ||
List<int> key; | ||
|
||
if (stringifiedKey == null) { | ||
key = CakeHive.generateSecureKey(); | ||
key = Hive.generateSecureKey(); | ||
final keyStringified = key.join(','); | ||
await secureStorage.write(key: 'transactionDescriptionsBoxKey', value: keyStringified); | ||
await secureStorage.write( | ||
key: 'transactionDescriptionsBoxKey', value: keyStringified); | ||
} else { | ||
key = stringifiedKey.split(',').map((i) => int.parse(i)).toList(); | ||
key = stringifiedKey | ||
.split(',') | ||
.map((i) => int.parse(i)) | ||
.toList(); | ||
} | ||
|
||
return key; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.