Changelog
v1.1.2 (2016-10-24)
Thank you benbro, derickruiz, eamodio, hallaathrad, and philly385 for your contributions to this release.
Changelog
v1.1.1 (2016-10-21)
Thanks to @artaommahe, @benbro, @fuffalist, @sachinrekhi, @sergop321, and @tlg for contributions to this release!
Special thanks to @DadaMonad for contributions on fast-diff that enabled the #746 fix.
Changelog
v1.1.0 (2016-10-17)
Quill 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. The natural fix is to ignore user initiated actions, even if it came through an API call, when the editor is in readOnly mode.
However, 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.
So a strict
configuration option has been added. It is true by default so the above behavior is unchanged, and #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.
Thank you @benbro, @cutteroid, @evansolomon, @felipeochoa, jackmu95, @joedynamite, @lance13c, @leebenson, @maartenvanvliet, @sarbbottam, @viljark, @w00fz for their contributions to this release.
Changelog
v1.0.6 (2016-09-30)
Documentation clarifications and bug fixes.
<select>
without themes #997code
icon to code-block
#998formatLine
did not ignore inline formats 8a7190Thanks to @dropfen, @evansolomon, @hallaathrad, @janyksteenbeek, @jackmu95, @marktron, @mcat-ee, @unhammer, and @zeke for contributions to this release!
Changelog
v1.0.4 (2016-09-19)
pasteHTML
for removal in Quill 2.0 #981Thank you jackmu95, kristeehan, ruffle1986, sergop321, sferoze, and sijad for contributions to this release.
Changelog
v1.0.2 (2016-09-07)
Thanks to @eamodio and @neandrake for their contributions to this release.