File tree Expand file tree Collapse file tree 7 files changed +46
-4
lines changed
Expand file tree Collapse file tree 7 files changed +46
-4
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ aeroson
2020Ahmad Amireh
2121Ahmad M. Zawawi
2222ahoward
23+ Ajin Abraham
2324Akeksandr Motsjonov
2425Alasdair Smith
2526AlbertHilb
@@ -100,6 +101,7 @@ Bem Jones-Bey
100101benbro
101102Benedikt Meurer
102103benhormann
104+ Ben Hormann
103105Beni Cherniavsky-Paskin
104106Benjamin DeCoste
105107Benjamin Young
120122boomyjee
121123Bo Peng
122124borawjm
125+ Boris K
123126Brad Metcalf
124127Brandon Frohs
125128Brandon Wamboldt
@@ -216,6 +219,7 @@ Dick Choi
216219Diego Fernandez
217220dignifiedquire
218221Dimage Sapelkin
222+ Dinindu D. Wanniarachchi
219223dmaclach
220224Dmitry Kiselyov
221225domagoj412
@@ -394,6 +398,7 @@ joelpinheiro
394398joewalsh
395399Johan Ask
396400Johannes
401+ John Chen
397402John Connor
398403John-David Dalton
399404John Engler
@@ -660,6 +665,7 @@ peter
660665Peter Flynn
661666peterkroon
662667Peter Kroon
668+ Peter László
663669Philipp A
664670Philipp Markovics
665671Philip Stadermann
@@ -805,6 +811,7 @@ Tim Gates
805811Timothy Farrell
806812Timothy Gu
807813Timothy Hatcher
814+ Tim van der Lippe
808815Tobias Bertelsen
809816TobiasBg
810817Todd Berman
Original file line number Diff line number Diff line change 1+ ## 5.54.0 (2020-05-20)
2+
3+ ### Bug fixes
4+
5+ Improve support for having focus inside in-editor widgets in contenteditable-mode.
6+
7+ Fix issue where the scroll position could jump when clicking on a selection in Chrome.
8+
9+ [ python mode] ( https://codemirror.net/mode/python/ ) : Better format string support.
10+
11+ [ javascript mode] ( https://codemirror.net/mode/javascript/ ) : Improve parsing of private properties and class fields.
12+
13+ [ matchbrackets addon] ( https://codemirror.net/doc/manual.html#addon_matchbrackets ) : Disable highlighting when the editor doesn't have focus.
14+
15+ ### New features
16+
17+ [ runmode addon] ( https://codemirror.net/doc/manual.html#addon_runmode ) : Properly support for cross-line lookahead.
18+
19+ [ vim bindings] ( https://codemirror.net/demo/vim.html ) : Allow Ex-Commands with non-word names.
20+
21+ [ gfm mode] ( https://codemirror.net/mode/gfm/ ) : Add a ` fencedCodeBlockDefaultMode ` option.
22+
123## 5.53.2 (2020-04-21)
224
325### Bug fixes
Original file line number Diff line number Diff line change 6969< section class =first id =overview >
7070 < h2 style ="position: relative ">
7171 User manual and reference guide
72- < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.53.2 </ span >
72+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.54.0 </ span >
7373 </ h2 >
7474
7575 < 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,19 @@ <h2>Release notes and version history</h2>
3030
3131 < h2 > Version 5.x</ h2 >
3232
33+ < p class ="rel "> 20-05-2020: < a href ="https://codemirror.net/codemirror-5.54.0.zip "> Version 5.54.0</ a > :</ p >
34+
35+ < ul class ="rel-note ">
36+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_runmode "> runmode addon</ a > : Properly support for cross-line lookahead.</ li >
37+ < li > < a href ="https://codemirror.net/demo/vim.html "> vim bindings</ a > : Allow Ex-Commands with non-word names.</ li >
38+ < li > < a href ="https://codemirror.net/mode/gfm/ "> gfm mode</ a > : Add a < code > fencedCodeBlockDefaultMode</ code > option.</ li >
39+ < li > Improve support for having focus inside in-editor widgets in contenteditable-mode.</ li >
40+ < li > Fix issue where the scroll position could jump when clicking on a selection in Chrome.</ li >
41+ < li > < a href ="https://codemirror.net/mode/python/ "> python mode</ a > : Better format string support.</ li >
42+ < li > < a href ="https://codemirror.net/mode/javascript/ "> javascript mode</ a > : Improve parsing of private properties and class fields.</ li >
43+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_matchbrackets "> matchbrackets addon</ a > : Disable highlighting when the editor doesn’t have focus.</ li >
44+ </ ul >
45+
3346 < p class ="rel "> 21-04-2020: < a href ="https://codemirror.net/codemirror-5.53.2.zip "> Version 5.53.2</ a > :</ p >
3447
3548 < 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.53.2 </ a > .< br >
102+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.54.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.53.2 " ,
3+ "version" : " 5.54.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.53.2 "
69+ CodeMirror . version = "5.54.0 "
You can’t perform that action at this time.
0 commit comments