Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
luin committed Feb 13, 2024
1 parent aa0eba9 commit 81e7e99
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
32 changes: 17 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,33 @@
# [Unreleased]

- Fix toolbar button state not updated in some cases
- Narrower `BubbleTheme.tooltip` type

# 2.0.0-rc.1

- Remove unnecessary lodash usages.
- Fix toolbar button state not updated in some cases
- Remove unnecessary lodash usages

# 2.0.0-rc.0

- **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

- 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 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

# 2.0.0-beta.1

- Fix syntax label from "Javascript" to "JavaScript".
- Fix typing errors for emitter.
- Inline SVG images for easier bundler setup.
- Improve typing for Registry.
- Fix syntax label from "Javascript" to "JavaScript"
- Fix typing errors for emitter
- Inline SVG images for easier bundler setup
- Improve typing for Registry

# 2.0.0-beta.0

Expand Down
2 changes: 1 addition & 1 deletion packages/quill/test/unit/modules/toolbar.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ describe('Toolbar', () => {
expect(leftButton.getAttribute('aria-pressed')).toBe('false');
});

test('update on format', function () {
test('update on format', () => {
const { container, quill } = setup();
const boldButton = container?.parentNode?.querySelector('button.ql-bold');
quill.setSelection(1, 2);
Expand Down

0 comments on commit 81e7e99

Please sign in to comment.