diff --git a/AUTHORS b/AUTHORS index 59e0cbbf64..ad6873d9b2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -299,6 +299,7 @@ Hanzhao Deng Harald Schilly Hardest Harshvardhan Gupta +Hasan Delibaş Hasan Karahan Heanes Hector Oswaldo Caballero @@ -320,6 +321,7 @@ Ian Wetherbee Ice White ICHIKAWA, Yuji idleberg +Igor Petruk ilvalle Ilya Kharlamov Ingo Richter @@ -374,6 +376,7 @@ Joel Einbinder joelpinheiro joewalsh Johan Ask +Johannes John Connor John-David Dalton John Engler @@ -444,6 +447,7 @@ Lanfei Lanny laobubu Laszlo Vidacs +leaf leaf corcoran Lemmon Leo Baschy @@ -601,10 +605,13 @@ noragrossman Norman Rzepka Nouzbe Oleksandr Yakovenko +Olivia Ytterbrink +Opender Singh opl- Oreoluwa Onatemowo oscar.lofwenhamn Oskar Segersvärd +ossdev overdodactyl pablo pabloferz @@ -752,6 +759,7 @@ Tako Schotanus Takuji Shimokawa Takuya Matsuyama Tarmil +T. Brandon Ashley TDaglis tel Tentone diff --git a/CHANGELOG.md b/CHANGELOG.md index 6de8dab5c0..934eec6a38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,35 @@ +## 5.50.0 (2019-12-20) + +### Bug fixes + +Make Shift-Delete to cut work on Firefox. + +[closetag addon](https://codemirror.net/demo/closetag.html): Properly handle self-closing tags. + +[handlebars mode](https://codemirror.net/mode/handlebars/): Fix triple-brace support. + +[searchcursor addon](https://codemirror.net/doc/manual.html#addon_searchcursor): Support mathing `$` in reverse regexp search. + +[panel addon](https://codemirror.net/doc/manual.html#addon_panel): Don't get confused by changing panel sizes. + +[javascript-hint addon](https://codemirror.net/doc/manual.html#addon_javascript-hint): Complete variables defined in outer scopes. + +[sublime bindings](https://codemirror.net/demo/sublime.html): Make by-subword motion more consistent with Sublime Text. + +[julia mode](https://codemirror.net/mode/julia/): Don't break on zero-prefixed integers. + +[elm mode](https://codemirror.net/mode/elm/): Sync with upstream version. + +[sql mode](https://codemirror.net/mode/sql/): Support Postgres-style backslash-escaped string literals. + +### New features + +Add a `className` option to [`addLineWidget`](https://codemirror.net/doc/manual.html#addLineWidget). + +[foldcode addon](https://codemirror.net/doc/manual.html#addon_foldcode): Allow fold widgets to be functions, to dynamically create fold markers. + +New themes: [ayu-dark](https://codemirror.net/demo/theme.html#ayu-dark) and [ayu-mirage](https://codemirror.net/demo/theme.html#ayu-mirage). + ## 5.49.2 (2019-10-21) ### Bug fixes diff --git a/doc/manual.html b/doc/manual.html index d693b784e4..b3a547124d 100644 --- a/doc/manual.html +++ b/doc/manual.html @@ -69,7 +69,7 @@

User manual and reference guide - version 5.49.3 + version 5.50.0

CodeMirror is a code-editor component that can be embedded in diff --git a/doc/releases.html b/doc/releases.html index 6d653194f9..7ed42c85d6 100644 --- a/doc/releases.html +++ b/doc/releases.html @@ -30,6 +30,24 @@

Release notes and version history

Version 5.x

+

20-12-2019: Version 5.50.0:

+ + +

21-10-2019: Version 5.49.2: