Skip to content

Commit 5ab658f

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 5e3a11e + 5ff6c16 commit 5ab658f

39 files changed

+4365
-28
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ jobs:
3939
- name: 📦 Install flutter_quill_test dependencies
4040
run: flutter pub get -C flutter_quill_test
4141

42+
- name: 📦 Install quill_native_bridge dependencies
43+
run: flutter pub get -C quill_native_bridge
44+
4245
- name: 🔍 Run Flutter analysis
4346
run: flutter analyze
4447

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,7 @@ jobs:
107107
- name: 📤 Publish flutter_quill_test
108108
run: flutter pub publish --force
109109
working-directory: ./flutter_quill_test/
110+
111+
- name: 📤 Publish quill_native_bridge
112+
run: flutter pub publish --force
113+
working-directory: ./quill_native_bridge/

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,37 @@
44

55
All notable changes to this project will be documented in this file.
66

7+
## 10.5.16
8+
9+
* chore: remove device_info_plus and add quill_native_bridge to access platform specific APIs by @EchoEllet in https://github.com/singerdmx/flutter-quill/pull/2194
10+
* Not show/update/hiden mangnifier when manifier config is disbale by @demoYang in https://github.com/singerdmx/flutter-quill/pull/2212
11+
12+
13+
**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.5.14...v10.5.16
14+
15+
## 10.5.15-dev.0
16+
17+
Introduce `quill_native_bridge` which is an internal plugin to use by `flutter_quill` to access platform APIs.
18+
19+
For now, the only functionality it supports is to check whatever the iOS app is running on iOS simulator without requiring [`device_info_plus`](pub.dev/packages/device_info_plus) as a dependency.
20+
21+
> [!NOTE]
22+
> `quill_native_bridge` is a plugin for internal use and should not be used in production applications
23+
> as breaking changes can happen and can removed at any time.
24+
25+
For more details and discussion see [#2194](https://github.com/singerdmx/flutter-quill/pull/2194).
26+
27+
**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.5.14...v10.5.15-dev.0
28+
29+
## 10.5.14
30+
31+
* chore(localization): add Greek language support by @DKalathas in https://github.com/singerdmx/flutter-quill/pull/2206
32+
33+
## New Contributors
34+
* @DKalathas made their first contribution in https://github.com/singerdmx/flutter-quill/pull/2206
35+
36+
**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.5.13...v10.5.14
37+
738
## 10.5.13
839

940
* Revert "Fix: Allow backspace at start of document to remove block style and header style by @agata in https://github.com/singerdmx/flutter-quill/pull/2201

CHANGELOG_DATA.json

Lines changed: 546 additions & 1 deletion
Large diffs are not rendered by default.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ You can join our [Slack Group] for discussion.
7676

7777
<br>
7878

79-
<img src="./example/assets/images/screenshot_1.png" width="250" alt="Screenshot 1">
80-
<img src="./example/assets/images/screenshot_2.png" width="250" alt="Screenshot 2">
81-
<img src="./example/assets/images/screenshot_3.png" width="250" alt="Screenshot 3">
82-
<img src="./example/assets/images/screenshot_4.png" width="250" alt="Screenshot 4">
79+
<img src="https://github.com/singerdmx/flutter-quill/blob/master/example/assets/images/screenshot_1.png?raw=true" width="250" alt="Screenshot 1">
80+
<img src="https://github.com/singerdmx/flutter-quill/blob/master/example/assets/images/screenshot_2.png?raw=true" width="250" alt="Screenshot 2">
81+
<img src="https://github.com/singerdmx/flutter-quill/blob/master/example/assets/images/screenshot_3.png?raw=true" width="250" alt="Screenshot 3">
82+
<img src="https://github.com/singerdmx/flutter-quill/blob/master/example/assets/images/screenshot_4.png?raw=true" width="250" alt="Screenshot 4">
8383

8484
</details>
8585

dart_quill_delta/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,37 @@
44

55
All notable changes to this project will be documented in this file.
66

7+
## 10.5.16
8+
9+
* chore: remove device_info_plus and add quill_native_bridge to access platform specific APIs by @EchoEllet in https://github.com/singerdmx/flutter-quill/pull/2194
10+
* Not show/update/hiden mangnifier when manifier config is disbale by @demoYang in https://github.com/singerdmx/flutter-quill/pull/2212
11+
12+
13+
**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.5.14...v10.5.16
14+
15+
## 10.5.15-dev.0
16+
17+
Introduce `quill_native_bridge` which is an internal plugin to use by `flutter_quill` to access platform APIs.
18+
19+
For now, the only functionality it supports is to check whatever the iOS app is running on iOS simulator without requiring [`device_info_plus`](pub.dev/packages/device_info_plus) as a dependency.
20+
21+
> [!NOTE]
22+
> `quill_native_bridge` is a plugin for internal use and should not be used in production applications
23+
> as breaking changes can happen and can removed at any time.
24+
25+
For more details and discussion see [#2194](https://github.com/singerdmx/flutter-quill/pull/2194).
26+
27+
**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.5.14...v10.5.15-dev.0
28+
29+
## 10.5.14
30+
31+
* chore(localization): add Greek language support by @DKalathas in https://github.com/singerdmx/flutter-quill/pull/2206
32+
33+
## New Contributors
34+
* @DKalathas made their first contribution in https://github.com/singerdmx/flutter-quill/pull/2206
35+
36+
**Full Changelog**: https://github.com/singerdmx/flutter-quill/compare/v10.5.13...v10.5.14
37+
738
## 10.5.13
839

940
* Revert "Fix: Allow backspace at start of document to remove block style and header style by @agata in https://github.com/singerdmx/flutter-quill/pull/2201

dart_quill_delta/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_quill_delta
22
description: A port of quill-js-delta from typescript to dart
3-
version: 10.5.13
3+
version: 10.5.16
44
homepage: https://github.com/singerdmx/flutter-quill/tree/master/dart_quill_delta/
55
repository: https://github.com/singerdmx/flutter-quill/tree/master/dart_quill_delta/
66
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@
216216
isa = PBXProject;
217217
attributes = {
218218
BuildIndependentTargetsInParallel = YES;
219-
LastUpgradeCheck = 1430;
219+
LastUpgradeCheck = 1510;
220220
ORGANIZATIONNAME = "";
221221
TargetAttributes = {
222222
331C8080294A63A400263BE5 = {

example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1430"
3+
LastUpgradeVersion = "1510"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

example/ios/Runner/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import UIKit
22
import Flutter
33

4-
@UIApplicationMain
4+
@main
55
@objc class AppDelegate: FlutterAppDelegate {
66
override func application(
77
_ application: UIApplication,

0 commit comments

Comments
 (0)