Update flutter_quill_extensions

pull/1517/head
Ellet 1 year ago
parent 4b1e5d3078
commit b6b756535a
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 3
      .pubignore
  2. 3
      flutter_quill_extensions/.pubignore
  3. 4
      flutter_quill_extensions/CHANGELOG.md
  4. 2
      flutter_quill_extensions/pubspec.yaml
  5. 3
      flutter_quill_test/.pubignore
  6. 8
      scripts/disable_local_dev.sh
  7. 8
      scripts/enable_local_dev.sh

@ -0,0 +1,3 @@
# For local development
pubspec_overrides.yaml
pubspec_overrides.yaml.g

@ -0,0 +1,3 @@
# For local development
pubspec_overrides.yaml
pubspec_overrides.yaml.g

@ -1,9 +1,7 @@
## 0.6.5
- Support the new `iconButtonFactor` property
## 0.6.4
- Update `QuillImageUtilities`
- Add new extension on `QuillController` to access `QuillImageUtilities` instance easier
- Support the new `iconButtonFactor` property
## 0.6.3
- Update `README.md`

@ -1,6 +1,6 @@
name: flutter_quill_extensions
description: Embed extensions for flutter_quill including image, video, formula and etc.
version: 0.6.5
version: 0.6.4
homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions
repository: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions

@ -0,0 +1,3 @@
# For local development
pubspec_overrides.yaml
pubspec_overrides.yaml.g

@ -1,18 +1,20 @@
#!/bin/bash
# Please make sure to run this script in the root directory of the repository and not inside sub-folders
echo ""
echo "Disable local development for flutter_quill:"
echo "Disable local development for flutter_quill..."
rm pubspec_overrides.yaml
echo ""
echo "Enable local development for flutter_quill_extensions:"
echo "Enable local development for flutter_quill_extensions..."
rm flutter_quill_extensions/pubspec_overrides.yaml
echo ""
echo "Enable local development for flutter_quill_test:"
echo "Enable local development for flutter_quill_test..."
rm flutter_quill_test/pubspec_overrides.yaml
echo ""

@ -1,18 +1,20 @@
#!/bin/bash
# Please make sure to run this script in the root directory of the repository and not inside sub-folders
echo ""
echo "Enable local development for flutter_quill:"
echo "Enable local development for flutter_quill..."
cp pubspec_overrides.yaml.g pubspec_overrides.yaml
echo ""
echo "Enable local development for flutter_quill_extensions:"
echo "Enable local development for flutter_quill_extensions..."
cp flutter_quill_extensions/pubspec_overrides.yaml.g flutter_quill_extensions/pubspec_overrides.yaml
echo ""
echo "Enable local development for flutter_quill_test:"
echo "Enable local development for flutter_quill_test..."
cp flutter_quill_test/pubspec_overrides.yaml.g flutter_quill_test/pubspec_overrides.yaml
echo ""

Loading…
Cancel
Save