File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change
1
+ # [ 7.2.19]
2
+ - Feat/link regexp.
3
+
1
4
# [ 7.2.18]
2
5
- Fix paste block text in words apply same style.
3
6
Original file line number Diff line number Diff line change @@ -329,8 +329,7 @@ class AutoFormatMultipleLinksRule extends InsertRule {
329
329
// http://www.example.com/?action=birds&brass=apparatus
330
330
// https://example.net/
331
331
// URL generator tool (https://www.randomlists.com/urls) is used.
332
- static const _linkPattern =
333
- r'^https?:\/\/[\w\-]+(\.[\w\-]+)*(:\d+)?(\/.*)?$' ;
332
+ static const _linkPattern = r'^https?:\/\/[\w\-]+(\.[\w\-]+)*(:\d+)?(\/.*)?$' ;
334
333
static final linkRegExp = RegExp (_linkPattern, caseSensitive: false );
335
334
336
335
@override
Original file line number Diff line number Diff line change @@ -157,7 +157,6 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
157
157
158
158
/// Validate the legitimacy of hyperlinks
159
159
RegExp ? linkRegExp,
160
-
161
160
Key ? key,
162
161
}) {
163
162
final isButtonGroupShown = [
Original file line number Diff line number Diff line change 1
1
name : flutter_quill
2
2
description : A rich text editor supporting mobile and web
3
- version : 7.2.18
3
+ version : 7.2.19
4
4
homepage : https://bulletjournal.us/home/index.html
5
5
repository : https://github.com/singerdmx/flutter-quill
6
6
You can’t perform that action at this time.
0 commit comments