Skip to content

Commit

Permalink
Merge pull request #16 from Dash-Kit/release/3.4.0
Browse files Browse the repository at this point in the history
Upgraded dependencies
  • Loading branch information
w3ggy authored Feb 16, 2023
2 parents fb6629e + 3bfce14 commit 72b3c9d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [3.4.0]
- Upgraded dependencies

## [3.3.0]
- Incremented the Flutter SDK version to 3.7.0

Expand Down
4 changes: 2 additions & 2 deletions lib/ui/widget/alice_call_list_item_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,15 @@ class AliceCallListItemWidget extends StatelessWidget {
if (status == -1) {
return AliceConstants.red;
} else if (status < 200) {
return Theme.of(context).textTheme.bodyText1?.color ?? Colors.green;
return Theme.of(context).textTheme.bodyLarge?.color ?? Colors.green;
} else if (status >= 200 && status < 300) {
return AliceConstants.green;
} else if (status >= 300 && status < 400) {
return AliceConstants.orange;
} else if (status >= 400 && status < 600) {
return AliceConstants.red;
} else {
return Theme.of(context).textTheme.bodyText1?.color ?? Colors.black;
return Theme.of(context).textTheme.bodyLarge?.color ?? Colors.black;
}
}

Expand Down
10 changes: 5 additions & 5 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ packages:
dependency: "direct main"
description:
name: dio
sha256: "7d328c4d898a61efc3cd93655a0955858e29a0aa647f0f9e02d59b3bb275e2e8"
sha256: "9fdbf71baeb250fc9da847f6cb2052196f62c19906a3657adfc18631a667d316"
url: "https://pub.dev"
source: hosted
version: "4.0.6"
version: "5.0.0"
ffi:
dependency: transitive
description:
Expand Down Expand Up @@ -215,10 +215,10 @@ packages:
dependency: "direct main"
description:
name: share_plus
sha256: e387077716f80609bb979cd199331033326033ecd1c8f200a90c5f57b1c9f55e
sha256: "8c6892037b1824e2d7e8f59d54b3105932899008642e6372e5079c6939b4b625"
url: "https://pub.dev"
source: hosted
version: "6.3.0"
version: "6.3.1"
share_plus_platform_interface:
dependency: transitive
description:
Expand Down Expand Up @@ -329,5 +329,5 @@ packages:
source: hosted
version: "0.2.0+3"
sdks:
dart: ">=2.18.0 <4.0.0"
dart: ">=2.18.0 <3.0.0"
flutter: ">=3.0.0"
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: alice_lightweight
description: Lightweight Alice version. Removed additional dependencies except dio.
version: 3.3.0
version: 3.4.0
homepage: https://github.com/jhomlala/alice

environment:
Expand All @@ -10,7 +10,7 @@ dependencies:
flutter:
sdk: flutter
http: ^0.13.5
dio: ^4.0.6
dio: ^5.0.0
rxdart: ^0.27.7
share_plus: ^6.3.0
path_provider: ^2.0.11
share_plus: ^6.3.1
path_provider: ^2.0.12

0 comments on commit 72b3c9d

Please sign in to comment.