2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-08-12 03:32:44 -06:00

Add most recently merged PR (#170) to changelog

This commit is contained in:
Jeroen Akkerman 2020-03-20 13:47:43 +01:00
parent a42bcddc2f
commit 4e5e1c43a6
2 changed files with 5 additions and 2 deletions

View File

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `inputStyle` and `nativeSpellcheck` options to manage the native language of the browser (Thanks to [@firm1], [#143]). - `inputStyle` and `nativeSpellcheck` options to manage the native language of the browser (Thanks to [@firm1], [#143]).
- Group buttons in drop-down lists by adding a sub-option `children` for the items in the toolbar (Thanks to [@firm1], [#141]). - Group buttons in drop-down lists by adding a sub-option `children` for the items in the toolbar (Thanks to [@firm1], [#141]).
- `sanitizerFunction` option to allow custom HTML sanitizing in the markdown preview (Thanks to [@adamb70], [#147]). - `sanitizerFunction` option to allow custom HTML sanitizing in the markdown preview (Thanks to [@adamb70], [#147]).
- Time formatting and custom text options for the autosave message (Thanks to [@dima-bzz], [#170]).
### Changed ### Changed
- Delay before assuming that submit of the form as failed is `autosave.submit_delay` instead of `autosave.delay` (Thanks to [@Situphen], [#139]). - Delay before assuming that submit of the form as failed is `autosave.submit_delay` instead of `autosave.delay` (Thanks to [@Situphen], [#139]).
- Add `watch` task for gulp. - Add `watch` task for gulp.
@ -148,6 +149,7 @@ Project forked from [SimpleMDE](https://github.com/sparksuite/simplemde-markdown
[#9]: https://github.com/Ionaru/easy-markdown-editor/issues/9 [#9]: https://github.com/Ionaru/easy-markdown-editor/issues/9
<!-- Linked PRs --> <!-- Linked PRs -->
[#170]: https://github.com/Ionaru/easy-markdown-editor/pull/170
[#143]: https://github.com/Ionaru/easy-markdown-editor/pull/143 [#143]: https://github.com/Ionaru/easy-markdown-editor/pull/143
[#139]: https://github.com/Ionaru/easy-markdown-editor/pull/139 [#139]: https://github.com/Ionaru/easy-markdown-editor/pull/139
[#132]: https://github.com/Ionaru/easy-markdown-editor/pull/132 [#132]: https://github.com/Ionaru/easy-markdown-editor/pull/132
@ -165,6 +167,7 @@ Project forked from [SimpleMDE](https://github.com/sparksuite/simplemde-markdown
[#19]: https://github.com/Ionaru/easy-markdown-editor/pull/19 [#19]: https://github.com/Ionaru/easy-markdown-editor/pull/19
<!-- Linked users --> <!-- Linked users -->
[@dima-bzz]: https://github.com/dima-bzz
[@firm1]: https://github.com/firm1 [@firm1]: https://github.com/firm1
[@Situphen]: https://github.com/Situphen [@Situphen]: https://github.com/Situphen
[@t49tran]: https://github.com/t49tran [@t49tran]: https://github.com/t49tran

View File

@ -55,8 +55,8 @@ function styles() {
// Watch for file changes // Watch for file changes
function watch() { function watch() {
gulp.watch('./src/js/**/*.js', scripts) gulp.watch('./src/js/**/*.js', scripts);
gulp.watch(css_files, styles) gulp.watch(css_files, styles);
} }
var build = gulp.parallel(gulp.series(lint, scripts), styles); var build = gulp.parallel(gulp.series(lint, scripts), styles);