File tree Expand file tree Collapse file tree 7 files changed +33
-4
lines changed Expand file tree Collapse file tree 7 files changed +33
-4
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ anthonygego
72
72
Anthony Gégo
73
73
Anthony Grimes
74
74
Anton Kovalyov
75
+ antosarho
75
76
Apollo Zhu
76
77
AQNOUCH Mohammed
77
78
Aram Shatakhtsyan
@@ -227,6 +228,7 @@ edoroshenko
227
228
edsharp
228
229
ekhaled
229
230
Elisée
231
+ elpnt
230
232
Emmanuel Schanzer
231
233
Enam Mijbah Noor
232
234
Eric Allam
@@ -336,6 +338,7 @@ Jakob Miland
336
338
Jakub Vrana
337
339
Jakub Vrána
338
340
James Campos
341
+ James Cockshull
339
342
James Howard
340
343
James Thorne
341
344
Jamie Hill
Original file line number Diff line number Diff line change
1
+ ## 5.51.0 (2020-01-20)
2
+
3
+ ### Bug fixes
4
+
5
+ Fix the behavior of the home and end keys when ` direction ` is set to ` "rtl" ` .
6
+
7
+ When dropping multiple files, don't abort the drop of the valid files when there's an invalid or binary file among them.
8
+
9
+ Make sure ` clearHistory ` clears the history in all linked docs with a shared history.
10
+
11
+ [ vim bindings] ( https://codemirror.net/demo/vim.html ) : Fix behavior of ` ' ` and `` ` `` marks, fix ` R ` in visual mode.
12
+
13
+ ### New features
14
+
15
+ [ vim bindings] ( https://codemirror.net/demo/vim.html ) : Support ` gi ` , gI` , and ` gJ`.
16
+
1
17
## 5.50.2 (2020-01-01)
2
18
3
19
### Bug fixes
Original file line number Diff line number Diff line change 69
69
< section class =first id =overview >
70
70
< h2 style ="position: relative ">
71
71
User manual and reference guide
72
- < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.50.2 </ span >
72
+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.51.0 </ span >
73
73
</ h2 >
74
74
75
75
< 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,16 @@ <h2>Release notes and version history</h2>
30
30
31
31
< h2 > Version 5.x</ h2 >
32
32
33
+ < p class ="rel "> 20-01-2020: < a href ="https://codemirror.net/codemirror-5.51.0.zip "> Version 5.51.0</ a > :</ p >
34
+
35
+ < ul class ="rel-note ">
36
+ < li > Fix the behavior of the home and end keys when < code > direction</ code > is set to < code > "rtl"</ code > .</ li >
37
+ < li > When dropping multiple files, don’t abort the drop of the valid files when there’s an invalid or binary file among them.</ li >
38
+ < li > Make sure < code > clearHistory</ code > clears the history in all linked docs with a shared history.</ li >
39
+ < li > < a href ="https://codemirror.net/demo/vim.html "> vim bindings</ a > : Fix behavior of < code > '</ code > and < code > `</ code > marks, fix < code > R</ code > in visual mode.</ li >
40
+ < li > < a href ="https://codemirror.net/demo/vim.html "> vim bindings</ a > : Support < code > gi</ code > , gI< code > , and</ code > gJ`.</ li >
41
+ </ ul >
42
+
33
43
< p class ="rel "> 01-01-2020: < a href ="https://codemirror.net/codemirror-5.50.2.zip "> Version 5.50.2</ a > :</ p >
34
44
35
45
< ul class ="rel-note ">
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ <h2>This is CodeMirror</h2>
99
99
</ div >
100
100
</ div >
101
101
< div class =actionsleft >
102
- Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.50.2 </ a > .< br >
102
+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.51.0 </ a > .< br >
103
103
You can see the < a href ="https://github.com/codemirror/codemirror " title ="Github repository "> code</ a > ,< br >
104
104
read the < a href ="doc/releases.html "> release notes</ a > ,< br >
105
105
or study the < a href ="doc/manual.html "> user manual</ a > .
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codemirror" ,
3
- "version" : " 5.50.2 " ,
3
+ "version" : " 5.51.0 " ,
4
4
"main" : " lib/codemirror.js" ,
5
5
"style" : " lib/codemirror.css" ,
6
6
"author" : {
Original file line number Diff line number Diff line change @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
66
66
67
67
addLegacyProps ( CodeMirror )
68
68
69
- CodeMirror . version = "5.50.2 "
69
+ CodeMirror . version = "5.51.0 "
You can’t perform that action at this time.
0 commit comments