flutter fix

This commit is contained in:
John Smith 2023-05-29 17:40:49 -07:00
parent 8651e39ca8
commit 9d01b0e928
4 changed files with 16 additions and 16 deletions

2
external/cursive vendored

@ -1 +1 @@
Subproject commit 250d35f37f526221539c8d59d7a2056803bf0010 Subproject commit 7df15342b1f08b6b7a5cdc7aa8f97342d2e4ad7b

View File

@ -60,14 +60,14 @@ IDI_APP_ICON ICON "resources\\app_icon.ico"
// Version // Version
// //
#ifdef FLUTTER_BUILD_NUMBER #if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD)
#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER #define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD
#else #else
#define VERSION_AS_NUMBER 1,0,0 #define VERSION_AS_NUMBER 1,0,0,0
#endif #endif
#ifdef FLUTTER_BUILD_NAME #if defined(FLUTTER_VERSION)
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME #define VERSION_AS_STRING FLUTTER_VERSION
#else #else
#define VERSION_AS_STRING "1.0.0" #define VERSION_AS_STRING "1.0.0"
#endif #endif

View File

@ -66,8 +66,8 @@ Future<VeilidConfig> getDefaultVeilidConfig(String programName) async {
alwaysUseInsecureStorage: false, alwaysUseInsecureStorage: false,
directory: "", directory: "",
delete: false, delete: false,
deviceEncryptionKey: "", deviceEncryptionKeyPassword: "",
newDeviceEncryptionKey: null, newDeviceEncryptionKeyPassword: null,
), ),
tableStore: VeilidConfigTableStore( tableStore: VeilidConfigTableStore(
directory: kIsWeb directory: kIsWeb

View File

@ -828,16 +828,16 @@ class VeilidConfigProtectedStore {
bool alwaysUseInsecureStorage; bool alwaysUseInsecureStorage;
String directory; String directory;
bool delete; bool delete;
String deviceEncryptionKey; String deviceEncryptionKeyPassword;
String? newDeviceEncryptionKey; String? newDeviceEncryptionKeyPassword;
VeilidConfigProtectedStore( VeilidConfigProtectedStore(
{required this.allowInsecureFallback, {required this.allowInsecureFallback,
required this.alwaysUseInsecureStorage, required this.alwaysUseInsecureStorage,
required this.directory, required this.directory,
required this.delete, required this.delete,
required this.deviceEncryptionKey, required this.deviceEncryptionKeyPassword,
String? newDeviceEncryptionKey}); String? newDeviceEncryptionKeyPassword});
Map<String, dynamic> toJson() { Map<String, dynamic> toJson() {
return { return {
@ -845,8 +845,8 @@ class VeilidConfigProtectedStore {
'always_use_insecure_storage': alwaysUseInsecureStorage, 'always_use_insecure_storage': alwaysUseInsecureStorage,
'directory': directory, 'directory': directory,
'delete': delete, 'delete': delete,
'device_encryption_key': deviceEncryptionKey, 'device_encryption_key_password': deviceEncryptionKeyPassword,
'new_device_encryption_key': newDeviceEncryptionKey, 'new_device_encryption_key': newDeviceEncryptionKeyPassword,
}; };
} }
@ -855,8 +855,8 @@ class VeilidConfigProtectedStore {
alwaysUseInsecureStorage = json['always_use_insecure_storage'], alwaysUseInsecureStorage = json['always_use_insecure_storage'],
directory = json['directory'], directory = json['directory'],
delete = json['delete'], delete = json['delete'],
deviceEncryptionKey = json['device_encryption_key'], deviceEncryptionKeyPassword = json['device_encryption_key_password'],
newDeviceEncryptionKey = json['new_device_encryption_key']; newDeviceEncryptionKeyPassword = json['new_device_encryption_key_password'];
} }
//////////// ////////////