diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7050b0a..90f6481 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.0-alpha.6" + ".": "2.0.0-alpha.7" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dbd460..51ba95b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [2.0.0-alpha.7](https://github.com/ZebraDevs/zds_flutter/compare/v2.0.0-alpha.6...v2.1.0-alpha.6) (2024-12-13) + +### ✨ New Features + +- **UX-1342:** Added popup menu to ZdsComment ([#52](https://github.com/ZebraDevs/zds_flutter/issues/52)) ([f153842](https://github.com/ZebraDevs/zds_flutter/commit/f153842a3acd1486de961e167c2c049af4f3eac3)) + ## [2.0.0-alpha.6](https://github.com/ZebraDevs/zds_flutter/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2024-12-05) ### 🪲 Bug Fixes diff --git a/README.md b/README.md index c55cc23..514f350 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Add the following as a dependency in your pubspec.yaml file. ```yaml -zds-flutter: ^2.0.0-alpha.6 +zds-flutter: ^2.0.0-alpha.7 ``` diff --git a/example/lib/home.dart b/example/lib/home.dart index af36e77..3afe3b9 100644 --- a/example/lib/home.dart +++ b/example/lib/home.dart @@ -22,7 +22,7 @@ class _HomePageState extends State { leadingWidth: 20, leading: SizedBox(width: 20), // x-release-please-start-version - title: const Text('zds_flutter v2.0.0-alpha.6'), + title: const Text('zds_flutter v2.0.0-alpha.7'), // x-release-please-end centerTitle: false, actions: [ diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 1e8202a..184a7ab 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -25,6 +25,8 @@ dependencies: path: ../ zeta_flutter: ^0.19.0 + url_launcher: any + cross_file: any flutter: uses-material-design: true assets: diff --git a/lib/src/components/organisms/html_preview/video_html_extension.dart b/lib/src/components/organisms/html_preview/video_html_extension.dart index 3d8172e..91c5c9f 100644 --- a/lib/src/components/organisms/html_preview/video_html_extension.dart +++ b/lib/src/components/organisms/html_preview/video_html_extension.dart @@ -125,7 +125,6 @@ class _VideoWidgetState extends State with AutomaticKeepAliveCli _videoController = VideoPlayerController.file(File.fromUri(sourceUri)); default: _videoController = VideoPlayerController.networkUrl(sourceUri); - break; } _chewieController = ChewieController( diff --git a/pubspec.yaml b/pubspec.yaml index 78f0c71..4b2043f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: zds_flutter description: Zebra Design System components for Flutter. A selection of UI components from Zebra Technologies. -version: 2.0.0-alpha.6 +version: 2.0.0-alpha.7 homepage: https://github.com/zebradevs/zds_flutter repository: https://github.com/zebradevs/zds_flutter issue_tracker: https://github.com/zebradevs/zds_flutter/issues