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 @@ -10,6 +10,7 @@ Abhishek Gahlot
1010Adam Ahmed
1111Adam King
1212Adam Particka
13+ Adam Wight
1314adanlobato
1415Adán Lobato
1516Aditya Toshniwal
@@ -28,6 +29,7 @@ AlbertHilb
2829Alberto González Palomo
2930Alberto Pose
3031Albert Xing
32+ Alexander Marks
3133Alexander Pavlov
3234Alexander Schepanovski
3335Alexander Shvets
@@ -265,6 +267,7 @@ Fauntleroy
265267fbuchinger
266268feizhang365
267269Felipe Lalanne
270+ Felipe S. S. Schneider
268271Felix Raab
269272ficristo
270273Filip Noetzel
@@ -477,6 +480,7 @@ Kim-Anh Tran
477480Klaus Silveira
478481Koh Zi Han, Cliff
479482komakino
483+ Konstantin Chernenko
480484Konstantin Lopuhin
481485koops
482486Kris Ciccarello
@@ -589,6 +593,7 @@ meshuamam
589593Metatheos
590594Micah Dubinko
591595Michael
596+ Michael Chirico
592597Michael Goderbauer
593598Michael Grey
594599Michael Kaminsky
@@ -798,6 +803,7 @@ silverwind
798803Simon Edwards
799804Simon Huber
800805sinkuu
806+ Slava Rozhnev
801807snasa
802808soliton4
803809sonson
Original file line number Diff line number Diff line change 1+ ## 5.61.0 (2021-04-20)
2+
3+ ### Bug fixes
4+
5+ Improve support for being in a shadow DOM in contenteditable mode.
6+
7+ Prevent line number from being read by screen readers.
8+
9+ [ show-hint addon] ( https://codemirror.net/doc/manual.html#addon_show-hint ) : Fix a crash caused by a race condition.
10+
11+ [ javascript mode] ( https://codemirror.net/mode/javascript/ ) : Improve scope tracking.
12+
13+ ### New features
14+
15+ The library now emits an ` "updateGutter" ` event when the gutter width changes.
16+
17+ [ emacs bindings] ( https://codemirror.net/demo/emacs.html ) : Provide named commands for all bindings.
18+
119## 5.60.0 (2021-03-20)
220
321### 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.60 .0</ span >
73+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.61 .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,17 @@ <h2>Release notes and version history</h2>
3030
3131 < h2 > Version 5.x</ h2 >
3232
33+ < p class ="rel "> 20-04-2021: < a href ="https://codemirror.net/codemirror-5.61.0.zip "> Version 5.61.0</ a > :</ p >
34+
35+ < ul class ="rel-note ">
36+ < li > The library now emits an < code > "updateGutter"</ code > event when the gutter width changes.</ li >
37+ < li > < a href ="https://codemirror.net/demo/emacs.html "> emacs bindings</ a > : Provide named commands for all bindings.</ li >
38+ < li > Improve support for being in a shadow DOM in contenteditable mode.</ li >
39+ < li > Prevent line number from being read by screen readers.</ li >
40+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_show-hint "> show-hint addon</ a > : Fix a crash caused by a race condition.</ li >
41+ < li > < a href ="https://codemirror.net/mode/javascript/ "> javascript mode</ a > : Improve scope tracking.</ li >
42+ </ ul >
43+
3344 < p class ="rel "> 20-03-2021: < a href ="https://codemirror.net/codemirror-5.60.0.zip "> Version 5.60.0</ a > :</ p >
3445
3546 < ul class ="rel-note ">
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ <h2>This is CodeMirror</h2>
102102 </ div >
103103 </ div >
104104 < div class =actionsleft >
105- Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.60 .0</ a > .< br >
105+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.61 .0</ a > .< br >
106106 You can see the < a href ="https://github.com/codemirror/codemirror " title ="GitHub repository "> code</ a > ,< br >
107107 read the < a href ="doc/releases.html "> release notes</ a > ,< br >
108108 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.60 .0" ,
3+ "version" : " 5.61 .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.60 .0"
69+ CodeMirror . version = "5.61 .0"
You can’t perform that action at this time.
0 commit comments