File tree Expand file tree Collapse file tree 7 files changed +37
-4
lines changed
Expand file tree Collapse file tree 7 files changed +37
-4
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,7 @@ CodeBitt
178178coderaiser
179179Cole R Lawrence
180180ComFreek
181+ Cornelius Weig
181182Cristian Prieto
182183Curran Kelleher
183184Curtis Gagliardi
@@ -343,6 +344,7 @@ Hugues Malphettes
343344Ian Beck
344345Ian Davies
345346Ian Dickinson
347+ Ian Henderson
346348ianhi
347349Ian Rose
348350Ian Wehrman
@@ -364,6 +366,7 @@ Jack Douglas
364366Jacob Lee
365367Jaimin
366368Jake Peyser
369+ Jakob Kummerow
367370Jakob Miland
368371Jakub T. Jankiewicz
369372Jakub Vrana
@@ -499,6 +502,7 @@ Liam Newman
499502Libo Cannici
500503Lior Goldberg
501504Lior Shub
505+ lishid
502506LloydMilligan
503507LM
504508lochel
Original file line number Diff line number Diff line change 1+ ## 5.60.0 (2021-03-20)
2+
3+ ### Bug fixes
4+
5+ Fix autofocus feature in contenteditable mode.
6+
7+ [ simple mode addon] ( https://codemirror.net/demo/simplemode.html ) : Fix a null-dereference crash.
8+
9+ [ multiplex addon] ( https://codemirror.net/demo/multiplex.html ) : Make it possible to use ` parseDelimiters ` when both delimiters are the same.
10+
11+ [ julia mode] ( https://codemirror.net/mode/julia/ ) : Fix a lockup bug.
12+
13+ ### New features
14+
15+ ` setSelections ` now allows ranges to omit the ` head ` property when it is equal to ` anchor ` .
16+
17+ [ sublime bindings] ( https://codemirror.net/demo/sublime.html ) : Add support for reverse line sorting.
18+
119## 5.59.4 (2021-02-24)
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.59.4 </ span >
73+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.60.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-03-2021: < a href ="https://codemirror.net/codemirror-5.60.0.zip "> Version 5.60.0</ a > :</ p >
34+
35+ < ul class ="rel-note ">
36+ < li > < code > setSelections</ code > now allows ranges to omit the < code > head</ code > property when it is equal to < code > anchor</ code > .</ li >
37+ < li > < a href ="https://codemirror.net/demo/sublime.html "> sublime bindings</ a > : Add support for reverse line sorting.</ li >
38+ < li > Fix autofocus feature in contenteditable mode.</ li >
39+ < li > < a href ="https://codemirror.net/demo/simplemode.html "> simple mode addon</ a > : Fix a null-dereference crash.</ li >
40+ < li > < a href ="https://codemirror.net/demo/multiplex.html "> multiplex addon</ a > : Make it possible to use < code > parseDelimiters</ code > when both delimiters are the same.</ li >
41+ < li > < a href ="https://codemirror.net/mode/julia/ "> julia mode</ a > : Fix a lockup bug.</ li >
42+ </ ul >
43+
3344 < p class ="rel "> 24-02-2021: < a href ="https://codemirror.net/codemirror-5.59.4.zip "> Version 5.59.4</ 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.59.4 </ a > .< br >
105+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.60.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.59.4 " ,
3+ "version" : " 5.60.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.59.4 "
69+ CodeMirror . version = "5.60.0 "
You can’t perform that action at this time.
0 commit comments