fix: commit forgotten files

This commit is contained in:
Patryk Hegenberg 2026-02-18 08:45:58 +01:00
parent fe6a1c6ee0
commit e57da88272
4 changed files with 48 additions and 1 deletions

View file

@ -11,6 +11,7 @@ android {
compileOptions { compileOptions {
sourceCompatibility = JavaVersion.VERSION_17 sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
isCoreLibraryDesugaringEnabled = true
} }
kotlinOptions { kotlinOptions {
@ -38,4 +39,5 @@ flutter {
dependencies { dependencies {
implementation("androidx.core:core-ktx:1.12.0") implementation("androidx.core:core-ktx:1.12.0")
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4")
} }

View file

@ -17,6 +17,8 @@ class Users extends Table {
TextColumn get inventorySettings => TextColumn get inventorySettings =>
text().map(const MapConverter()).nullable()(); text().map(const MapConverter()).nullable()();
TextColumn get avatarConfig => text().map(const MapConverter()).nullable()(); TextColumn get avatarConfig => text().map(const MapConverter()).nullable()();
TextColumn get trainingDays => text().map(const ListConverter()).nullable()();
TextColumn get notificationSettings => text().map(const MapConverter()).nullable()();
DateTimeColumn get lastSyncAt => dateTime().nullable()(); DateTimeColumn get lastSyncAt => dateTime().nullable()();
BoolColumn get isDirty => boolean().withDefault(const Constant(false))(); BoolColumn get isDirty => boolean().withDefault(const Constant(false))();

View file

@ -297,6 +297,14 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "3.1.3" version: "3.1.3"
dbus:
dependency: transitive
description:
name: dbus
sha256: d0c98dcd4f5169878b6cf8f6e0a52403a9dff371a3e2f019697accbf6f44a270
url: "https://pub.dev"
source: hosted
version: "0.7.12"
dio: dio:
dependency: "direct main" dependency: "direct main"
description: description:
@ -422,6 +430,30 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.0.0" version: "6.0.0"
flutter_local_notifications:
dependency: "direct main"
description:
name: flutter_local_notifications
sha256: ef41ae901e7529e52934feba19ed82827b11baa67336829564aeab3129460610
url: "https://pub.dev"
source: hosted
version: "18.0.1"
flutter_local_notifications_linux:
dependency: transitive
description:
name: flutter_local_notifications_linux
sha256: "8f685642876742c941b29c32030f6f4f6dacd0e4eaecb3efbb187d6a3812ca01"
url: "https://pub.dev"
source: hosted
version: "5.0.0"
flutter_local_notifications_platform_interface:
dependency: transitive
description:
name: flutter_local_notifications_platform_interface
sha256: "6c5b83c86bf819cdb177a9247a3722067dd8cc6313827ce7c77a4b238a26fd52"
url: "https://pub.dev"
source: hosted
version: "8.0.0"
flutter_localizations: flutter_localizations:
dependency: "direct main" dependency: "direct main"
description: flutter description: flutter
@ -742,7 +774,7 @@ packages:
source: hosted source: hosted
version: "2.2.0" version: "2.2.0"
path: path:
dependency: transitive dependency: "direct main"
description: description:
name: path name: path
sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
@ -1226,6 +1258,14 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "0.6.12" version: "0.6.12"
timezone:
dependency: "direct main"
description:
name: timezone
sha256: dd14a3b83cfd7cb19e7888f1cbc20f258b8d71b54c06f79ac585f14093a287d1
url: "https://pub.dev"
source: hosted
version: "0.10.1"
typed_data: typed_data:
dependency: transitive dependency: transitive
description: description:

View file

@ -13,6 +13,8 @@ dependencies:
sdk: flutter sdk: flutter
audioplayers: ^6.0.0 audioplayers: ^6.0.0
flutter_dotenv: ^5.1.0 flutter_dotenv: ^5.1.0
flutter_local_notifications: ^18.0.0
timezone: ^0.10.0
# State Management # State Management
flutter_riverpod: ^3.1.0 flutter_riverpod: ^3.1.0
@ -24,6 +26,7 @@ dependencies:
sqlite3_flutter_libs: ^0.5.20 sqlite3_flutter_libs: ^0.5.20
path_provider: ^2.1.3 path_provider: ^2.1.3
share_plus: ^7.2.1 share_plus: ^7.2.1
path: ^1.9.0
# Networking # Networking
dio: ^5.4.3+1 dio: ^5.4.3+1