Skip to content

Commit d4d6df4

Browse files
authored
v1.0.8
Merge pull request #457 from dreautall/develop
2 parents ff1f58f + 08112ca commit d4d6df4

File tree

9 files changed

+187
-145
lines changed

9 files changed

+187
-145
lines changed

android/app/src/main/AndroidManifest.xml

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@
8989
<package android:name="by.belinvestbank"/>
9090
<package android:name="ca.tangerine.clients.banking.app"/>
9191
<package android:name="capitec.acuity.mobile.prod"/>
92+
<package android:name="ch.cembra.cmf"/>
9293
<package android:name="cl.android"/>
9394
<package android:name="cl.bancochile.mi_banco"/>
9495
<package android:name="cl.scotiabank.go"/>

android/build.gradle

+24-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,32 @@ allprojects {
66
}
77

88
rootProject.buildDir = '../build'
9+
10+
// see https://github.com/flutter/flutter/issues/153281#issuecomment-2292201697
911
subprojects {
12+
afterEvaluate { project ->
13+
if (project.extensions.findByName("android") != null) {
14+
Integer pluginCompileSdk = project.android.compileSdk
15+
if (pluginCompileSdk != null && pluginCompileSdk < 31) {
16+
project.logger.error(
17+
"Warning: Overriding compileSdk version in Flutter plugin: "
18+
+ project.name
19+
+ " from "
20+
+ pluginCompileSdk
21+
+ " to 31 (to work around https://issuetracker.google.com/issues/199180389)."
22+
+ "\nIf there is not a new version of " + project.name + ", consider filing an issue against "
23+
+ project.name
24+
+ " to increase their compileSdk to the latest (otherwise try updating to the latest version)."
25+
)
26+
project.android {
27+
compileSdk 31
28+
}
29+
}
30+
}
31+
}
32+
1033
project.buildDir = "${rootProject.buildDir}/${project.name}"
11-
project.evaluationDependsOn(':app')
34+
project.evaluationDependsOn(":app")
1235
}
1336

1437
tasks.register("clean", Delete) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- Maintenance release to upgrade flutter, package versions etc.
2+
- Fix for notification listener handling
3+
- Add day in transaction page
4+
- Text fields are now initially capitalized
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Waterfly III est une application non officielle pour votre propre instance de Firefly III, un gestionnaire de finances gratuit et open source.
22

3-
Cette application nécessite une instance de Firefly III autohébergée sur votre propre serveur, veuillez visiter https://www.firefly-iiii.org/ pour plus d'informations sur ce logiciel. Il ne s'agit que d'une application cliente qui ne peut pas fonctionner de manière autonome !
3+
Cette application nécessite une instance de Firefly III autohébergée sur votre propre serveur, veuillez visiter https://www.firefly-iiii.org/ pour plus d'informations sur ce logiciel. Il ne s'agit que d'une application cliente qui ne peut pas fonctionner de manière autonome!
44

55
Fonctionnalités:
66

@@ -9,9 +9,9 @@ Fonctionnalités:
99
- Ajouter et modifier des opérations avec saisie semi-automatique, y compris avec pièces jointes, opérations fractionnées et prise en charge de plusieurs devises
1010
- Prise en charge des tirelires (afficher et ajouter de l'argent)
1111
- Service d'écoute des notifications pour créer facilement de nouvelles transactions en fonction des notifications entrantes (par exemple, depuis Google Pay ou votre application bancaire)
12-
- Entièrement open source : https://github.com/dreautall/waterfly-iii
12+
- Entièrement open source: https://github.com/dreautall/waterfly-iii
1313
- Pas de publicité ou de trackers
1414

15-
Contribution :
15+
Contribution:
1616

1717
Si vous rencontrez un bug ou que vous souhaitez une fonctionnalité, n'hésitez pas à donner votre avis sur le Play Store, envoyez-moi un e-mail ou ouvrez un ticket sur GitHub.

fastlane/metadata/android/version.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
versionName=1.0.7
2-
versionCode=333
1+
versionName=1.0.8
2+
versionCode=361

lib/pages/home/transactions.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ class _HomeTransactionsState extends State<HomeTransactions>
682682
Padding(
683683
padding: const EdgeInsets.fromLTRB(16, 16, 0, 8),
684684
child: Text(
685-
DateFormat.yMd().format(date),
685+
DateFormat.yMMMMEEEEd().format(date),
686686
style: Theme.of(context).textTheme.labelLarge,
687687
),
688688
),

lib/widgets/autocompletetext.dart

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ class AutoCompleteText<T extends Object> extends StatelessWidget {
8181
}
8282
Actions.invoke(ctx, const DismissIntent());
8383
},
84+
textCapitalization: TextCapitalization.sentences,
8485
),
8586
optionsViewBuilder: (BuildContext context,
8687
void Function(T) onOptionSelected, Iterable<T> options) =>

0 commit comments

Comments
 (0)