Skip to content

Commit

Permalink
Merge pull request #524 from dreautall/bug/523-in-master
Browse files Browse the repository at this point in the history
v1.0.12
  • Loading branch information
dreautall authored Feb 7, 2025
2 parents b9d4c73 + d642146 commit 345da23
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 24 deletions.
11 changes: 10 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.dreautall.waterflyiii">
<application android:label="Waterfly III" android:name="${applicationName}" android:icon="@mipmap/ic_launcher" android:enableOnBackInvokedCallback="true" android:usesCleartextTraffic="true" android:networkSecurityConfig="@xml/network_security_config">
<activity android:name=".MainActivity" android:exported="true" android:launchMode="singleTop" android:taskAffinity="" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:exported="true"
android:fullBackupContent="@xml/backup_rules"
android:hardwareAccelerated="true"
android:launchMode="singleTop"
android:taskAffinity=""
android:theme="@style/LaunchTheme"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
Expand Down
6 changes: 6 additions & 0 deletions android/app/src/main/res/xml/backup_rules.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
<exclude
domain="sharedpref"
path="FlutterSecureStorage" />
</full-backup-content>
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/416.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- Fixes for Firefly III v6.2.0
- Piggybank feature requires Firefly III v6.2.2 to work due to a bug in Firefly III.
- The new native currency feature has not been tested at all.
- Hotfix for login issues.
4 changes: 2 additions & 2 deletions fastlane/metadata/android/version.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
versionName=1.0.10
versionCode=382
versionName=1.0.12
versionCode=416
5 changes: 4 additions & 1 deletion lib/auth.dart
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,10 @@ class FireflyService with ChangeNotifier {
late TimeZoneHandler tzHandler;

final FlutterSecureStorage storage = const FlutterSecureStorage(
aOptions: AndroidOptions(),
aOptions: AndroidOptions(
encryptedSharedPreferences: true,
resetOnError: true,
),
);

final Logger log = Logger("Auth.FireflyService");
Expand Down
36 changes: 18 additions & 18 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -445,50 +445,50 @@ packages:
dependency: "direct main"
description:
name: flutter_secure_storage
sha256: f7eceb0bc6f4fd0441e29d43cab9ac2a1c5ffd7ea7b64075136b718c46954874
sha256: "9cad52d75ebc511adfae3d447d5d13da15a55a92c9410e50f67335b6d21d16ea"
url: "https://pub.dev"
source: hosted
version: "10.0.0-beta.4"
flutter_secure_storage_darwin:
version: "9.2.4"
flutter_secure_storage_linux:
dependency: transitive
description:
name: flutter_secure_storage_darwin
sha256: f226f2a572bed96bc6542198ebaec227150786e34311d455a7e2d3d06d951845
name: flutter_secure_storage_linux
sha256: bf7404619d7ab5c0a1151d7c4e802edad8f33535abfbeff2f9e1fe1274e2d705
url: "https://pub.dev"
source: hosted
version: "0.1.0"
flutter_secure_storage_linux:
version: "1.2.2"
flutter_secure_storage_macos:
dependency: transitive
description:
name: flutter_secure_storage_linux
sha256: "9b4b73127e857cd3117d43a70fa3dddadb6e0b253be62e6a6ab85caa0742182c"
name: flutter_secure_storage_macos
sha256: "6c0a2795a2d1de26ae202a0d78527d163f4acbb11cde4c75c670f3a0fc064247"
url: "https://pub.dev"
source: hosted
version: "2.0.1"
version: "3.1.3"
flutter_secure_storage_platform_interface:
dependency: transitive
description:
name: flutter_secure_storage_platform_interface
sha256: "8ceea1223bee3c6ac1a22dabd8feefc550e4729b3675de4b5900f55afcb435d6"
sha256: cf91ad32ce5adef6fba4d736a542baca9daf3beac4db2d04be350b87f69ac4a8
url: "https://pub.dev"
source: hosted
version: "2.0.1"
version: "1.1.2"
flutter_secure_storage_web:
dependency: transitive
description:
name: flutter_secure_storage_web
sha256: "4c3f233e739545c6cb09286eeec1cc4744138372b985113acc904f7263bef517"
sha256: f4ebff989b4f07b2656fb16b47852c0aab9fed9b4ec1c70103368337bc1886a9
url: "https://pub.dev"
source: hosted
version: "2.0.0"
version: "1.2.1"
flutter_secure_storage_windows:
dependency: transitive
description:
name: flutter_secure_storage_windows
sha256: ff32af20f70a8d0e59b2938fc92de35b54a74671041c814275afd80e27df9f21
sha256: b20b07cb5ed4ed74fc567b78a72936203f587eba460af1df11281c9326cd3709
url: "https://pub.dev"
source: hosted
version: "4.0.0"
version: "3.1.2"
flutter_sharing_intent:
dependency: "direct main"
description:
Expand Down Expand Up @@ -703,10 +703,10 @@ packages:
dependency: transitive
description:
name: js
sha256: c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf
sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
url: "https://pub.dev"
source: hosted
version: "0.7.1"
version: "0.6.7"
json_annotation:
dependency: "direct main"
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: waterflyiii
description: Waterfly III, a mobile client for Firefly III
publish_to: 'none'

version: 1.0.10
version: 1.0.12

environment:
sdk: '>=3.0.0 <4.0.0'
Expand All @@ -16,7 +16,7 @@ dependencies:
intl: any
path_provider: ^2.1.4
collection: ^1.18.0
flutter_secure_storage: ^10.0.0-beta.4
flutter_secure_storage: ^9.2.4
provider: ^6.1.2
shared_preferences: ^2.3.2
chopper: ^8.0.2
Expand Down

0 comments on commit 345da23

Please sign in to comment.