diff --git a/CHANGELOG.md b/CHANGELOG.md index 05562e9d9e..18d329cca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,16 @@ -# [Unreleased] - -# 2.0.1 +# v2.0.1 (2024-05-01) - Prevent overriding of theme's default toolbar settings mistakenly [#4120](https://github.com/quilljs/quill/pull/4120) - Improve typings for methods that return a Delta [#4136](https://github.com/quilljs/quill/pull/4136) - Fix toolbar icons for h3-h6 [#4131](https://github.com/quilljs/quill/pull/4131) -# 2.0.0 +[All changes](https://github.com/quilljs/quill/releases/tag/v2.0.1) + +# v2.0.0 (2024-04-17) We are thrilled to announce the release of Quill 2.0! Please check out the [announcement post](https://slab.com/blog/announcing-quill-2-0/). -### Major Improvements +## Major Improvements - Quill is now a valid ESM package for better ecosystem (e.g. bundlers) and tree-shaking support - Nested Quill support [#3590](https://github.com/quilljs/quill/pull/3590) @@ -20,7 +20,7 @@ We are thrilled to announce the release of Quill 2.0! Please check out the [anno - Auto detect scrolling container [#3840](https://github.com/quilljs/quill/pull/3840) - **Clipboard**: Improve support for pasting from Google Docs and Microsoft Word -### Performance Improvements +## Performance Improvements Quill 2.0 includes many performance optimizations, the most important of which is the improved rendering speed for large content. @@ -28,7 +28,7 @@ Quill 2.0 includes many performance optimizations, the most important of which i - Avoid fetching selections when possible [#3538](https://github.com/quilljs/quill/pull/3538) - No need to setContents when container is empty [#3539](https://github.com/quilljs/quill/pull/3539) -### Code Modernization +## Code Modernization - Migrated to TypeScript - Provided official TypeScript declarations @@ -36,9 +36,9 @@ Quill 2.0 includes many performance optimizations, the most important of which i - Migrated to Playwright for E2E testing - Migrated website to Gatsby -For all commits, please see the [2.0.0 release page](https://github.com/quilljs/quill/releases/tag/v2.0.0). +[All changes](https://github.com/quilljs/quill/releases/tag/v2.0.0) -# 2.0.0-rc.5 +# v2.0.0-rc.5 (2024-04-04) - **Clipboard** Add support for Quill v1 list attributes - Fix overload declarations for `quill.formatText()` and other methods @@ -46,7 +46,9 @@ For all commits, please see the [2.0.0 release page](https://github.com/quilljs/ - Expose Range type - Allow ref for insertBefore to be null -# 2.0.0-rc.4 +[All changes](https://github.com/quilljs/quill/releases/tag/v2.0.0-rc.5) + +# v2.0.0-rc.4 (2024-03-24) - Include source maps for Parchment - **Clipboard** Support pasting links copied from iOS share sheets @@ -54,51 +56,65 @@ For all commits, please see the [2.0.0 release page](https://github.com/quilljs/ - Expose types for Quill options - Remove empty .css.js files generated by bundlers -# 2.0.0-rc.3 +[All changes](https://github.com/quilljs/quill/releases/tag/v2.0.0-rc.4) + +# v2.0.0-rc.3 (2024-03-16) - Fix `Quill#getSemanticHTML()` for list items - Remove unnecessary Firefox workaround - **Clipboard** Fix redundant newlines when pasting from external sources - Add `formats` option for specifying allowed formats -# 2.0.0-rc.2 +[All changes](https://github.com/quilljs/quill/releases/tag/v2.0.0-rc.3) + +# v2.0.0-rc.2 (2024-02-15) - Fix toolbar button state not updated in some cases - Narrower `BubbleTheme.tooltip` type - Fix `Selection#getBounds()` when starting range at end of text node - Improve compatibility with esbuild -# 2.0.0-rc.1 +[All changes](https://github.com/quilljs/quill/releases/tag/v2.0.0-rc.2) + +# v2.0.0-rc.1 (2024-02-12) + +- Remove unnecessary lodash usages. -- Remove unnecessary lodash usages +[All changes](https://github.com/quilljs/quill/releases/tag/v2.0.0-rc.1) -# 2.0.0-rc.0 +# v2.0.0-rc.0 (2024-02-03) -- **Clipboard** Convert newlines between inline elements to a space -- **Clipboard** Avoid generating unsupported formats on paste -- **Clipboard** Improve support for pasting from Google Docs and Microsoft Word -- **Clipboard** Ignore whitespace between pasted empty paragraphs -- **Syntax** Support highlight.js v10 and v11 +- **Clipboard** Convert newlines between inline elements to a space. +- **Clipboard** Avoid generating unsupported formats on paste. +- **Clipboard** Improve support for pasting from Google Docs and Microsoft Word. +- **Clipboard** Ignore whitespace between pasted empty paragraphs. +- **Syntax** Support highlight.js v10 and v11. -# 2.0.0-beta.2 +[All changes](https://github.com/quilljs/quill/releases/tag/v2.0.0-rc.0) -- Fix IME not working correctly in Safari -- **Clipboard** Support paste as plain text -- Fix `Quill.getText()` not respecting `length` parameter -- **History** Fix redo shortcut not working on Linux and Windows +# v2.0.0-beta.2 (2024-01-30) -# 2.0.0-beta.1 +- Fix IME not working correctly in Safari. +- **Clipboard** Support paste as plain text. +- Fix `Quill.getText()` not respecting `length` parameter. +- **History** Fix redo shortcut not working on Linux and Windows. -- Fix syntax label from "Javascript" to "JavaScript" -- Fix typing errors for emitter -- Inline SVG images for easier bundler setup -- Improve typing for Registry +[All changes](https://github.com/quilljs/quill/releases/tag/v2.0.0-beta.2) -# 2.0.0-beta.0 +# v2.0.0-beta.1 (2024-01-21) + +- Fix syntax label from "Javascript" to "JavaScript". +- Fix typing errors for emitter. +- Inline SVG images for easier bundler setup. +- Improve typing for Registry. + +[All changes](https://github.com/quilljs/quill/releases/tag/v2.0.0-beta.1) + +# v2.0.0-beta.0 (2023-12-08) In the upcoming 2.0 release, Quill has been significantly modernized. Leveraging the latest browser-supported APIs, Quill now delivers a more efficient and reliable editing experience. -### Major Improvements +## Major Improvements - Nested Quill support [#3590](https://github.com/quilljs/quill/pull/3590) - Improved IME and spell corrector support [#3807](https://github.com/quilljs/quill/pull/3807) @@ -106,16 +122,15 @@ In the upcoming 2.0 release, Quill has been significantly modernized. Leveraging - **History**: Record selection in history module [#3823](https://github.com/quilljs/quill/pull/3823) - Auto detect scrolling container [#3840](https://github.com/quilljs/quill/pull/3840) -### Performance Improvements +## Performance Improvements -Quill 2.0 includes many performance optimizations, -the most important of which is the improved rendering speed for large content. +Quill 2.0 includes many performance optimizations, the most important of which is the improved rendering speed for large content. - Improve inserting performance [#3815](https://github.com/quilljs/quill/pull/3815) - Avoid fetching selections when possible [#3538](https://github.com/quilljs/quill/pull/3538) - No need to setContents when container is empty [#3539](https://github.com/quilljs/quill/pull/3539) -### Code Modernization +## Code Modernization - Migrated to TypeScript - Provided official TypeScript declarations @@ -123,48 +138,32 @@ the most important of which is the improved rendering speed for large content. - Migrated to Playwright for E2E testing - Migrated website to Gatsby -### All Changes - -- Fix UI node interactions with line-level navigation shortcuts [#3898](https://github.com/quilljs/quill/pull/3898) -- Use `` instead of `` for Strike format [Commit](https://github.com/quilljs/quill/commit/16427683890374ed5acba96765757c44f5d5f2f5) -- **Keyboard**: Backspace will keep the format when previous line is empty [#3013](https://github.com/quilljs/quill/pull/3013) -- **Keyboard**: Discontinue inline formats on enter [#3428](https://github.com/quilljs/quill/pull/3428) -- Fix length mismatch when copying code [#3028](https://github.com/quilljs/quill/pull/3028) -- Keep list numbers continuous when separated by certain elements [#3086](https://github.com/quilljs/quill/pull/3086) -- Header/paragraph doesn't reset list numbering in Firefox [#3272](https://github.com/quilljs/quill/pull/3272) -- Fix `Quill#setContents()` on block embed ending [Commit](https://github.com/quilljs/quill/commit/84d22342d5e3eb33453d4601d2c7f55d26b47495) -- Track all implicit newline indexes and shift for delete [Commit](https://github.com/quilljs/quill/commit/cf101f681158a48b1b477c1544680cc9614425ae) -- **Clipboard**: Fix pasting in checklist does not preserve indentation [#3064](https://github.com/quilljs/quill/pull/3064) -- **Clipboard**: Prefer file over html when uploading [Commit](https://github.com/quilljs/quill/commit/e164f12603f646d919c853a7db02137399dbf696) -- **Clipboard**: Keep newlines in pre tag [#3687](https://github.com/quilljs/quill/pull/3687) -- **Clipboard**: Cut across lines shouldn't affect the formatting of the line above [#3286](https://github.com/quilljs/quill/pull/3286) -- getLeaf() should ignore non-leaf blots [#3489](https://github.com/quilljs/quill/pull/3489) -- **Selection**: Fix getBounds of empty text nodes [#3491](https://github.com/quilljs/quill/pull/3491) -- Keep cursor unlinked to avoid elements being pushed down inside [#3534](https://github.com/quilljs/quill/pull/3534) -- Fix combineFormats with multiple values repeated [#3336](https://github.com/quilljs/quill/issues/3336) -- Fix selection-change not firing on DOM mutations [#3591](https://github.com/quilljs/quill/pull/3591) -- Improve Tab handling in code block [#3593](https://github.com/quilljs/quill/pull/3593) -- Add SMS to link protocol whitelist [#2851](https://github.com/quilljs/quill/pull/2851) -- Fix embed inherits formats unexpectedly [#3783](https://github.com/quilljs/quill/pull/3783) -- Fix HTML and Delta not matching [#3784](https://github.com/quilljs/quill/pull/3784) -- Fix inline embed insertions with applyDelta() [#3793](https://github.com/quilljs/quill/pull/3793) -- Fix inserting newlines into formatted text [#3582](https://github.com/quilljs/quill/pull/3582) -- **History**: Pass source for history actions [#3514](https://github.com/quilljs/quill/pull/3514) -- **History**: Handle native undo/redo [#3115](https://github.com/quilljs/quill/pull/3115) -- Fix block embed attributor errors [#3825](https://github.com/quilljs/quill/pull/3825) -- **Clipboard**: getHTML() should include outer tag when range is entire line [#3850](https://github.com/quilljs/quill/pull/3850) - -# 1.3.6 +[All changes](https://github.com/quilljs/quill/releases/tag/v2.0.0-beta.0) + +# v1.3.7 (2019-09-09) + +Security related bug fixes. + +- https://app.snyk.io/vuln/npm:extend:20180424 +- https://www.npmjs.com/advisories/1039 + +Thank you [@danfuzz](https://github.com/danfuzz), [@danielw93](https://github.com/danielw93), [@jonathanlloyd](https://github.com/jonathanlloyd), and [@k-sai-kiranmayee](https://github.com/k-sai-kiranmayee) for your contributions to this release. + +[All changes](https://github.com/quilljs/quill/releases/tag/v1.3.7) + +# v1.3.6 (2018-03-12) - Make picker accessible [#1999](https://github.com/quilljs/quill/pull/1999) - Fix Japanese composition in Chrome 65 [#2009](https://github.com/quilljs/quill/issues/2009) Thanks to [@berylw](https://github.com/berylw) and [@erinsinger93](https://github.com/erinsinger93) for contributions to this release! -# 1.3.5 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.3.6) + +# v1.3.5 (2018-01-22) - Fix indent preservation of a checked checklist item [#1818](https://github.com/quilljs/quill/issues/1818) -- Added the asterisk "\*" character as a shortcut to trigger bullet list formatting [#1819](https://github.com/quilljs/quill/pull/1819) + - added as a shortcut to trigger bullet list formatting [#1819](https://github.com/quilljs/quill/pull/1819) - Fix pasting text-align styles [#1873](https://github.com/quilljs/quill/issues/1873) - Fix cursor position after dangerouslyPasteHTML [#1886](https://github.com/quilljs/quill/issues/1886) - Fix value of history stack in text-change handler [#1906](https://github.com/quilljs/quill/pull/1906) @@ -172,14 +171,18 @@ Thanks to [@berylw](https://github.com/berylw) and [@erinsinger93](https://githu Thank you [@araruna](https://github.com/araruna), [@bryanrsmith](https://github.com/bryanrsmith), [@haugstrup](https://github.com/haugstrup), [@icylace](https://github.com/icylace), [@leimig](https://github.com/leimig), [@LFDM](https://github.com/LFDM), [@nikparo](https://github.com/nikparo), [@rafpaf](https://github.com/rafpaf) and [@vk2sky](https://github.com/vk2sky) for your contributions to this release. -# 1.3.4 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.3.5) + +# v1.3.4 (2017-11-06) - Loosen dependency specification [#1748](https://github.com/quilljs/quill/issues/1748) - Loosen list autofill constraint [#1749](https://github.com/quilljs/quill/issues/1749) Thanks to [@danfuzz](https://github.com/danfuzz) and [@SoftVision-CarmenFat](https://github.com/SoftVision-CarmenFat) for contributions to this release! -# 1.3.3 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.3.4) + +# v1.3.3 (2017-10-09) - Fix `getFormat` with no parameters while editor is not focused [#1548](https://github.com/quilljs/quill/issues/1548) - Remove automatic highlighting across embeds [#1691](https://github.com/quilljs/quill/issues/1691) @@ -189,7 +192,9 @@ Thanks to [@danfuzz](https://github.com/danfuzz) and [@SoftVision-CarmenFat](htt Thank you [@altschuler](https://github.com/altschuler), [@arrocke](https://github.com/arrocke), [@guillaumepotier](https://github.com/guillaumepotier), [@sferoze](https://github.com/sferoze) and [@volser](https://github.com/volser) for your contributions to this release. -# 1.3.2 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.3.3) + +# v1.3.2 (2017-09-04) - Pasting into code block should always paste as code [#1624](https://github.com/quilljs/quill/issues/1624) - Fix removing embed selection when arrow keys change selection [#1633](https://github.com/quilljs/quill/issues/1633) @@ -199,14 +204,18 @@ Thank you [@altschuler](https://github.com/altschuler), [@arrocke](https://githu Thanks to [@abramz](https://github.com/abramz), [@amitm02](https://github.com/amitm02), [@eamodio](https://github.com/eamodio), [@HWliao](https://github.com/HWliao), [@mmitis](https://github.com/mmitis), [@nelsonpecora](https://github.com/nelsonpecora), [@nipunjain87](https://github.com/nipunjain87), and [@ValueBerry](https://github.com/ValueBerry) for contributions to this release! -# 1.3.1 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.3.2) + +# v1.3.1 (2017-08-07) - Fix placeholder when emptying text [#1594](https://github.com/quilljs/quill/issues/1594) - Fix inserting newline after header [#1616](https://github.com/quilljs/quill/issues/1616) Thank you [@Natim](https://github.com/Natim) and [@stephenLYao](https://github.com/stephenLYao) for your contributions to this release. -# 1.3.0 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.3.1) + +# v1.3.0 (2017-07-17) Add `matchVisual` [configuration](https://quilljs.com/docs/modules/clipboard/#configuration) to Clipboard. @@ -224,7 +233,9 @@ Add `matchVisual` [configuration](https://quilljs.com/docs/modules/clipboard/#co Thanks to [@alexkrolick](https://github.com/alexkrolick), [@amitm02](https://github.com/amitm02), [@Christilut](https://github.com/Christilut), [@danielschwartz](https://github.com/danielschwartz), [@emanuelbsilva](https://github.com/emanuelbsilva), [@ersommer](https://github.com/ersommer), [@fiurrr](https://github.com/fiurrr), [@jackmu95](https://github.com/jackmu95), [@jmzhang](https://github.com/jmzhang), [@mdpye](https://github.com/mdpye), [@ralrom](https://github.com/ralrom), [@sferoze](https://github.com/sferoze), [@simon-at-fugu](https://github.com/simon-at-fugu), and [@yogadzx](https://github.com/yogadzx) for contributions to this release! -# 1.2.6 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.3.0) + +# v1.2.6 (2017-06-05) - Disable Grammarly by default [#574](https://github.com/quilljs/quill/issues/574) - Fix RTL list spacing [#1485](https://github.com/quilljs/quill/pull/1485) @@ -233,7 +244,9 @@ Thanks to [@alexkrolick](https://github.com/alexkrolick), [@amitm02](https://git Thank you [@amitm02](https://github.com/amitm02), [@benbro](https://github.com/benbro) [@nickbaum](https://github.com/nickbaum), [@stalniy](https://github.com/stalniy) and [@ygrishajev](https://github.com/ygrishajev) for your contributions to this release. -# 1.2.5 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.2.6) + +# v1.2.5 (2017-05-29) - Fix cursor shifting to be exclusive of user cursor [#1367](https://github.com/quilljs/quill/issues/1367) - Fix iOS hover state on toolbar [#1388](https://github.com/quilljs/quill/issues/1388) @@ -245,7 +258,9 @@ Thank you [@amitm02](https://github.com/amitm02), [@benbro](https://github.com/b Thanks to [@aliciawood](https://github.com/aliciawood), [@benbro](https://github.com/benbro), [@denis-aes](https://github.com/denis-aes), [@despreju](https://github.com/despreju), [@GlenKPeterson](https://github.com/GlenKPeterson), [@haugstrup](https://github.com/haugstrup), [@jziggas](https://github.com/jziggas), [@RobAley](https://github.com/RobAley), [@sheley1998](https://github.com/sheley1998), [@silverprize](https://github.com/silverprize), and [@yairy](https://github.com/yairy) for contributions to this release! -# 1.2.4 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.2.5) + +# v1.2.4 (2017-04-18) - Fix pasting nested list [#906](https://github.com/quilljs/quill/issues/906) - Fix delete key interaction at end of list [#1277](https://github.com/quilljs/quill/issues/1277) @@ -259,7 +274,9 @@ Thanks to [@aliciawood](https://github.com/aliciawood), [@benbro](https://github Thanks to [@bigggge](https://github.com/bigggge), [@CoenWarmer](https://github.com/CoenWarmer), [@cutteroid](https://github.com/cutteroid), [@jay-cox](https://github.com/jay-cox), [@kiewic](https://github.com/kiewic), [@kloots](https://github.com/kloots), [@MichaelTontchev](https://github.com/MichaelTontchev), [@montlebalm](https://github.com/montlebalm), [@RichardNeill](https://github.com/RichardNeill), and [@vasconita](https://github.com/vasconita) for your contributions to this release. -# 1.2.3 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.2.4) + +# v1.2.3 (2017-03-29) - Fix scrolling when appending new lines [#1276](https://github.com/quilljs/quill/issues/1276) [#1361](https://github.com/quilljs/quill/issues/1361) - Fix binding to explicit shortcut key [#1365](https://github.com/quilljs/quill/issues/1365) @@ -267,13 +284,17 @@ Thanks to [@bigggge](https://github.com/bigggge), [@CoenWarmer](https://github.c Thank you [@artaommahe](https://github.com/artaommahe), [@c-w](https://github.com/c-w), [@EladBet](https://github.com/EladBet), [@emenoh](https://github.com/emenoh), and [@montlebalm](https://github.com/montlebalm) for contributions to this release! -# 1.2.2 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.2.3) + +# v1.2.2 (2017-02-27) - Fix backspace/delete on Windows/Ubuntu [#1334](https://github.com/quilljs/quill/issues/1334) Thanks to [@dinusuresh](https://github.com/dinusuresh) for your contributions to this release. -# 1.2.1 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.2.2) + +# v1.2.1 (2017-02-27) - Fix link removal on Snow theme [#1259](https://github.com/quilljs/quill/issues/1259) - Fix CMD+backspace on empty editor [#1319](https://github.com/quilljs/quill/issues/1319) @@ -281,7 +302,9 @@ Thanks to [@dinusuresh](https://github.com/dinusuresh) for your contributions to Thank you [@danielschwartz](https://github.com/@danielschwartz), [@JedWatson](https://github.com/@JedWatson), [@montlebalm](https://github.com/@montlebalm), and [@simi](https://github.com/@simi) for contributions to this release! -# 1.2.0 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.2.1) + +# v1.2.0 (2017-01-21) Add concept of experimental APIs: they are APIs meant to try out support for use cases we would like to address, but gives flexibility to find the right API interface. As such they are not covered by Semantic Versioning. Several are added to start things off: `find`, `getIndex`, `getLeaf`, `getLine`, `getLines`. @@ -289,7 +312,9 @@ Add concept of experimental APIs: they are APIs meant to try out support for use Thanks to [@haugstrup](https://github.com/haugstrup) for your contributions to this release. -# 1.1.10 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.2.0) + +# v1.1.10 (2017-01-16) - Preserve user selection on API changes [#1152](https://github.com/quilljs/quill/issues/1152) - Fix backspacing into emojis [#1230](https://github.com/quilljs/quill/issues/1230) @@ -298,17 +323,21 @@ Thanks to [@haugstrup](https://github.com/haugstrup) for your contributions to t Thank you [@benbro](https://github.com/benbro), [@haugstrup](https://github.com/haugstrup), [@peterweck](https://github.com/peterweck) and [@sbevels](https://github.com/sbevels) for contributions to this release! -# 1.1.9 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.1.10) + +# v1.1.9 (2017-01-02) -- Flip tooltips when vertically out of bounds [#851](https://github.com/quilljs/quill/issues/851) -- Fix IE11 autolinking and control backspace [#1028](https://github.com/quilljs/quill/issues/1028) -- Only show tooltip when user initiates selection change [#1193](https://github.com/quilljs/quill/issues/1193) -- Fix bug needing to click twice on align [#1220](https://github.com/quilljs/quill/issues/1220) -- Fix cut + pasting videos [#1222](https://github.com/quilljs/quill/issues/1222) +- Support pasting italics from Google Docs [#1185](https://github.com/quilljs/quill/issues/1185) +- Fix setting dropdown picker back to default [#1191](https://github.com/quilljs/quill/issues/1191) +- Fix code-block formatting on empty first line in Firefox [#1195](https://github.com/quilljs/quill/issues/1195) +- Prevent formatting via keyboard shortcuts when not whitelisted [#1197](https://github.com/quilljs/quill/issues/1197) +- Fix select-all copy and overwrite paste in Firefox [#1202](https://github.com/quilljs/quill/issues/1202) + +Thank you [@adfaure](https://github.com/adfaure), [@berndschimmer](https://github.com/berndschimmer), [@CoenWarmer](https://github.com/CoenWarmer), [@montlebalm](https://github.com/montlebalm), and [@TraceyYau](https://github.com/TraceyYau) for contributions to this release! -Thanks to [@amitguptagwl](https://github.com/amitguptagwl), [@antonlabunets](https://github.com/antonlabunets), [@benbro](https://github.com/benbro), [@eamodio](https://github.com/eamodio) and [@ygrishajev](https://github.com/ygrishajev) for your contributions to this release. +[All changes](https://github.com/quilljs/quill/releases/tag/v1.1.9) -# 1.1.8 +# v1.1.8 (2016-12-23) - Support pasting italics from Google Docs [#1185](https://github.com/quilljs/quill/issues/1185) - Fix setting dropdown picker back to default [#1191](https://github.com/quilljs/quill/issues/1191) @@ -318,7 +347,9 @@ Thanks to [@amitguptagwl](https://github.com/amitguptagwl), [@antonlabunets](htt Thank you [@adfaure](https://github.com/adfaure), [@berndschimmer](https://github.com/berndschimmer), [@CoenWarmer](https://github.com/CoenWarmer), [@montlebalm](https://github.com/montlebalm), and [@TraceyYau](https://github.com/TraceyYau) for contributions to this release! -# 1.1.7 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.1.8) + +# v1.1.7 (2016-12-13) - Fix dropdown values reverting to default [#901](https://github.com/quilljs/quill/issues/901) - Add config to prevent scroll jumping on paste [#1082](https://github.com/quilljs/quill/issues/1082) @@ -329,7 +360,9 @@ Thank you [@adfaure](https://github.com/adfaure), [@berndschimmer](https://githu Thanks 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. -# 1.1.6 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.1.7) + +# v1.1.6 (2016-12-06) ### Features @@ -342,7 +375,9 @@ Checklists [#759](https://github.com/quilljs/quill/issues/759) support has been Thank you [@jgmediadesign](https://github.com/jgmediadesign) and [@julienbmobile](https://github.com/julienbmobile) for contributions to this release! -# 1.1.5 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.1.6) + +# v1.1.5 (2016-11-07) - Remove unnecessary type attribute in documentation [#1087](https://github.com/quilljs/quill/pull/1087) - Fix chrome 52+ input file label open slow [#1090](https://github.com/quilljs/quill/pull/1090) @@ -350,22 +385,28 @@ Thank you [@jgmediadesign](https://github.com/jgmediadesign) and [@julienbmobile Thank you [@jleen](https://github.com/jleen), [@kaelig](https://github.com/kaelig), and [@YouHan26](https://github.com/YouHan26) for your contributions to this release. -# 1.1.3 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.1.5) + +# v1.1.3 (2016-10-24) - Update quill-delta [delta#2](https://github.com/quilljs/delta/issues/2) - Fix link creation [#1073](https://github.com/quilljs/quill/issues/1073) Thanks to [@eamodio](https://github.com/eamodio) and [@metsavir](https://github.com/metsavir) for contributions to this release! -# 1.1.2 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.1.3) + +# v1.1.2 (2016-10-24) - Fix setContents on already formatted text [#1065](https://github.com/quilljs/quill/issues/1065) - Fix regression [#1067](https://github.com/quilljs/quill/issues/1067) - Improve documentation [#1069](https://github.com/quilljs/quill/pull/1069) [#1070](https://github.com/quilljs/quill/pull/1070) -Thank 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. +Thank 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. + +[All changes](https://github.com/quilljs/quill/releases/tag/v1.1.2) -# 1.1.1 +# v1.1.1 (2016-10-21) ### Bug fixes @@ -379,7 +420,9 @@ Thanks to [@artaommahe](https://github.com/artaommahe), [@benbro](https://github Special 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. -# 1.1.0 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.1.1) + +# v1.1.0 (2016-10-17) ### Additions @@ -401,7 +444,9 @@ So a `strict` configuration option has been added. It is true by default so the Thank 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. -# 1.0.6 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.1.0) + +# v1.0.6 (2016-09-30) Documentation clarifications and bug fixes. @@ -412,11 +457,9 @@ Documentation clarifications and bug fixes. Thanks 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! -# 1.0.5 - -Became 1.0.6 with a build/deploy fix. +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.6) -# 1.0.4 +# v1.0.4 (2016-09-19) - Fix bubble theme defaults [#963](https://github.com/quilljs/quill/issues/963) - Fix browsers modifying inline nesting order [#971](https://github.com/quilljs/quill/issues/971) @@ -426,28 +469,38 @@ Became 1.0.6 with a build/deploy fix. Thank 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. -# 1.0.3 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.4) + +# v1.0.3 (2016-09-07) - Fix [#928](https://github.com/quilljs/quill/issues/928) Thank you [@scottmessinger](https://github.com/scottmessinger) for the bug report. -# 1.0.2 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.3) + +# v1.0.2 (2016-09-07) - Fix building quill.core.js [docs #11](https://github.com/quilljs/quilljs.github.io/issues/11) - Fix regression of [#793](https://github.com/quilljs/quill/issues/793) Thanks to [@eamodio](https://github.com/eamodio) and [@neandrake](https://github.com/neandrake) for their contributions to this release. -# 1.0.0 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.2) + +# v1.0.0 (2016-09-06) Quill 1.0 is released! Read the [official announcement](https://quilljs.com/blog/announcing-quill-1-0/). -# 1.0.0-rc.4 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0) + +# v1.0.0-rc.4 (2016-08-31) Fix one important bug [fdd920](https://github.com/quilljs/quill/commit/fdd920250c05403ed9e5d6d86826a00167ba0b09) -# 1.0.0-rc.3 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-rc.4) + +# v1.0.0-rc.3 (2016-08-29) A 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. @@ -462,7 +515,9 @@ A few bug fixes, one with with possibly significant implications. See the [issue Thank 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! -# 1.0.0-rc.2 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-rc.3) + +# v1.0.0-rc.2 (2016-08-23) A few bug fixes, including one significant [one](https://github.com/quilljs/quill/issues/883) @@ -474,7 +529,9 @@ A few bug fixes, including one significant [one](https://github.com/quilljs/quil Thanks to [benbro](https://github.com/benbro), [cutteroid](https://github.com/cutteroid), and [CapTec](https://github.com/CapTec) for their contributions to this release. -# 1.0.0-rc.1 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-rc.2) + +# v1.0.0-rc.1 (2016-08-23) A few bug fixes and performance improvements. @@ -493,7 +550,9 @@ A few bug fixes and performance improvements. Thank 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! -# 1.0.0-rc.0 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-rc.1) + +# v1.0.0-rc.0 (2016-08-18) Take a look at [Quill 1.0 Release Candidate](https://quilljs.com/blog/quill-1-0-release-candidate-released/) for more details. @@ -545,7 +604,9 @@ A huge thank you to all contributors to through the beta! Special thanks goes to - [@u9520107](https://github.com/u9520107) - [@WriterStat](https://github.com/WriterStat) -# 1.0.0-beta.11 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-rc.0) + +# v1.0.0-beta.11 (2016-08-03) Fixed some regressive bugs from previous release. @@ -553,11 +614,13 @@ Fixed some regressive bugs from previous release. - Fix activating more than one format before typing [#841](https://github.com/quilljs/quill/issues/841) - Run default matchers before before user defined ones [#843](https://github.com/quilljs/quill/issues/843) -- Fix merging theme configurations [#844](https://github.com/quilljs/quill/issues/844), [#845](845) +- Fix merging theme configurations [#844](https://github.com/quilljs/quill/issues/844), [#845](https://github.com/quilljs/quill/issues/845) Thanks [benbro](https://github.com/benbro), [jackmu95](https://github.com/jackmu95), and [george-norris-salesforce](https://github.com/george-norris-salesforce) for the bug reports. -# 1.0.0-beta.10 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-beta.11) + +# v1.0.0-beta.10 (2016-08-03) Lots of bug fixes and performance improvements. @@ -586,7 +649,9 @@ Lots of bug fixes and performance improvements. Thanks 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. -# 1.0.0-beta.9 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-beta.10) + +# v1.0.0-beta.9 (2016-07-19) Potentially the final beta before a release candidate, if no major issues are discovered. @@ -611,7 +676,9 @@ Potentially the final beta before a release candidate, if no major issues are di Thank you [@benbro](https://github.com/benbro), [@KameSama](https://github.com/KameSama), and [@sachinrekhi](https://github.com/sachinrekhi) for contributions to this release! -# 1.0.0-beta.8 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-beta.9) + +# v1.0.0-beta.8 (2016-07-08) Weekly beta preview release. The editor is almost ready for release candidacy but a couple cycles will be spent on the Snow and Bubble interfaces. @@ -637,15 +704,13 @@ Image insertion is being reworked in the provided Snow and Bubble themes. The ol - Fix align button active state [#780](https://github.com/quilljs/quill/issues/780) - Fix format text on falsy value [#782](https://github.com/quilljs/quill/issues/782) - Use native cut [#785](https://github.com/quilljs/quill/issues/785) -- Fix initializing document where last line is formatted [#786](https://github.com/quilljs/quill/issues/786) +- Fix inializing document where last line is formatted [#786](https://github.com/quilljs/quill/issues/786) Thanks 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. -# 1.0.0-beta.7 - -Became 1.0.0-beta.8 with a fix. +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-beta.8) -# 1.0.0-beta.6 +# v1.0.0-beta.6 (2016-06-21) Weekly beta preview release. @@ -668,7 +733,9 @@ Weekly beta preview release. Thank 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. -# 1.0.0-beta.5 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-beta.6) + +# v1.0.0-beta.5 (2016-06-14) Weekly beta preview release. @@ -686,7 +753,9 @@ Weekly beta preview release. Thanks 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. -# 1.0.0-beta.4 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-beta.5) + +# v1.0.0-beta.4 (2016-06-03) Weekly beta preview release. @@ -713,6 +782,10 @@ Weekly beta preview release. Thank you [@benbro](https://github.com/benbro), [@brynjagr](https://github.com/brynjagr), and [@sachinrekhi](https://github.com/sachinrekhi) for contributions to this release. +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-beta.4) + +# v1.0.0-beta.3 (2016-05-25) + # 1.0.0-beta.3 Weekly beta preview release. @@ -742,7 +815,9 @@ Weekly beta preview release. Thanks 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. -# 1.0.0-beta.2 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-beta.3) + +# v1.0.0-beta.2 (2016-05-15) Weekly beta preview release. Major emphasis on keyboard API and customization. @@ -764,7 +839,7 @@ Weekly beta preview release. Major emphasis on keyboard API and customization. - 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) - removeFormat() removes last line block formats [#649](https://github.com/quilljs/quill/issues/649) -- Fix text direction icon direction [#654](https://github.com/quilljs/quill/issues/654) +- Fix text direction icon directon [#654](https://github.com/quilljs/quill/issues/654) - Fix text insertion into root scroll [#655](https://github.com/quilljs/quill/issues/655) - Fix focusing on placeholder text in FF [#656](https://github.com/quilljs/quill/issues/656) - Hide placeholder on formatted line [#657](https://github.com/quilljs/quill/issues/657) @@ -772,7 +847,9 @@ Weekly beta preview release. Major emphasis on keyboard API and customization. Thanks 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! -# 1.0.0-beta.1 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-beta.2) + +# v1.0.0-beta.1 (2016-05-10) Weekly beta preview release. @@ -799,46 +876,355 @@ Weekly beta preview release. Thanks to [@benbro](https://github.com/benbro) for the bug reports for this release! -# 1.0.0-beta.0 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-beta.1) + +# v1.0.0-beta.0 (2016-05-04) Please see the [Upgrading to 1.0](http://beta.quilljs.com/guides/upgrading-to-1-0/) guide. -# 0.20.1 +[All changes](https://github.com/quilljs/quill/releases/tag/v1.0.0-beta.0) + +# v0.20.1 (2015-11-11) Patch release for everything prior to Parchment's integration into Quill. ### Features -- API for hotkey removal [#110](https://github.com/quilljs/quill/issues/110), [#453](https://github.com/quilljs/quill/pull/453) +- API for hotkey removal #110, #453 ### Bug Fixes -- Editor jumps to top when clicking formatting buttons [#288](https://github.com/quilljs/quill/issues/288) -- Editor does not preserve bold text when pasted from itself [#306](https://github.com/quilljs/quill/issues/306) -- Focus issues when scrolled down in IE10+ [#415](https://github.com/quilljs/quill/issues/415) -- Error if keyboard shortcut used for unavailable format [#432](https://github.com/quilljs/quill/issues/432) -- Scrolls to cursor if not visible after enter/deletion/paste [#433](https://github.com/quilljs/quill/issues/433) +- Editor jumps to top when clicking formatting buttons #288 +- Editor does not preserve bold text when pasted from itself #306 +- Focus issues when scrolled down in IE10+ #415 +- Error if keyboard shortcut used for unavailable format #432 +- Scrolls to cursor if not visible after enter/deletion/paste #433 -Thanks 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! +Thanks to @devtimi, @emannes, @ivan-i, @magus, @Nick-The-Uncharted, @rlivsey, @thomsbg, @wallylawless for their bug reports and pull requests. -# 0.20.0 +[All changes](https://github.com/quilljs/quill/releases/tag/v0.20.1) + +# v0.20.0 (2015-07-28) ### Breaking Changes -- `getBounds` now returns `null` instead of throwing an error [#412](https://github.com/quilljs/quill/pull/412) +- `getBounds` now returns `null` instead of throwing an error #412 ### Features -- Allow `Document` module to be `Quill.require`'d [#400](https://github.com/quilljs/quill/pull/400) -- Paste manager can optionally accept a custom conversion function [#401](https://github.com/quilljs/quill/pull/401) -- Undo manager can optionally only affect user initiated changes [#413](https://github.com/quilljs/quill/pull/413) +- Allow `Document` module to be `Quill.require`'d #400 +- Paste manager can optionally accept a custom conversion function #401 +- Undo manager can optionally only affect user initiated changes #413 ### Bug Fixes -- Retain formats between lines [#403](https://github.com/quilljs/quill/pull/403) -- Fix bug that allows nested format tags [#406](https://github.com/quilljs/quill/pull/406) -- Flatten nested list instead of truncating on paste [#421](https://github.com/quilljs/quill/issues/421) -- Fix handling Chrome's usage of font-weight instead of tags [#423](https://github.com/quilljs/quill/issues/423) -- Fix bug that allows nested parent tags [#426](https://github.com/quilljs/quill/pull/426) +- Retain formats between lines #403 +- Fix bug that allows nested format tags #406 +- Flatten nested list instead of truncating on paste #421 +- Fix handling Chrome's usage of font-weight instead of tags #423 +- Fix bug that allows nested parent tags #426 + +Thank you @thomsbg, @yyjhao, @willrowe, @hryanjones, @nickretallack for your contributions to this release! + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.20.0) + +# v0.19.14 (2015-06-17) + +Fixed #296, #376, #378, #380 +Merged #367, #375, #381, #385, #389 + +Many thanks to @calibr, @aliarshad9691, @cphyc, @jcludwig, @svermeulen, @igmcdowell, @yyjhao, and @ooflorent for your issue reports and pull requests! + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.14) + +# v0.19.12 (2015-05-08) + +- Fixed #61, #352, #353, #357 +- Merged #356, #365 + +Thank you @brettimus, @willrowe, @TGVarik, @DadaMonad, @cphyc, @EricGrange for their contributions to this release! + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.12) + +# v0.19.11 (2015-04-26) + +- Fixed #312, #341, #346, #351 +- Merged #293, #302, #316, #319, #328, #337, #339 + +Thank you to all those that contributed to this release: @thomsbg, @willrowe, @broveloper, @gregmuellegger, @masonicboom, @natejenkins, @wallylawless, @josephmisiti, @quangbuule + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.11) + +# v0.19.10 (2015-03-20) + +- Merged #256, #281, #283, #291, #305, #311 +- Fixed #286, #310 + +Thank you @butsjoh, @natejenkins and @thomsbg, especially @thomsbg who contributed several this release! + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.10) + +# v0.19.8 (2014-12-09) + +- Bug fixes +- Closed #274 +- Merged #270, #271 + +Thank you @danreeves @bjoerge for the bug reports and @thomsbg for the pull requests! + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.8) + +# v0.19.7 (2014-11-25) + +- Fix npm build #258 + +Thank you @mgan59 for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.7) + +# v0.19.5 (2014-11-24) + +- Bug fixes +- Add experimental API getBounds() + +Thanks to @thomsbg and @fancyoung for the PRs + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.5) + +# v0.19.4 (2014-11-16) + +- Add destroy() method for editor cleanup +- Add setText() method + +Big thanks to @leoasis for PR #223 which closes #138 + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.4) + +# v0.19.3 (2014-11-10) + +- Fix bug #250 + +Thank you @Torsten85 for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.3) + +# v0.19.2 (2014-11-08) + +- Merge #248 +- Build enhancements + +Thanks @yilativ for his PR + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.2) + +# v0.19.1 (2014-11-07) + +- Fix bug #247 + +Thank you @LuisHerranz for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.1) + +# v0.19.0 (2014-11-07) + +Check out [this post](http://quilljs.com/blog/quill-v0-19-no-more-iframes/) for more details. + +- No longer use iframe to contain editor +- Quill containers' class names changed to prefix `ql-` +- Some module containers' classnames shortened ex. `ql-toolbar-container` is now `ql-toolbar` +- `Quill.prototype.addStyles` removed +- Allow false value to styles config to disable adding styles +- Renamed `default` theme to `base` +- Npm name changed to `quill` +- Added style guide +- Resolve issues #149, #179, #183, #221, #232, #235, #236, #242, #246 +- Merge PR #243 + +Thank you @paulchaplin @leoasis @benbro @lewisvance @KevinMartin @sferoze @brettPeriscopic for their issue reports. Thank you @thomsbg for his PR and @leoasis for his work on an iframe config PR. + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.19.0) + +# v0.18.1 (2014-10-22) + +Cleanup and bug fixes + +- Fixes #216, #217, #222, #224, #229 + +Thank you @brettPeriscopic for the PR and @dorjeduck, @BattleBrisket, @benbro, @sferoze for the reports. + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.18.1) + +# v0.18.0 (2014-10-20) + +Integrates the new [Delta](http://quilljs.com/blog/a-new-delta/) format. The change should be low disruption unless you were persisting the old format in which case check out the [upgrade guide](http://quilljs.com/blog/upgrading-to-rich-text-deltas/). + +Thank you @josephg for the collaboration. + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.18.0) + +# v0.17.6 (2014-09-22) + +- Reduce affected platforms for #218 + +Thank you @benbro for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.17.6) + +# v0.17.5 (2014-09-22) + +- Bug fix PR #215 +- Fix #195 + +Thank you @leoasis for the PR and @mik01aj for the bug report + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.17.5) + +# v0.17.4 (2014-09-10) + +- Bug fixes and enhancements +- Closes #200 #206 #208 #210 + +Thank you @leoasis for the pull request and @leo-zhao @choxy and @u9520107 for the issue reports! + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.17.4) + +# v0.17.3 (2014-08-20) + +- Fix bug #199 + +Thank you @benbro for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.17.3) + +# v0.17.2 (2014-08-11) + +- Fix bug #194 +- Fix running tests on Travis for pull requests + +Thank you @benbro for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.17.2) + +# v0.17.0 (2014-08-06) + +- Improved module interface +- New, sharper toolbar icons +- Fix #66, #143 and #185 + +Thank you @benbro and @jbrooksuk for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.17.0) + +# v0.16.1 (2014-08-01) + +- Fix #181 and #182 +- Add basic end-to-end test + +Thank you @benbro and @whather for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.16.1) + +# v0.16.0 (2014-07-22) + +- Lines are now represented by `
` instead of `

`. Quill will automatically convert `

` to `

` but to save a step initial text should now use divs as lines. +- Fix issues #159 and #171 + +Thank you @whather and @segphault for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.16.0) + +# v0.15.3 (2014-07-10) + +- Fix #165 + +Thank you @EtaiG for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.15.3) + +# v0.15.2 (2014-07-10) + +- Large reduction in file size due to custom build of lodash and new version of tandem-core +- Add tasks to partially automate release builds +- Integrate protractor for webdriver testing +- Add custom server to compile and build on the fly + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.15.2) + +# v0.15.1 (2014-07-01) + +- Allows adding external stylesheets #155 +- Fix #152 + +Thank you @enhdless for the PR and @gkalabin for the bug report + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.15.1) + +# v0.15.0 (2014-06-24) + +- Package built files for bower https://github.com/quilljs/quill/issues/144 +- Rename build/demo to dist/examples for consistency + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.15.0) + +# v0.14.2 (2014-06-09) + +Couple bug fixes including #139 + +Thank you @guille and @MikeGWem for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.14.2) + +# v0.14.0 (2014-06-02) + +- Changed class namespace from sc to ql (previously Quill was named Scribe) +- Bug fixes #80, #113 and #132 + +Note this version is not backwards compatible with 0.13.x. To upgrade, change all of the [toolbar](http://quilljs.com/docs/modules/toolbar/) classnames from an "sc-" prefix to a "ql-" prefix. + +Thank you @byronm @mathiasose @ericmm for reporting and @tjsail33 for the bugfix pr! + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.14.0) + +# v0.13.7 (2014-05-28) + +Bug fix #126 + +Thank you @benbro for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.13.7) + +# v0.13.5 (2014-05-26) + +- Add support for lists/bullets #82 +- Fix #123, #114 + +Thank you @logankoester for the PR and @mukimov @byronm for reporting bugs. + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.13.5) + +# v0.13.4 (2014-05-19) + +Bug fixes #88 #98 + +Thank you @benbro @jhdavids8 for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.13.4) + +# v0.13.3 (2014-05-14) + +- Bug fixes #73, #76, #84, #89 + +Thank you @eminn @philfreo @piscisaureus @ranjith-mrk for reporting + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.13.3) + +# v0.13.2 (2014-05-08) + +- Fix Firefox newline bug +- Add text alignment + +[All changes](https://github.com/quilljs/quill/releases/tag/v0.13.2) + +# v0.13.1 (2014-05-07) -Thank 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! +[All changes](https://github.com/quilljs/quill/releases/tag/v0.13.1)