Skip to content

Commit

Permalink
v1.0.8
Browse files Browse the repository at this point in the history
Merge pull request #457 from dreautall/develop
  • Loading branch information
dreautall authored Oct 12, 2024
2 parents ff1f58f + 08112ca commit d4d6df4
Show file tree
Hide file tree
Showing 9 changed files with 187 additions and 145 deletions.
1 change: 1 addition & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
<package android:name="by.belinvestbank"/>
<package android:name="ca.tangerine.clients.banking.app"/>
<package android:name="capitec.acuity.mobile.prod"/>
<package android:name="ch.cembra.cmf"/>
<package android:name="cl.android"/>
<package android:name="cl.bancochile.mi_banco"/>
<package android:name="cl.scotiabank.go"/>
Expand Down
25 changes: 24 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,32 @@ allprojects {
}

rootProject.buildDir = '../build'

// see https://github.com/flutter/flutter/issues/153281#issuecomment-2292201697
subprojects {
afterEvaluate { project ->
if (project.extensions.findByName("android") != null) {
Integer pluginCompileSdk = project.android.compileSdk
if (pluginCompileSdk != null && pluginCompileSdk < 31) {
project.logger.error(
"Warning: Overriding compileSdk version in Flutter plugin: "
+ project.name
+ " from "
+ pluginCompileSdk
+ " to 31 (to work around https://issuetracker.google.com/issues/199180389)."
+ "\nIf there is not a new version of " + project.name + ", consider filing an issue against "
+ project.name
+ " to increase their compileSdk to the latest (otherwise try updating to the latest version)."
)
project.android {
compileSdk 31
}
}
}
}

project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
project.evaluationDependsOn(":app")
}

tasks.register("clean", Delete) {
Expand Down
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/361.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- Maintenance release to upgrade flutter, package versions etc.
- Fix for notification listener handling
- Add day in transaction page
- Text fields are now initially capitalized
6 changes: 3 additions & 3 deletions fastlane/metadata/android/fr-FR/full_description.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Waterfly III est une application non officielle pour votre propre instance de Firefly III, un gestionnaire de finances gratuit et open source.

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 !
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!

Fonctionnalités:

Expand All @@ -9,9 +9,9 @@ Fonctionnalités:
- 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
- Prise en charge des tirelires (afficher et ajouter de l'argent)
- 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)
- Entièrement open source : https://github.com/dreautall/waterfly-iii
- Entièrement open source: https://github.com/dreautall/waterfly-iii
- Pas de publicité ou de trackers

Contribution :
Contribution:

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.
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.7
versionCode=333
versionName=1.0.8
versionCode=361
2 changes: 1 addition & 1 deletion lib/pages/home/transactions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ class _HomeTransactionsState extends State<HomeTransactions>
Padding(
padding: const EdgeInsets.fromLTRB(16, 16, 0, 8),
child: Text(
DateFormat.yMd().format(date),
DateFormat.yMMMMEEEEd().format(date),
style: Theme.of(context).textTheme.labelLarge,
),
),
Expand Down
1 change: 1 addition & 0 deletions lib/widgets/autocompletetext.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ class AutoCompleteText<T extends Object> extends StatelessWidget {
}
Actions.invoke(ctx, const DismissIntent());
},
textCapitalization: TextCapitalization.sentences,
),
optionsViewBuilder: (BuildContext context,
void Function(T) onOptionSelected, Iterable<T> options) =>
Expand Down
Loading

0 comments on commit d4d6df4

Please sign in to comment.