Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ios/Runner/RecordTransactionIntent.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ struct RecordTransactionIntent: AppIntent {
static var openAppWhenRun = false

func perform() async throws -> some IntentResult & ProvidesDialog {
let tx = RecordedTransaction(type: .expense, amount: amount, fromAccount: account, category: category, title: title, notes: notes)
let tx = RecordedTransaction(type: .expense, amount: amount, title: title, fromAccount: account, category: category, notes: notes)
try RecordedTransactionService.append(tx)
return .result(dialog: "Expense recorded ✅")
}
Expand Down
12 changes: 6 additions & 6 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -618,10 +618,10 @@ packages:
dependency: "direct main"
description:
name: flutter_local_notifications
sha256: "76cd20bcfa72fabe50ea27eeaf165527f446f55d3033021462084b87805b4cac"
sha256: "2b50e938a275e1ad77352d6a25e25770f4130baa61eaf02de7a9a884680954ad"
url: "https://pub.dev"
source: hosted
version: "20.0.0"
version: "20.1.0"
flutter_local_notifications_linux:
dependency: transitive
description:
Expand All @@ -642,10 +642,10 @@ packages:
dependency: transitive
description:
name: flutter_local_notifications_windows
sha256: "7ddd964fa85b6a23e96956c5b63ef55cdb9e5947b71b95712204db42ad46da61"
sha256: e97a1a3016512437d9c0b12fae7d1491c3c7b9aa7f03a69b974308840656b02a
url: "https://pub.dev"
source: hosted
version: "2.0.0"
version: "2.0.1"
flutter_localizations:
dependency: "direct main"
description: flutter
Expand Down Expand Up @@ -1233,10 +1233,10 @@ packages:
dependency: "direct main"
description:
name: moment_dart
sha256: "04599f4f21a577debfd666249b73f91c89b2e11c864b857c2ef63cada0a84ddb"
sha256: c868448a4813e57d07a2a236ea010a4960311895b1166aeaf7a8e0750c2cb0dd
url: "https://pub.dev"
source: hosted
version: "5.3.0+1"
version: "5.3.1"
nm:
dependency: transitive
description:
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A personal finance managing app

publish_to: "none" # Remove this line if you wish to publish to pub.dev

version: "0.19.0+322"
version: "0.19.0+323"

environment:
sdk: ">=3.10.0 <4.0.0"
Expand All @@ -28,7 +28,7 @@ dependencies:
flutter_app_group_directory: ^1.1.0
flutter_contacts: ^1.1.9+2
flutter_dynamic_icon_plus: ^1.4.0
flutter_local_notifications: ^20.0.0
flutter_local_notifications: ^20.1.0
flutter_localizations:
sdk: flutter
flutter_map: ^8.2.2
Expand Down Expand Up @@ -56,7 +56,7 @@ dependencies:
markdown: ^7.3.0
markdown_quill: ^4.3.0
material_symbols_icons: ^4.2906.0
moment_dart: ^5.3.0+1
moment_dart: ^5.3.1
objectbox: ^5.1.0
objectbox_flutter_libs: ^5.1.0
open_app_file: ^4.0.4
Expand Down