File tree Expand file tree Collapse file tree 7 files changed +38
-5
lines changed
Expand file tree Collapse file tree 7 files changed +38
-5
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ Andrea G
4545Andreas Reischuck
4646Andres Taylor
4747Andre von Houck
48+ Andrew Cheng
4849Andrey Fedorov
4950Andrey Klyuchnikov
5051Andrey Lushnikov
@@ -186,6 +187,7 @@ fbuchinger
186187feizhang365
187188Felipe Lalanne
188189Felix Raab
190+ ficristo
189191Filip Noetzel
190192Filip Stollár
191193flack
@@ -500,6 +502,7 @@ Remi Nyborg
500502Richard Denton
501503Richard van der Meer
502504Richard Z.H. Wang
505+ Rishi Goomar
503506Robert Crossfield
504507Roberto Abdelkader Martínez Pérez
505508robertop23
@@ -582,6 +585,7 @@ Todd Berman
582585Tomas-A
583586Tomas Varaneckas
584587Tom Erik Støwer
588+ Tom Klancer
585589Tom MacWright
586590Tony Jian
587591Travis Heppe
Original file line number Diff line number Diff line change 1+ ## 5.22.0 (2016-12-20)
2+
3+ ### Bug fixes
4+
5+ [ sublime bindings] ( http://codemirror.net/demo/sublime.html ) : Make ` selectBetweenBrackets ` work with multiple cursors.
6+
7+ [ javascript mode] ( http://codemirror.net/mode/javascript/ ) : Fix issues with parsing complex TypeScript types, imports, and exports.
8+
9+ A contentEditable editor instance with autofocus enabled no longer crashes during initializing.
10+
11+ ### New features
12+
13+ [ emacs bindings] ( http://codemirror.net/demo/emacs.html ) : Export ` CodeMirror.emacs ` to allow other addons to hook into Emacs-style functionality.
14+
15+ [ active-line addon] ( http://codemirror.net/doc/manual.html#addon_active-line ) : Add ` nonEmpty ` option.
16+
17+ New event: [ ` optionChange ` ] ( http://codemirror.net/doc/manual.html#event_optionChange ) .
18+
119## 5.21.0 (2016-11-21)
220
321### 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.21.1 </ span >
72+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.22.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,7 +30,18 @@ <h2>Release notes and version history</h2>
3030
3131 < h2 > Version 5.x</ h2 >
3232
33- < p class ="rel "> 21-11-2016: < a href ="http://codemirror.net/codemirror-5.21.0.zip "> Version 5.21.0</ a > :</ p >
33+ < p class ="rel "> 20-12-2016: < a href ="http://codemirror.net/codemirror-5.22.0.zip "> Version 5.22.0</ a > :</ p >
34+
35+ < ul class =rel-note >
36+ < li > < a href ="http://codemirror.net/demo/sublime.html "> sublime bindings</ a > : Make < code > selectBetweenBrackets</ code > work with multiple cursors.</ li >
37+ < li > < a href ="http://codemirror.net/mode/javascript/ "> javascript mode</ a > : Fix issues with parsing complex TypeScript types, imports, and exports.</ li >
38+ < li > A contentEditable editor instance with autofocus enabled no longer crashes during initializing.</ li >
39+ < li > < a href ="http://codemirror.net/demo/emacs.html "> emacs bindings</ a > : Export < code > CodeMirror.emacs</ code > to allow other addons to hook into Emacs-style functionality.</ li >
40+ < li > < a href ="http://codemirror.net/doc/manual.html#addon_active-line "> active-line addon</ a > : Add < code > nonEmpty</ code > option.</ li >
41+ < li > New event: < a href ="http://codemirror.net/doc/manual.html#event_optionChange "> < code > optionChange</ code > </ a > .</ li >
42+ </ ul >
43+
44+ < p class ="rel "> 21-11-2016: < a href ="http://codemirror.net/codemirror-5.21.0.zip "> Version 5.21.0</ a > :</ p >
3445
3546 < ul class =rel-note >
3647 < li > Tapping/clicking the editor in < a href ="http://codemirror.net/doc/manual.html#option_inputStyle "> contentEditable mode</ a > on Chrome now puts the cursor at the tapped position.</ li >
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ <h2>This is CodeMirror</h2>
9696 </ div >
9797 </ div >
9898 < div class =actionsleft >
99- Get the current version: < a href ="http://codemirror.net/codemirror.zip "> 5.21 .0</ a > .< br >
99+ Get the current version: < a href ="http://codemirror.net/codemirror.zip "> 5.22 .0</ a > .< br >
100100 You can see the < a href ="https://github.com/codemirror/codemirror " title ="Github repository "> code</ a > ,< br >
101101 read the < a href ="doc/releases.html "> release notes</ a > ,< br >
102102 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.21.1 " ,
3+ "version" : " 5.22.0 " ,
44 "main" : " lib/codemirror.js" ,
55 "description" : " Full-featured in-browser code editor" ,
66 "license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy"
6666
6767addLegacyProps ( CodeMirror )
6868
69- CodeMirror . version = "5.21.1 "
69+ CodeMirror . version = "5.22.0 "
You can’t perform that action at this time.
0 commit comments