Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
demchenkoalex committed Jul 9, 2023
1 parent 7fadd9e commit 2b56883
Show file tree
Hide file tree
Showing 8 changed files with 143 additions and 142 deletions.
2 changes: 1 addition & 1 deletion .metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This file should be version controlled and should not be manually edited.

version:
revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
revision: 796c8ef79279f9c774545b3771238c3098dbefab
channel: stable

project_type: package
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.2.2

- Update dependencies

## 3.2.1

- Add `previewBuilder` to allow you to create your own implementation of a link preview. Thanks @CatEatFishs for suggestion!
Expand Down
30 changes: 15 additions & 15 deletions example/.metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This file should be version controlled.

version:
revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
revision: 796c8ef79279f9c774545b3771238c3098dbefab
channel: stable

project_type: app
Expand All @@ -13,26 +13,26 @@ project_type: app
migration:
platforms:
- platform: root
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
- platform: android
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
- platform: ios
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
- platform: linux
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
- platform: macos
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
- platform: web
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
- platform: windows
create_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
base_revision: 84a1e904f44f9b0e9c4510138010edcc653163f8
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab

# User provided section

Expand Down
127 changes: 62 additions & 65 deletions example/ios/Runner.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

96 changes: 48 additions & 48 deletions example/macos/Runner.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ dependencies:
cupertino_icons: ^1.0.5
flutter:
sdk: flutter
flutter_chat_types: ^3.6.1
flutter_chat_types: ^3.6.2
flutter_link_previewer:
path: ../

dev_dependencies:
dart_code_metrics: ^5.7.3
dart_code_metrics: ^5.7.5
# The "flutter_lints" package below contains a set of recommended lints to
# encourage good coding practices. The lint set provided by the package is
# activated in the `analysis_options.yaml` file located at the root of your
# package. See that file for information about deactivating specific lint
# rules and activating additional ones.
flutter_lints: ^2.0.1
flutter_lints: ^2.0.2
flutter_test:
sdk: flutter

Expand Down
4 changes: 2 additions & 2 deletions lib/src/widgets/link_preview.dart
Original file line number Diff line number Diff line change
Expand Up @@ -259,11 +259,11 @@ class _LinkPreviewState extends State<LinkPreview>
requestTimeout: widget.requestTimeout,
userAgent: widget.userAgent,
);
_handlePreviewDataFetched(previewData);
await _handlePreviewDataFetched(previewData);
return previewData;
}

void _handlePreviewDataFetched(PreviewData previewData) async {
Future<void> _handlePreviewDataFetched(PreviewData previewData) async {
await Future.delayed(
widget.animationDuration ?? const Duration(milliseconds: 300),
);
Expand Down
16 changes: 8 additions & 8 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: >
Customizable link and URL preview extracted from the
provided text with the ability to render from the cache. Ideal
for chat applications.
version: 3.2.1
version: 3.2.2
homepage: https://flyer.chat
repository: https://github.com/flyerhq/flutter_link_previewer

Expand All @@ -14,16 +14,16 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_chat_types: ^3.6.1
flutter_chat_types: ^3.6.2
flutter_linkify: ^6.0.0
html: ^0.15.3
http: ^1.1.0
html: ^0.15.4
http: '>=0.13.6 <2.0.0'
linkify: ^5.0.0
meta: ^1.9.1
url_launcher: ^6.1.11
meta: '>=1.8.0 <2.0.0'
url_launcher: ^6.1.12

dev_dependencies:
dart_code_metrics: ^5.7.3
flutter_lints: ^2.0.1
dart_code_metrics: ^5.7.5
flutter_lints: ^2.0.2
flutter_test:
sdk: flutter

0 comments on commit 2b56883

Please sign in to comment.