File tree Expand file tree Collapse file tree 7 files changed +39
-4
lines changed
Expand file tree Collapse file tree 7 files changed +39
-4
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Adán Lobato
1515Aditya Toshniwal
1616Adrian Aichner
1717Adrian Heine
18+ Adrian Kunz
1819Adrien Bertrand
1920aeroson
2021Ahmad Amireh
@@ -332,6 +333,7 @@ Hiroyuki Makino
332333hitsthings
333334Hocdoc
334335Howard
336+ Howard Jing
335337Hugues Malphettes
336338Ian Beck
337339Ian Davies
@@ -348,6 +350,7 @@ ilvalle
348350Ilya Kharlamov
349351Ilya Zverev
350352Ingo Richter
353+ Intervue
351354Irakli Gozalishvili
352355Ivan Kurnosov
353356Ivoah
Original file line number Diff line number Diff line change 1+ ## 5.58.0 (2020-09-21)
2+
3+ ### Bug fixes
4+
5+ Make backspace delete by code point, not glyph.
6+
7+ Suppress flickering focus outline when clicking on scrollbars in Chrome.
8+
9+ Fix a bug that prevented attributes added via ` markText ` from showing up unless the span also had some other styling.
10+
11+ Suppress cut and paste context menu entries in readonly editors in Chrome.
12+
13+ [ placeholder addon] ( https://codemirror.net/doc/manual.html#addon_placeholder ) : Update placeholder visibility during composition.
14+
15+ ### New features
16+
17+ Make it less cumbersome to style new lint message types.
18+
19+ [ vim bindings] ( https://codemirror.net/demo/vim.html ) : Support black hole register, ` gn ` and ` gN `
20+
121## 5.57.0 (2020-08-20)
222
323### Bug fixes
Original file line number Diff line number Diff line change 7070< section class =first id =overview >
7171 < h2 style ="position: relative ">
7272 User manual and reference guide
73- < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.57 .0</ span >
73+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.58 .0</ span >
7474 </ h2 >
7575
7676 < p > CodeMirror is a code-editor component that can be embedded in
Original file line number Diff line number Diff line change @@ -30,6 +30,18 @@ <h2>Release notes and version history</h2>
3030
3131 < h2 > Version 5.x</ h2 >
3232
33+ < p class ="rel "> 21-09-2020: < a href ="https://codemirror.net/codemirror-5.58.0.zip "> Version 5.58.0</ a > :</ p >
34+
35+ < ul class ="rel-note ">
36+ < li > Make backspace delete by code point, not glyph.</ li >
37+ < li > Suppress flickering focus outline when clicking on scrollbars in Chrome.</ li >
38+ < li > Fix a bug that prevented attributes added via < code > markText</ code > from showing up unless the span also had some other styling.</ li >
39+ < li > Suppress cut and paste context menu entries in readonly editors in Chrome.</ li >
40+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_placeholder "> placeholder addon</ a > : Update placeholder visibility during composition.</ li >
41+ < li > Make it less cumbersome to style new lint message types.</ li >
42+ < li > < a href ="https://codemirror.net/demo/vim.html "> vim bindings</ a > : Support black hole register, < code > gn</ code > and < code > gN</ code > </ li >
43+ </ ul >
44+
3345 < p class ="rel "> 20-08-2020: < a href ="https://codemirror.net/codemirror-5.57.0.zip "> Version 5.57.0</ a > :</ p >
3446
3547 < ul class ="rel-note ">
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ <h2>This is CodeMirror</h2>
9999 </ div >
100100 </ div >
101101 < div class =actionsleft >
102- Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.57 .0</ a > .< br >
102+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.58 .0</ a > .< br >
103103 You can see the < a href ="https://github.com/codemirror/codemirror " title ="Github repository "> code</ a > ,< br >
104104 read the < a href ="doc/releases.html "> release notes</ a > ,< br >
105105 or study the < a href ="doc/manual.html "> user manual</ a > .
Original file line number Diff line number Diff line change 11{
22 "name" : " codemirror" ,
3- "version" : " 5.57 .0" ,
3+ "version" : " 5.58 .0" ,
44 "main" : " lib/codemirror.js" ,
55 "style" : " lib/codemirror.css" ,
66 "author" : {
Original file line number Diff line number Diff line change @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
6666
6767addLegacyProps ( CodeMirror )
6868
69- CodeMirror . version = "5.57 .0"
69+ CodeMirror . version = "5.58 .0"
You can’t perform that action at this time.
0 commit comments