Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/pana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,25 @@ jobs:
with:
working_directory: packages/stream_core
min_score: 125 # Missing 10 points for no example, 10 points for license, and 10 points for `publish_to` in pubspec.

stream_core_flutter:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v4
- name: 📊 Verify Pana Score
uses: ./.github/actions/pana
with:
working_directory: packages/stream_core_flutter
min_score: 120 # Missing 10 points for no license, 10 points for no example, and 20 points for static analysis issues.

stream_thumbnail:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v4
- name: 📊 Verify Pana Score
uses: ./.github/actions/pana
with:
working_directory: packages/stream_thumbnail
min_score: 150 # Missing 10 points for static analysis issues.
1 change: 1 addition & 0 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ command:
shimmer: ^3.0.0
stream_core: ^0.4.0
stream_core_flutter: ^0.4.0
stream_thumbnail: ^0.1.0
svg_icon_widget: ^0.0.1+1
synchronized: ^3.3.0
theme_extensions_builder_annotation: ^7.1.0
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_thumbnail/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## 0.0.1
## 0.1.0

* Initial release.
6 changes: 3 additions & 3 deletions packages/stream_thumbnail/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ publish_to: 'none'
version: 1.0.0+1

environment:
sdk: ^3.12.0
sdk: ^3.10.0
flutter: ">=3.38.1"

dependencies:
flutter:
sdk: flutter
stream_thumbnail:
path: ..
stream_thumbnail: ^0.1.0

dev_dependencies:
flutter_test:
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_thumbnail/ios/stream_thumbnail.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
Pod::Spec.new do |s|
s.name = 'stream_thumbnail'
s.version = '0.0.1'
s.version = '0.1.0'
s.summary = 'A Flutter plugin for creating a thumbnail from a local video file or from a video URL.'
s.description = <<-DESC
A Flutter plugin for creating a thumbnail from a local video file or from a video URL.
Expand Down
2 changes: 1 addition & 1 deletion packages/stream_thumbnail/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stream_thumbnail
description: A Flutter plugin for creating a thumbnail from a local video file or from a video URL.
version: 0.0.1
version: 0.1.0
homepage: https://github.com/GetStream/stream-core-flutter
repository: https://github.com/GetStream/stream-core-flutter

Expand Down
Loading