UNPKG

31.4 kBMarkdownView Raw
1# 1.1.7
2
3- Fix dropdown values reverting to default [#901](https://github.com/quilljs/quill/issues/901)
4- Add config to prevent scroll jumping on paste [#1082](https://github.com/quilljs/quill/issues/1082)
5- Prevent scrolling on API source calls [#1152](https://github.com/quilljs/quill/issues/1152)
6- Fix tsconfig build error [#1165](https://github.com/quilljs/quill/issues/1165)
7- Fix delete and formatting interaction in Firefox [#1171](https://github.com/quilljs/quill/issues/1171)
8- Fix cursor jump on formatting in middle of text [#1176](https://github.com/quilljs/quill/issues/1176)
9
10Thanks to [@cutteroid](https://github.com/cutteroid), [@houxg](https://github.com/houxg), [@jasongisstl](https://github.com/jasongisstl), [@nikparo](https://github.com/nikparo), [@sbevels](https://github.com/sbevels), and [sferoze](https://github.com/sferoze) for your contributions to this release.
11
12
13# 1.1.6
14
15### Features
16
17Checklists [#759](https://github.com/quilljs/quill/issues/759) support has been added to the API. UI and relevant interactions are still forthcoming.
18
19### Bug Fixes
20
21- Fix bug that allowed edits in readOnly mode [#1151](https://github.com/quilljs/quill/issues/1151)
22- Fix max call stack bug on large paste [#1123](https://github.com/quilljs/quill/issues/1123)
23
24Thank you [@jgmediadesign](https://github.com/jgmediadesign) and [@julienbmobile](https://github.com/julienbmobile) for contributions to this release!
25
26
27# 1.1.5
28
29- Remove unnecessary type attribute in documentation [#1087](https://github.com/quilljs/quill/pull/1087)
30- Fix chrome 52+ input file label open slow [#1090](https://github.com/quilljs/quill/pull/1090)
31- Only query the last op's insertion string if it's actually an insert [#1095](https://github.com/quilljs/quill/pull/1095)
32
33Thank you [@jleen](https://github.com/jleen), [@kaelig](https://github.com/kaelig), and [@YouHan26](https://github.com/YouHan26) for your contributions to this release.
34
35
36# 1.1.3
37
38- Update quill-delta [delta#2](https://github.com/quilljs/delta/issues/2)
39- Fix link creation [#1073](https://github.com/quilljs/quill/issues/1073)
40
41Thanks to [@eamodio](https://github.com/eamodio) and [@metsavir](https://github.com/metsavir) for contributions to this release!
42
43
44# 1.1.2
45
46- Fix setContents on already formatted text [#1065](https://github.com/quilljs/quill/issues/1065)
47- Fix regression [#1067](https://github.com/quilljs/quill/issues/1067)
48- Improve documentation [#1069](https://github.com/quilljs/quill/pull/1069) [#1070](https://github.com/quilljs/quill/pull/1070)
49
50Thank you [@benbro](https://github.com/benbro), [@derickruiz](https://github.com/derickruiz), [@eamodio](https://github.com/eamodio), [@hallaathrad](https://github.com/hallaathrad), and [@philly385](https://github.com/philly385) for your contributions to this release.
51
52
53# 1.1.1
54
55### Bug fixes
56
57- TEXT_CHANGE event now use cursor position to inform change location [#746](https://github.com/quilljs/quill/issues/746)
58- Fix inconsistent cursor reporting between browsers [#1007](https://github.com/quilljs/quill/issues/1007)
59- Fix tooltip overflow in docs [#1060](https://github.com/quilljs/quill/issues/1060)
60- Fix naming [#1063](https://github.com/quilljs/quill/pull/1063)
61- Fix Medium example [#1064](https://github.com/quilljs/quill/issues/1064)
62
63Thanks to [@artaommahe](https://github.com/artaommahe), [@benbro](https://github.com/benbro), [@fuffalist](https://github.com/fuffalist), [@sachinrekhi](https://github.com/sachinrekhi), [@sergop321](https://github.com/sergop321), and [@tlg](https://github.com/tlg) for contributions to this release!
64
65Special thanks to [@DadaMonad](https://github.com/DadaMonad) for contributions on [fast-diff](https://github.com/jhchen/fast-diff) that enabled the [#746](https://github.com/quilljs/quill/issues/746) fix.
66
67
68# 1.1.0
69
70### Additions
71
72Quill has always allowed API calls, even when the editor is in readOnly mode. All API calls also took a `source` parameter to indicate the origin of the change. For example, a click handler in the toolbar would call `formatText` with `source` set to `"user"`. When the editor is in readOnly mode, it would make sense for user initiated actions to be ignored. For example the user cannot focus or type into the editor. However because API calls are allowed, the user could still modify the editor contents [#909](https://github.com/quilljs/quill/issues/909). The natural fix is to ignore user initiated actions, even if it came through an API call, when the editor is in readOnly mode.
73
74However, the documentation never stated API calls with `source` set to `"user"` would be ignored sometimes, so this would be a breaking change under semver. Some could argue this is a bug fix and would only warrant a patch version bump, but this seems disingenuous for this particular case. The fact that almost no one took advantage of the `source` beyond default values is irrelevant under the eyes of semver.
75
76So a `strict` configuration option has been added. It is true by default so the above behavior is unchanged, and [#909](https://github.com/quilljs/quill/issues/909) is unfixed. Changing this to `false`, will use new behavior of ignoring user initiated changes on a disabled editor, even if through an API call.
77
78### Fixes
79
80- Fix undo when preformatted text inserted before plain text [#1019](https://github.com/quilljs/quill/issues/1019)
81- Add focus indicator on toolbar buttons [#1020](https://github.com/quilljs/quill/issues/1020)
82- Do not steal focus on API calls [#1029](https://github.com/quilljs/quill/issues/1029)
83- Disable paste when Quill is disabled [#1038](https://github.com/quilljs/quill/issues/1038)
84- Fix blank detection [#1043](https://github.com/quilljs/quill/issues/1043)
85- Enable yarn [#1041](https://github.com/quilljs/quill/issues/1041)
86- Documentation fixes [#1026](https://github.com/quilljs/quill/pull/1026), [#1027](https://github.com/quilljs/quill/pull/1027), [#1032](https://github.com/quilljs/quill/pull/1032)
87
88Thank you [@benbro](https://github.com/benbro), [@cutteroid](https://github.com/cutteroid), [@evansolomon](https://github.com/evansolomon), [@felipeochoa](https://github.com/felipeochoa), [jackmu95](https://github.com/jackmu95), [@joedynamite](https://github.com/joedynamite), [@lance13c](https://github.com/lance13c), [@leebenson](https://github.com/leebenson), [@maartenvanvliet](https://github.com/maartenvanvliet), [@sarbbottam](https://github.com/sarbbottam), [@viljark](https://github.com/viljark), [@w00fz](https://github.com/w00fz) for their contributions to this release.
89
90
91# 1.0.6
92
93Documentation clarifications and bug fixes.
94
95- Fix attaching toolbar to `<select>` without themes [#997](https://github.com/quilljs/quill/issues/997)
96- Link `code` icon to `code-block` [#998](https://github.com/quilljs/quill/issues/998)
97- Fix undo stack when at size limit [#1001](https://github.com/quilljs/quill/pull/1001)
98- Fix bug where `formatLine` did not ignore inline formats [8a7190](https://github.com/quilljs/parchment/commit/8a71905b2dd02d003edb02a15fdc727b26914e49)
99
100Thanks to [@dropfen](https://github.com/dropfen), [@evansolomon](https://github.com/evansolomon), [@hallaathrad](https://github.com/hallaathrad), [@janyksteenbeek](https://github.com/janyksteenbeek), [@jackmu95](https://github.com/jackmu95), [@marktron](https://github.com/marktron), [@mcat-ee](https://github.com/mcat-ee), [@unhammer](https://github.com/unhammer), and [@zeke](https://github.com/zeke) for contributions to this release!
101
102
103# 1.0.5
104
105Became 1.0.6 with a build/deploy fix.
106
107
108# 1.0.4
109
110- Fix bubble theme defaults [#963](https://github.com/quilljs/quill/issues/963)
111- Fix browsers modifying inline nesting order [#971](https://github.com/quilljs/quill/issues/971)
112- Do not fire selection-change event on paste [#974](https://github.com/quilljs/quill/issues/974)
113- Support alt attribute in images [#975](https://github.com/quilljs/quill/issues/975)
114- Deprecate `pasteHTML` for removal in Quill 2.0 [#981](https://github.com/quilljs/quill/issues/981)
115
116Thank you [jackmu95](https://github.com/jackmu95), [kristeehan](https://github.com/kristeehan), [ruffle1986](https://github.com/ruffle1986), [sergop321](https://github.com/sergop321), [sferoze](https://github.com/sferoze), and [sijad](https://github.com/sijad) for contributions to this release.
117
118
119# 1.0.3
120
121- Fix [#928](https://github.com/quilljs/quill/issues/928)
122
123Thank you [@scottmessinger](https://github.com/scottmessinger) for the bug report.
124
125
126# 1.0.2
127
128- Fix building quill.core.js [docs #11](https://github.com/quilljs/quilljs.github.io/issues/11)
129- Fix regression of [#793](https://github.com/quilljs/quill/issues/793)
130
131Thanks to [@eamodio](https://github.com/eamodio) and [@neandrake](https://github.com/neandrake) for their contributions to this release.
132
133
134# 1.0.0
135
136Quill 1.0 is released! Read the [official announcement](https://quilljs.com/blog/announcing-quill-1-0/).
137
138
139# 1.0.0-rc.4
140
141Fix one important bug [fdd920](https://github.com/quilljs/quill/commit/fdd920250c05403ed9e5d6d86826a00167ba0b09)
142
143
144# 1.0.0-rc.3
145
146A few bug fixes, one with with possibly significant implications. See the [issue #889](https://github.com/quilljs/quill/issues/889) and [commit fix](https://github.com/quilljs/quill/commit/be24c62a6234818548658fcb5e1935a0c07b4eb7) for more details.
147
148### Bug Fixes
149
150- Fix indenting beyond first level with toolbar [#882](https://github.com/quilljs/quill/issues/882)
151- Fix toolbar font/size display on Safari [#884](https://github.com/quilljs/quill/issues/884)
152- Fix pasting from Gmail from on different browser [#886](https://github.com/quilljs/quill/issues/886)
153- Fix undo/redo consistency [#889](https://github.com/quilljs/quill/issues/889)
154- Fix null error when selecting all on Firefox [#891](https://github.com/quilljs/quill/issues/891)
155- Fix merging keyboard options twice [#897](https://github.com/quilljs/quill/issues/897)
156
157Thank you [@benbro](https://github.com/benbro), [@cgilboy](https://github.com/cgilboy), [@cutteroid](https://github.com/cutteroid), and [@routman](https://github.com/routman) for contributions to this release!
158
159
160# 1.0.0-rc.2
161
162A few bug fixes, including one significant [one](https://github.com/quilljs/quill/issues/883)
163
164### Bug Fixes
165
166- Fix icon picker rendering in MS Edge [#877](https://github.com/quilljs/quill/issues/877)
167- Add back minified build to release [#881](https://github.com/quilljs/quill/issues/881)
168- Fix optimized change calculation with preformatted text [#883](https://github.com/quilljs/quill/issues/883)
169
170Thanks to [benbro](https://github.com/benbro), [cutteroid](https://github.com/cutteroid), and [CapTec](https://github.com/CapTec) for their contributions to this release.
171
172
173# 1.0.0-rc.1
174
175A few bug fixes and performance improvements.
176
177### Features
178
179- Source maps now available from CDN for minified build
180
181### Bug Fixes
182
183- Fix scroll interaction between two Quill editors [#855](https://github.com/quilljs/quill/issues/855)
184- Fix scroll on paste [#856](https://github.com/quilljs/quill/issues/856)
185- Fix native iOS tooltip formatting [#862](https://github.com/quilljs/quill/issues/862)
186- Remove comments from pasting from Word [#872](https://github.com/quilljs/quill/issues/872)
187- Fix indent at all supported indent levels [#873](https://github.com/quilljs/quill/issues/873)
188- Fix indent interaction with text direction [#874](https://github.com/quilljs/quill/issues/874)
189
190Thank you [@benbro](https://github.com/benbro), [@fernandogmar](https://github.com/fernandogmar), [@sachinrekhi](https://github.com/sachinrekhi), [@sferoze](https://github.com/sferoze), and [@stalniy](https://github.com/stalniy) for contributions to this release!
191
192
193# 1.0.0-rc.0
194
195Take a look at [Quill 1.0 Release Candidate](https://quilljs.com/blog/quill-1-0-release-candidate-released/) for more details.
196
197### Updates
198
199- Going forward the minimal stylesheet build will be named quill.core.css, instead of quill.css
200
201### Bug Fixes
202
203- Fix identifying ordered and bulletd lists [#846](https://github.com/quilljs/quill/issues/846) [#847](https://github.com/quilljs/quill/issues/847)
204- Fix bullet interaction with text direction [#848](https://github.com/quilljs/quill/issues/848)
205
206A huge thank you to all contributors to through the beta! Special thanks goes to [@benbro](https://github.com/benbro) and [@sachinrekhi](https://github.com/sachinrekhi) who together submitted submitted almost 50 Issues and Pull Requests!
207
208- [@abejdaniels](https://github.com/abejdaniels)
209- [@anovi](https://github.com/anovi)
210- [@benbro](https://github.com/benbro)
211- [@bram2w](https://github.com/bram2w)
212- [@brynjagr](https://github.com/brynjagr)
213- [@CapTec](https://github.com/CapTec)
214- [@Cinamonas](https://github.com/Cinamonas)
215- [@clemmy](https://github.com/clemmy)
216- [@crisbeto](https://github.com/crisbeto)
217- [@cutteroid](https://github.com/cutteroid)
218- [@DadaMonad](https://github.com/DadaMonad)
219- [@davelozier](https://github.com/davelozier)
220- [@emanuelbsilva](https://github.com/emanuelbsilva)
221- [@ersommer](https://github.com/ersommer)
222- [@fernandogmar](https://github.com/fernandogmar)
223- [@george-norris-salesforce](https://github.com/george-norris-salesforce)
224- [@jackmu95](https://github.com/jackmu95)
225- [@jasonmng](https://github.com/jasonmng)
226- [@jbrowning](https://github.com/jbrowning)
227- [@jonnolen](https://github.com/jonnolen)
228- [@KameSama](https://github.com/KameSama)
229- [@kei-ito](https://github.com/kei-ito)
230- [@kylebragger](https://github.com/kylebragger)
231- [@LucVanPelt](https://github.com/LucVanPelt)
232- [@lukechapman](https://github.com/lukechapman)
233- [@micimize](https://github.com/micimize)
234- [@mmorearty](https://github.com/mmorearty)
235- [@mshamaiev-intel471](https://github.com/mshamaiev-intel471)
236- [@quentez](https://github.com/quentez)
237- [@sachinrekhi](https://github.com/sachinrekhi)
238- [@sagacitysite](https://github.com/sagacitysite)
239- [@saw](https://github.com/saw)
240- [@stalniy](https://github.com/stalniy)
241- [@tOgg1](https://github.com/tOgg1)
242- [@u9520107](https://github.com/u9520107)
243- [@WriterStat](https://github.com/WriterStat)
244
245
246# 1.0.0-beta.11
247
248Fixed some regressive bugs from previous release.
249
250### Bug Fixes
251
252- Fix activating more than one format before typing [#841](https://github.com/quilljs/quill/issues/841)
253- Run default matchers before before user defined ones [#843](https://github.com/quilljs/quill/issues/843)
254- Fix merging theme configurations [#844](https://github.com/quilljs/quill/issues/844), [#845](845)
255
256Thanks [benbro](https://github.com/benbro), [jackmu95](https://github.com/jackmu95), and [george-norris-salesforce](https://github.com/george-norris-salesforce) for the bug reports.
257
258
259# 1.0.0-beta.10
260
261Lots of bug fixes and performance improvements.
262
263### Breaking Changes
264
265- Keyboard handler format in initial [configuration](beta.quilljs.com/docs/modules/keyboard/) has changed. `addBinding` is overloaded to be backwards compatible.
266
267### Bug Fixes
268
269- Preserve last bullet on paste [#696](https://github.com/quilljs/quill/issues/696)
270- Fix getBounds calculation for lists [#765](https://github.com/quilljs/quill/issues/765)
271- Escape quotes in font value [#769](https://github.com/quilljs/quill/issues/769)
272- Fix spacing calculation on paste [#797](https://github.com/quilljs/quill/issues/797)
273- Fix Snow tooltip label [#798](https://github.com/quilljs/quill/issues/798)
274- Fix link tooltip showing up on long click [#799](https://github.com/quilljs/quill/issues/799)
275- Fix entering code block in IE and Firefox [#803](https://github.com/quilljs/quill/issues/803)
276- Fix opening image dialog on Firefox [#805](https://github.com/quilljs/quill/issues/805)
277- Fix focus loss on updateContents [#809](https://github.com/quilljs/quill/issues/809)
278- Reset toolbar of blur [#810](https://github.com/quilljs/quill/issues/810)
279- Fix cursor position calculation on delete [#811](https://github.com/quilljs/quill/issues/811)
280- Fix highlighting across different alignment values [#815](https://github.com/quilljs/quill/issues/815)
281- Allow default active button [#816](https://github.com/quilljs/quill/issues/816)
282- Fix deleting last character of formatted text on Firefox [#824](https://github.com/quilljs/quill/issues/824)
283- Fix Youtube regex [#826](https://github.com/quilljs/quill/pull/826)
284- Fix missing imports when Quill not global [#836](https://github.com/quilljs/quill/pull/836)
285
286Thanks to [benbro](https://github.com/benbro), [clemmy](https://github.com/clemmy), [crisbeto](https://github.com/crisbeto), [cutteroid](https://github.com/cutteroid), [jackmu95](https://github.com/jackmu95), [kylebragger](https://github.com/kylebragger), [sachinrekhi](https://github.com/sachinrekhi), [stalniy](https://github.com/stalniy), and [tOgg1](https://github.com/tOgg1) for their contributions to this release.
287
288
289# 1.0.0-beta.9
290
291Potentially the final beta before a release candidate, if no major issues are discovered.
292
293### Breaking Changes
294
295- No longer expose `ui/link-tooltip` through `import` as implementation is now Snow specific
296- Significant refactoring of `ui/tooltip`
297- Syntax module now autodetects language, instead of defaulting to Javascript
298
299### Features
300
301- Formula and video insertion UI added to Snow and Bubble themes
302
303### Bug Fixes
304
305- Fix toolbar active state after backspacing to previous line [#730](https://github.com/quilljs/quill/issues/730)
306- User selection is now preserved various API calls [#731](https://github.com/quilljs/quill/issues/731)
307- Fix long click on link-tooltip [#747](https://github.com/quilljs/quill/issues/747)
308- Fix ordered list and text-align right interaction [#784](https://github.com/quilljs/quill/issues/784)
309- Fix toggling code block off [#789](https://github.com/quilljs/quill/issues/789)
310- Scroll position is now automatically preserved between editor blur and focus
311
312Thank you [@benbro](https://github.com/benbro), [@KameSama](https://github.com/KameSama), and [@sachinrekhi](https://github.com/sachinrekhi) for contributions to this release!
313
314
315# 1.0.0-beta.8
316
317Weekly beta preview release. The editor is almost ready for release candidacy but a couple cycles will be spent on the Snow and Bubble interfaces.
318
319### Work in Progress
320
321Image insertion is being reworked in the provided Snow and Bubble themes. The old image-tooltip has been removed in favor of a simpler and native interaction. By default clicking the image icon on the toolbar will open the OS file picker to convert and that into a base64 image. This will allow for a more natural hook to upload to a remote server instead. Some changes to the link tooltip is also being made to accommodate formula and video insertion, currently only available through the API.
322
323### Breaking Changes
324
325- Image tooltip UI has been removed, see above
326- Code blocks now use a single `<pre>` tag, instead of one per line [#723](https://github.com/quilljs/quill/issues/723)
327
328### Bug Fixes
329
330- Fix multiline syntax highlighting [#723](https://github.com/quilljs/quill/issues/723)
331- Keep pickers open on api text-change [#734](https://github.com/quilljs/quill/issues/734)
332- Emit correct source for text-change [#760](https://github.com/quilljs/quill/issues/760)
333- Emit correct parameters in selection-change [#762](https://github.com/quilljs/quill/issues/762)
334- Fix error redoing line insertion [#767](https://github.com/quilljs/quill/issues/767)
335- Better emitted Deltas for text-change [#768](https://github.com/quilljs/quill/issues/768)
336- Better Array.prototype.find polyfill for IE11 [#776](https://github.com/quilljs/quill/issues/776)
337- Fix Parchment errors in replacing text [#779](https://github.com/quilljs/quill/issues/779) [#783](https://github.com/quilljs/quill/issues/783)
338- Fix align button active state [#780](https://github.com/quilljs/quill/issues/780)
339- Fix format text on falsy value [#782](https://github.com/quilljs/quill/issues/782)
340- Use native cut [#785](https://github.com/quilljs/quill/issues/785)
341- Fix initializing document where last line is formatted [#786](https://github.com/quilljs/quill/issues/786)
342
343Thanks to [benbro](https://github.com/benbro), [bram2w](https://github.com/bram2w), [clemmy](https://github.com/clemmy), [DadaMonad](https://github.com/DadaMonad), [ersommer](https://github.com/ersommer), [michaeljosephrosenthal](https://github.com/michaeljosephrosenthal), [mmorearty](https://github.com/mmorearty), [mshamaiev-intel471](https://github.com/mshamaiev-intel471), and [sachinrekhi](https://github.com/sachinrekhi) for their contributions to this release.
344
345
346# 1.0.0-beta.7
347
348Became 1.0.0-beta.8 with a fix.
349
350
351# 1.0.0-beta.6
352
353Weekly beta preview release.
354
355### Features
356
357- Pickers can now be used and is styled in Bubble theme
358
359### Bug Fixes
360
361- Fix editing within formula [#702](https://github.com/quilljs/quill/issues/702)
362- Fix adding new line when deleting across lists [#741](https://github.com/quilljs/quill/issues/741)
363- Fix placeholder when default block tag is changed [#743](https://github.com/quilljs/quill/issues/743)
364- Keep Bubble tooltip open on format [#744](https://github.com/quilljs/quill/issues/744)
365- Fix format loss when copying from Quill [#748](https://github.com/quilljs/quill/issues/748) [#750](https://github.com/quilljs/quill/issues/750)
366- Break long lines in Firefox [#751](https://github.com/quilljs/quill/issues/751)
367- Fix cursor position being off after formatting and typing quickly [#752](https://github.com/quilljs/quill/issues/752)
368- Remove image resizing handles on Firefox [#753](https://github.com/quilljs/quill/issues/753)
369- Fix removing blockquote on initialization [#754](https://github.com/quilljs/quill/issues/754)
370- Fix adding blank lines on initialization [#756](https://github.com/quilljs/quill/issues/756)
371
372Thank you [abejdaniels](https://github.com/abejdaniels), [benbro](https://github.com/benbro), [davelozier](https://github.com/davelozier), [fernandogmar](https://github.com/fernandogmar), [KameSama](https://github.com/KameSama), and [WriterStat](https://github.com/WriterStat) for contributions to this release.
373
374
375# 1.0.0-beta.5
376
377Weekly beta preview release.
378
379### Features
380
381- Add blur() [#726](https://github.com/quilljs/quill/pull/726)
382
383### Bug Fixes
384
385- Fix null error [#728](https://github.com/quilljs/quill/issues/728)
386- Fix building with Node v6 [#732](https://github.com/quilljs/quill/issues/732)
387- Ensure button type for supplied buttons [#733](https://github.com/quilljs/quill/issues/733)
388- Fix line break pasting on Firefox [#735](https://github.com/quilljs/quill/issues/735)
389- Fix 'user' source on API calls [#739](https://github.com/quilljs/quill/issues/739)
390
391Thanks to [benbro](https://github.com/benbro), [lukechapman](https://github.com/lukechapman), [sachinrekhi](https://github.com/sachinrekhi), and [saw](https://github.com/saw) for their contributions to this release.
392
393
394# 1.0.0-beta.4
395
396Weekly beta preview release.
397
398### Breaking Changes
399
400- Headers no longer generates id attribute [#700](https://github.com/quilljs/quill/issues/700)
401- Add Control+Y hotkey on Windows [#705](https://github.com/quilljs/quill/issues/705)
402- BlockEmbed Blots are now length 1 and represented in a Delta the same as an inline embed
403 - value() used to return object and newline, newline is now removed
404 - formats used to be attributed on the newline character, it is now attributed on the object
405
406### Features
407
408- Enter on empty and indented list removes indent [#707](https://github.com/quilljs/quill/issues/707)
409- Allow base64 images to be inserted via APIs [#721](https://github.com/quilljs/quill/issues/721)
410
411### Bug Fixes
412
413- Fix typing after clearing inline format [#703](https://github.com/quilljs/quill/issues/703)
414- Correctly position Bubble tooltip when selecting multiple lines [#706](https://github.com/quilljs/quill/issues/706)
415- Fix typing after link format [#708](https://github.com/quilljs/quill/issues/708)
416- Fix loss of selection on using link tooltip [#709](https://github.com/quilljs/quill/issues/709)
417- Fix `setSelection(null)` [#722](https://github.com/quilljs/quill/issues/722)
418
419Thank you [@benbro](https://github.com/benbro), [@brynjagr](https://github.com/brynjagr), and [@sachinrekhi](https://github.com/sachinrekhi) for contributions to this release.
420
421
422# 1.0.0-beta.3
423
424Weekly beta preview release.
425
426### Breaking Changes
427
428- Keyboard was incorrectly using `metaKey` to refer to the control key on Windows. It now correctly refers to the Window key and `shortKey` has been added to refer the common platform specific modifier for hotkeys (metaKey for Mac, ctrlKey for Windows/Linux)
429- Formula is now a module, since it uses KaTeX
430
431### Features
432
433- Picker now uses text from original `<option>` if available
434- Tabbing inside code blocks inserts tab to each line
435
436### Bug Fixes
437
438- Enter preserves inline formats [#666](https://github.com/quilljs/quill/issues/666)
439- Fix resetting format button with no selection [#667](https://github.com/quilljs/quill/issues/667)
440- Fix paste interpretation from Word [#668](https://github.com/quilljs/quill/issues/668)
441- Focus scrolls to correct cursor position [#669](https://github.com/quilljs/quill/issues/669)
442- Fix deleting image on otherwise empty document [#670](https://github.com/quilljs/quill/issues/670)
443- Fix bubble toolbar formatting [#679](https://github.com/quilljs/quill/issues/679)
444- Fix pasting ql-indent lines [#681](https://github.com/quilljs/quill/issues/681)
445- Fix getting into state with double underline tag [#695](https://github.com/quilljs/quill/issues/695)
446- Fix source type on delete [#697](https://github.com/quilljs/quill/issues/697)
447- Fix indent becoming NaN [#698](https://github.com/quilljs/quill/issues/698)
448
449Thanks to [@benbro](https://github.com/benbro), [@Cinamonas](https://github.com/Cinamonas), [@emanuelbsilva](https://github.com/emanuelbsilva), [@jasonmng](https://github.com/jasonmng), [@jonnolen](https://github.com/jonnolen), [@LucVanPelt](https://github.com/LucVanPelt), [@sachinrekhi](https://github.com/sachinrekhi), [@sagacitysite](https://github.com/sagacitysite), [@WriterStat](https://github.com/WriterStat) for their contributions to this release.
450
451
452# 1.0.0-beta.2
453
454Weekly beta preview release. Major emphasis on keyboard API and customization.
455
456### Breaking Changes
457
458- Rename code highlighter module to syntax
459- Clipboard matchers specified in configuration appends to instead of replaces default matchers
460- Change video embed to use `<iframe>` instead of `<video>` enabling Youtube/Vimeo links
461
462### Features
463
464- Add contextual keyboard listeners
465- Allow indent format to take +1/-1 in addition to target indent level
466- Shortcuts for creating ordered or bulleted lists
467- Autofill mailto for email links [#278](https://github.com/quilljs/quill/issues/278)
468- Enter does not continue header format [#540](https://github.com/quilljs/quill/issues/540)
469
470### Bug Fixes
471
472- Allow native handling of backspace [#473](https://github.com/quilljs/quill/issues/473) [#548](https://github.com/quilljs/quill/issues/548) [#565](https://github.com/quilljs/quill/issues/565)
473- removeFormat() removes last line block formats [#649](https://github.com/quilljs/quill/issues/649)
474- Fix text direction icon direction [#654](https://github.com/quilljs/quill/issues/654)
475- Fix text insertion into root scroll [#655](https://github.com/quilljs/quill/issues/655)
476- Fix focusing on placeholder text in FF [#656](https://github.com/quilljs/quill/issues/656)
477- Hide placeholder on formatted line [#657](https://github.com/quilljs/quill/issues/657)
478- Fix selection handling on focus and blur [#664](https://github.com/quilljs/quill/issues/664)
479
480Thanks to [@anovi](https://github.com/anovi), [@benbro](https://github.com/benbro), [@jbrowning](https://github.com/jbrowning), [@kei-ito](https://github.com/kei-ito), [@quentez](https://github.com/quentez), [@u9520107](https://github.com/u9520107) for their contributions to this release!
481
482
483# 1.0.0-beta.1
484
485Weekly beta preview release.
486
487### Breaking Changes
488
489- Toolbar only attaches to `<button>` and `<select>` elements
490- Toolbar uses button `value` attribute, instead of `data-value`
491- Toolbar handlers overwrite default handlers instead of possibly cascading
492- Deprecate keyboard `removeBinding` and `removeAllBindings`
493
494### Features
495
496- Expose default keyboard bindings in configuration
497- Add context listener to keyboard bindings
498
499### Bug Fixes
500
501- Error when cursor places next to video embed [#644](https://github.com/quilljs/quill/issues/644)
502- Selection removed when clicking on a menu button in the toolbar [#645](https://github.com/quilljs/quill/issues/645)
503- Editor looses focus in FF after typing two bold characters [#646](https://github.com/quilljs/quill/issues/646)
504- Get rid of resize boxes in code in IE11 [0ad636](https://github.com/quilljs/quill/commit/0ad6363c9fcd70c52ca667d39a393760eeb646b5)
505- Text direction icon should flip the arrow when pressed [#651](https://github.com/quilljs/quill/issues/651)
506- Not possible to combine direction:rtl with text-align:left [#652](https://github.com/quilljs/quill/issues/652)
507
508Thanks to [@benbro](https://github.com/benbro) for the bug reports for this release!
509
510
511# 1.0.0-beta.0
512
513Please see the [Upgrading to 1.0](http://beta.quilljs.com/guides/upgrading-to-1-0/) guide.
514
515
516# 0.20.1
517
518Patch release for everything prior to Parchment's integration into Quill.
519
520### Features
521
522- API for hotkey removal [#110](https://github.com/quilljs/quill/issues/110), [#453](https://github.com/quilljs/quill/pull/453)
523
524### Bug Fixes
525
526- Editor jumps to top when clicking formatting buttons [#288](https://github.com/quilljs/quill/issues/288)
527- Editor does not preserve bold text when pasted from itself [#306](https://github.com/quilljs/quill/issues/306)
528- Focus issues when scrolled down in IE10+ [#415](https://github.com/quilljs/quill/issues/415)
529- Error if keyboard shortcut used for unavailable format [#432](https://github.com/quilljs/quill/issues/432)
530- Scrolls to cursor if not visible after enter/deletion/paste [#433](https://github.com/quilljs/quill/issues/433)
531
532Thanks to [@devtimi](https://github.com/devtimi), [@emannes](https://github.com/emannes), [@ivan-i](https://github.com/ivan-i), [@magus](https://github.com/magus), [@Nick-The-Uncharted](https://github.com/Nick-The-Uncharted), [@rlivsey](https://github.com/rlivsey), [@thomsbg](https://github.com/thomsbg), [@wallylawless](https://github.com/wallylawless) for their bug reports and pull requests!
533
534
535# 0.20.0
536
537### Breaking Changes
538- `getBounds` now returns `null` instead of throwing an error [#412](https://github.com/quilljs/quill/pull/412)
539
540### Features
541- Allow `Document` module to be `Quill.require`'d [#400](https://github.com/quilljs/quill/pull/400)
542- Paste manager can optionally accept a custom conversion function [#401](https://github.com/quilljs/quill/pull/401)
543- Undo manager can optionally only affect user initiated changes [#413](https://github.com/quilljs/quill/pull/413)
544
545### Bug Fixes
546- Retain formats between lines [#403](https://github.com/quilljs/quill/pull/403)
547- Fix bug that allows nested format tags [#406](https://github.com/quilljs/quill/pull/406)
548- Flatten nested list instead of truncating on paste [#421](https://github.com/quilljs/quill/issues/421)
549- Fix handling Chrome's usage of font-weight instead of tags [#423](https://github.com/quilljs/quill/issues/423)
550- Fix bug that allows nested parent tags [#426](https://github.com/quilljs/quill/pull/426)
551
552Thank you [@thomsbg](https://github.com/thomsbg), [@yyjhao](https://github.com/yyjhao), [@willrowe](https://github.com/willrowe), [@hryanjones](https://github.com/hryanjones), [@nickretallack](https://github.com/nickretallack) for your contributions to this release!