You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
3.6 KiB
137 lines
3.6 KiB
3 years ago
|
## 1.3.0 (2022-05-30)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Fix an issue where the default behavior of history beforeInput events could still go through when the undo history is empty.
|
||
|
|
||
|
### New features
|
||
|
|
||
|
Include TypeScript type declarations.
|
||
|
|
||
|
## 1.2.0 (2021-08-18)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Fix a bug that caused the `beforeInput` handler to not actually invoke the history commands properly.
|
||
|
|
||
|
### New features
|
||
|
|
||
|
The history plugin now listens for `beforeInput` events with `historyUndo` or `historyRedo` type, and applies the undo/redo commands when they occur.
|
||
|
|
||
|
## 1.1.3 (2019-12-10)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Fixes a regression where appeneded transactions were combined into the previous history event even if that had been explicitly closed.
|
||
|
|
||
|
## 1.1.2 (2019-11-20)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Rename ES module files to use a .js extension, since Webpack gets confused by .mjs
|
||
|
|
||
|
## 1.1.1 (2019-11-19)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
The file referred to in the package's `module` field now is compiled down to ES5.
|
||
|
|
||
|
## 1.1.0 (2019-11-08)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Prevents appended transactions from starting a new event group, even if they were created a while after the previous transaction.
|
||
|
|
||
|
### New features
|
||
|
|
||
|
Add a `module` field to package json file.
|
||
|
|
||
|
## 1.0.4 (2019-02-19)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Fix a bug that corrupted selection data in the history when applying remote steps in some cases.
|
||
|
|
||
|
## 1.0.3 (2018-10-08)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Appending a transaction to an undo transaction will no longer immediately clear the redo history.
|
||
|
|
||
|
When handling appended transactions, the history will keep the last step in the original transaction, not the one from the appended transaction, for testing whether a subsequent transaction is adjacent to the previous one.
|
||
|
|
||
|
## 1.0.2 (2018-03-13)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Fix a bug that could corrupt the history when rebasing changes because of collaborative editing.
|
||
|
|
||
|
## 1.0.1 (2018-03-05)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Fix crash that could occur (in specific circumstance) when redoing.
|
||
|
|
||
|
## 0.24.0 (2017-09-25)
|
||
|
|
||
|
### New features
|
||
|
|
||
|
It is no longer necessary to manually enable the `preserveItems` option to the history plugin when using collaborative editing. (This behavior is now automatically enabled when necessary.)
|
||
|
|
||
|
## 0.20.0 (2017-04-03)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Appended transactions no longer generate undo history events.
|
||
|
|
||
|
## 0.19.0 (2017-03-16)
|
||
|
|
||
|
### New features
|
||
|
|
||
|
A new function [`closeHistory`](https://prosemirror.net/docs/ref/version/0.19.0.html#history.closeHistory) can be used to force separation of history events at the start of a given transaction.
|
||
|
|
||
|
## 0.18.0 (2017-02-24)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Fix a problem where simultaneous collaborative editing could break the undo history.
|
||
|
|
||
|
## 0.17.1 (2017-02-02)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Fix issue where collaborative editing corner cases could corrupt the history.
|
||
|
|
||
|
## 0.12.1 (2016-11-01)
|
||
|
|
||
|
### Bug fixes
|
||
|
|
||
|
Fix crash in undo or redo commands when the history is empty.
|
||
|
|
||
|
## 0.12.0 (2016-10-21)
|
||
|
|
||
|
### Breaking changes
|
||
|
|
||
|
The [`history`](https://prosemirror.net/docs/ref/version/0.12.0.html#history.history) export is now a function
|
||
|
that creates a history plugin, rather than a plugin instance.
|
||
|
|
||
|
### New features
|
||
|
|
||
|
Add a
|
||
|
[`newGroupDelay`](https://prosemirror.net/docs/ref/version/0.12.0.html#history.history^config.newGroupDelay) plugin
|
||
|
option. This brings back the behavior where pausing between edits will
|
||
|
automatically cause the history to put subsequent changes in a new
|
||
|
undo event.
|
||
|
|
||
|
## 0.11.0 (2016-09-21)
|
||
|
|
||
|
### Breaking changes
|
||
|
|
||
|
Moved into a separate module. Now acts as a plugin that can be omitted
|
||
|
or replaced by a different implementation if desired.
|
||
|
|
||
|
Merging subsequent changes into a single undo 'event' is now done by
|
||
|
proximity in the document (the changes must touch) rather than in
|
||
|
time. This will probably have to be further refined.
|
||
|
|