Skip to content

Commit 9e1465c

Browse files
committed
Increment pubspec.yaml version numbers, update README.md
1 parent 8bffd93 commit 9e1465c

File tree

6 files changed

+31
-17
lines changed

6 files changed

+31
-17
lines changed

README.md

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Follow these steps to the coolest experience in error handling
123123
### Add dependency
124124
```yaml
125125
dependencies:
126-
talker: ^4.4.1
126+
talker: ^4.4.2
127127
```
128128
129129
### Easy to use
@@ -294,7 +294,7 @@ Talker Flutter is an extension for the Dart Talker package that adds extra funct
294294
### Add dependency
295295
```yaml
296296
dependencies:
297-
talker_flutter: ^4.4.1
297+
talker_flutter: ^4.4.2
298298
```
299299
300300
### Setup
@@ -522,7 +522,7 @@ Follow these steps to use this package
522522
### Add dependency
523523
```yaml
524524
dependencies:
525-
talker_dio_logger: ^4.4.1
525+
talker_dio_logger: ^4.4.2
526526
```
527527
528528
### Usage
@@ -543,11 +543,11 @@ dio.interceptors.add(
543543

544544
## Customization
545545

546-
To provide hight usage exp here are a lot of settings and customization fields in TalkerDioLoggerSettings. You can setup all wat you want. For example:
546+
To provide height usage exp here are a lot of settings and customization fields in TalkerDioLoggerSettings. You can setup all wat you want. For example:
547547

548548
### Off/on http request or reposnse logs
549549

550-
You can toggle reponse / request printing and headers including
550+
You can toggle response / request printing and headers including
551551

552552
```dart
553553
final dio = Dio();
@@ -618,7 +618,7 @@ Follow these steps to use this package
618618
### Add dependency
619619
```yaml
620620
dependencies:
621-
talker_bloc_logger: ^4.4.1
621+
talker_bloc_logger: ^4.4.2
622622
```
623623
624624
### Usage
@@ -632,7 +632,7 @@ Bloc.observer = TalkerBlocObserver();
632632

633633
## Customization
634634

635-
To provide hight usage exp here are a lot of settings and customization fields in TalkerBlocLoggerSettings. You can setup all wat you want. For example:
635+
To provide height usage exp here are a lot of settings and customization fields in TalkerBlocLoggerSettings. You can setup all wat you want. For example:
636636

637637
### Off/on events, transitions, changes, creation, close
638638

@@ -681,7 +681,7 @@ Bloc.observer = TalkerBlocObserver(
681681
```
682682

683683
## Using with Talker!
684-
You can add your talker instance for TalkerBlocLogger if your Appication already uses Talker.
684+
You can add your talker instance for TalkerBlocLogger if your Application already uses Talker.
685685

686686
In this case, all logs and errors will fall into your unified tracking system
687687

@@ -706,7 +706,7 @@ Follow these steps to use this package
706706
### Add dependency
707707
```yaml
708708
dependencies:
709-
talker_riverpod_logger: ^4.4.1
709+
talker_riverpod_logger: ^4.4.2
710710
```
711711
712712
### Usage
@@ -739,11 +739,11 @@ final container = ProviderContainer(
739739

740740
## Customization
741741

742-
To provide hight usage exp here are a lot of settings and customization fields in TalkerRiverpodLoggerSettings. You can setup all wat you want. For example:
742+
To provide height usage exp here are a lot of settings and customization fields in TalkerRiverpodLoggerSettings. You can setup all wat you want. For example:
743743

744744
### Off/on events, add, update, dispose, fail
745745

746-
You can toggle all riverpod event types printing
746+
You can toggle all Riverpod event types printing
747747

748748
```dart
749749
TalkerRiverpodObserver(
@@ -783,7 +783,7 @@ TalkerRiverpodObserver(
783783
```
784784

785785
## Using with Talker!
786-
You can add your talker instance for TalkerRiverpodLogger if your Appication already uses Talker.
786+
You can add your talker instance for TalkerRiverpodLogger if your Application already uses Talker.
787787

788788
In this case, all logs and errors will fall into your unified tracking system
789789

@@ -858,6 +858,20 @@ final crashlyticsTalkerObserver = CrashlyticsTalkerObserver();
858858
final talker = Talker(observer: crashlyticsTalkerObserver);
859859
```
860860

861+
## Custom Settings
862+
863+
You can create your own custom settings by creating a Custom TalkerSettingsBottomSheet by
864+
subclassing the TalkerSettingsBottomSheetBase, and adding your own TalkerSettingsCard objects
865+
to the Build() function.
866+
867+
The shop_with_custom_settings example creates a CustomSettings class to hold setting values
868+
(all boolean values for now). The TalkerCustomSettingsBottomSheet class implements a custom bottom
869+
sheet, the custom settings bottom sheet state, and a creator function to be passed into the
870+
TalkerScreen() creation function.
871+
872+
This example has two custom flags - one that is enabled/disabled by the "Enable" settings flag,
873+
and the other a global custom flag not affected by the "Enable" settings flag.
874+
861875
## Features list
862876

863877
✅ Logging

packages/talker/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: talker
22
description: Advanced error handler and logger package for flutter and dart. App monitoring, logs history, report sharing, custom logs, and etc.
3-
version: 4.4.100
3+
version: 4.4.2
44
homepage: https://github.com/wolfe719/talker
55
repository: https://github.com/wolfe719/talker
66
issue_tracker: https://github.com/wolfe719/talker/issues

packages/talker_dio_logger/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: talker_dio_logger
22
description: Lightweight and customizable dio http client logger on talker base
3-
version: 4.4.1
3+
version: 4.4.2
44

55
homepage: https://github.com/Frezyx/talker
66
repository: https://github.com/Frezyx/talker

packages/talker_flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: talker_flutter
22
description: Advanced error handler and logger package for flutter and dart. App monitoring, logs history, report sharing, custom logs, and etc.
3-
version: 4.4.1
3+
version: 4.4.2
44
homepage: https://github.com/Frezyx/talker
55
repository: https://github.com/Frezyx/talker
66
issue_tracker: https://github.com/Frezyx/talker/issues

packages/talker_http_logger/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: talker_http_logger
22
description: Lightweight and customizable http client logger on talker base
3-
version: 0.1.0-dev.11
3+
version: 0.1.0-dev.12
44
homepage: https://github.com/Frezyx/talker
55

66
environment:

packages/talker_logger/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: talker_logger
22
description: Logger. Easy, customizable, extensible logging, lightweight with filters, formatters, custom logs, log levels.
3-
version: 4.4.1
3+
version: 4.4.2
44
homepage: https://github.com/Frezyx/talker
55
repository: https://github.com/Frezyx/talker
66
issue_tracker: https://github.com/Frezyx/talker/issues

0 commit comments

Comments
 (0)