Skip to content

Commit

Permalink
Changed
Browse files Browse the repository at this point in the history
- Updated flutter version to 3.16.5, updated dependencies, removed dart_code_metrics
- Added class modifiers.
- Possibility to add parameters to the text of the logs. Such parameter value can be copied by the
  tap on it from log details screen.
- Added package topics to the pubspec file.
- Added the ability to create logs with SnackBar. Clicking on the "OPEN" button opens the log
  details page.
- Added ability to remove logs. After deleting, it is possible to restore the deleted log in the
  opened SnackBar by pressing the "UNDO" button.
- Changed placeholders on pages to view database logs
- The error and stackTrace log parameters are now named

Fixed

- Fixed exception when swiping log tabs
- Fixed display of new logs when viewing the database list
- Fixed display of logs when changing the database logs view
- Fixed errors when the HTTP log search page is open
- Fixed HTTP tabs update after closing the search page HTTP logs
- Fixed log list update when scrolling the list to the initial position
  • Loading branch information
NikitaAmelinCR committed Feb 19, 2024
1 parent eb6bc92 commit 28817e8
Showing 1 changed file with 31 additions and 26 deletions.
57 changes: 31 additions & 26 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,80 +1,85 @@
name: cr_logger
description: Powerful logging plugin. Supports android, ios and web platforms.

version: 2.3.0
version: 2.4.2
homepage: https://github.com/Cleveroad/cr_logger

topics:
- tool
- network
- debug
- logging
- dio

environment:
sdk: ">=2.19.2 <4.0.0"
flutter: ">=3.7.0"
sdk: ">=3.0.0 <4.0.0"
flutter: ">=3.16.0"

dependencies:
flutter:
sdk: flutter
flutter_web_plugins:
sdk: flutter
http: ^0.13.0
http: ^1.1.2

# MIT
cr_json_widget: ^1.1.0
cr_json_widget: ^1.1.1

# Network
# MIT
dio: ^5.0.0
dio: ^5.4.0
# MIT
chopper: ^6.1.0
chopper: ^7.0.10
# MIT
logger: ^1.1.0
logger: ^2.0.2+1

# BSD
package_info_plus: ^3.0.0
package_info_plus: ^5.0.1

# MIT
uuid: ^3.0.0
uuid: ^3.0.7

# MIT
app_settings: ^4.2.0
app_settings: ^5.1.1

# BSD
path_provider: ^2.0.0
path_provider: ^2.1.2
# BSD-3-Clause
path: ^1.8.2
path: ^1.8.3

# MIT
inspector: ^1.1.0
inspector: ^2.1.0

# BSD-3-Clause
shared_preferences: ^2.0.0
shared_preferences: ^2.2.2
# MIT
split_view: ^3.2.0
split_view: ^3.2.1

# unknown
# https://pub.dev/packages/synchronized/license
synchronized: ^3.0.0
synchronized: ^3.1.0

# BSD-3-Clause
js: ^0.6.0
js: ^0.6.7

# BSD-3-Clause
# https://stackoverflow.com/a/70757512
platform: ^3.1.0
platform: ^3.1.2

# Apache-2.0
infinite_scroll_pagination: ^3.2.0
infinite_scroll_pagination: ^4.0.0
# MIT
worker_manager: ^5.0.0
worker_manager: ^6.3.1

# BSD-2-Clause
sqflite: ^2.2.0+3
sqflite: ^2.3.0

dev_dependencies:
flutter_test:
sdk: flutter
# MIT
dart_code_metrics: ^5.6.0
flutter_lints: ^2.0.0
flutter_lints: ^3.0.1

build_runner: ^2.2.0
build_runner: ^2.4.7

flutter:
uses-material-design: true
Expand Down

0 comments on commit 28817e8

Please sign in to comment.