Skip to content

Commit

Permalink
v
Browse files Browse the repository at this point in the history
  �[41;1m ErrorException �[49;22m

�[39;1m  Undefined array key 0�[39;22m

  at �[32mapp/Console/Commands/GetChangelogVersion.php�[39m:�[32m31�[39m
     27▕     {
     28▕         $value = $this->argument('value');
     29▕         preg_match_all('/\[(\d+\.\d+\.\d+)\]/', $value, $matches);
     30▕
  ➜  31▕         $value = $matches[1][0];
     32▕
     33▕         $this->line($value);
     34▕     }
     35▕ }

  �[33m1   �[39m�[39;1mapp/Console/Commands/GetChangelogVersion.php�[39;22m:�[39;1m31�[39;22m
  �[90m    Illuminate\Foundation\Bootstrap\HandleExceptions::Illuminate\Foundation\Bootstrap\{closure}("Undefined array key 0", "/Users/anthony/Sites/githelper/app/Console/Commands/GetChangelogVersion.php")�[39m
      �[2m+12 vendor frames �[22m

  �[33m14  �[39m�[39;1martisan�[39;22m:�[39;1m35�[39;22m
  �[90m    Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))�[39m
  • Loading branch information
agordn52 committed Feb 27, 2024
1 parent a6e4ffb commit de780c6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.1 - 2024-02-27

* Fix `GridImagePicker`

## 1.0.0 - 2024-02-27

* Initial release.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Add the following to your `pubspec.yaml` file:

``` yaml
dependencies:
media_pro: ^1.0.0
media_pro: ^1.0.1
```
or with Dart:
Expand Down
2 changes: 1 addition & 1 deletion lib/media_pro.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export '/widgets/single_image_picker_widget.dart';
export '/widgets/grid_image_picker_widget.dart';

/// MediaPro version
const String _mediaProVersion = 'v1.0.0';
const String _mediaProVersion = 'v1.0.1';

/// MediaPro class
class MediaPro {
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/grid_image_picker_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class _GridImagePickerState extends NyState<GridImagePicker>
],
),
),
isDraggable: true,
isDraggable: false,
dragCallback: (context, isDragging) {
// tba...
},
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: media_pro
description: "Media widgets for Flutter. Upload and display images from the gallery, camera and more."
version: 1.0.0
version: 1.0.1
homepage: https://nylo.dev
repository: https://github.com/nylo-core/media-pro
issue_tracker: https://github.com/nylo-core/media-pro/issues
Expand Down

0 comments on commit de780c6

Please sign in to comment.