From b6b756535a3f8d9ed9b254708d5e1474e5ea5164 Mon Sep 17 00:00:00 2001 From: Ellet <73608287+freshtechtips@users.noreply.github.com> Date: Thu, 9 Nov 2023 19:44:34 +0300 Subject: [PATCH] Update flutter_quill_extensions --- .pubignore | 3 +++ flutter_quill_extensions/.pubignore | 3 +++ flutter_quill_extensions/CHANGELOG.md | 4 +--- flutter_quill_extensions/pubspec.yaml | 2 +- flutter_quill_test/.pubignore | 3 +++ scripts/disable_local_dev.sh | 8 +++++--- scripts/enable_local_dev.sh | 8 +++++--- 7 files changed, 21 insertions(+), 10 deletions(-) create mode 100644 .pubignore create mode 100644 flutter_quill_extensions/.pubignore create mode 100644 flutter_quill_test/.pubignore diff --git a/.pubignore b/.pubignore new file mode 100644 index 00000000..92959320 --- /dev/null +++ b/.pubignore @@ -0,0 +1,3 @@ +# For local development +pubspec_overrides.yaml +pubspec_overrides.yaml.g \ No newline at end of file diff --git a/flutter_quill_extensions/.pubignore b/flutter_quill_extensions/.pubignore new file mode 100644 index 00000000..92959320 --- /dev/null +++ b/flutter_quill_extensions/.pubignore @@ -0,0 +1,3 @@ +# For local development +pubspec_overrides.yaml +pubspec_overrides.yaml.g \ No newline at end of file diff --git a/flutter_quill_extensions/CHANGELOG.md b/flutter_quill_extensions/CHANGELOG.md index e6116111..baf0e9e3 100644 --- a/flutter_quill_extensions/CHANGELOG.md +++ b/flutter_quill_extensions/CHANGELOG.md @@ -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` diff --git a/flutter_quill_extensions/pubspec.yaml b/flutter_quill_extensions/pubspec.yaml index 3df390cd..03a3d162 100644 --- a/flutter_quill_extensions/pubspec.yaml +++ b/flutter_quill_extensions/pubspec.yaml @@ -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 diff --git a/flutter_quill_test/.pubignore b/flutter_quill_test/.pubignore new file mode 100644 index 00000000..92959320 --- /dev/null +++ b/flutter_quill_test/.pubignore @@ -0,0 +1,3 @@ +# For local development +pubspec_overrides.yaml +pubspec_overrides.yaml.g \ No newline at end of file diff --git a/scripts/disable_local_dev.sh b/scripts/disable_local_dev.sh index b0d80b57..def60bbb 100755 --- a/scripts/disable_local_dev.sh +++ b/scripts/disable_local_dev.sh @@ -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 "" diff --git a/scripts/enable_local_dev.sh b/scripts/enable_local_dev.sh index adafd237..6e2fda39 100755 --- a/scripts/enable_local_dev.sh +++ b/scripts/enable_local_dev.sh @@ -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 ""