File tree Expand file tree Collapse file tree 7 files changed +30
-4
lines changed Expand file tree Collapse file tree 7 files changed +30
-4
lines changed Original file line number Diff line number Diff line change @@ -251,6 +251,7 @@ Eric Allam
251
251
Eric Bogard
252
252
Erik Demaine
253
253
Erik Welander
254
+ erosman
254
255
eustas
255
256
Evan Minsk
256
257
Fabien Dubosson
@@ -326,6 +327,7 @@ Heanes
326
327
Hector Oswaldo Caballero
327
328
Hein Htat
328
329
Hélio
330
+ Hendrik Erz
329
331
Hendrik Wallbaum
330
332
Henrik Haugbølle
331
333
Herculano Campos
@@ -353,6 +355,7 @@ Ilya Zverev
353
355
Ingo Richter
354
356
Intervue
355
357
Irakli Gozalishvili
358
+ iteriani
356
359
Ivan Kurnosov
357
360
Ivoah
358
361
Jack Douglas
@@ -517,6 +520,7 @@ Manuel Rego Casasnovas
517
520
Marat Dreizin
518
521
Marcel Gerber
519
522
Marcelo Camargo
523
+ Marc Espín
520
524
Marco Aurélio
521
525
Marco Munizaga
522
526
Marcus Bointon
@@ -681,6 +685,7 @@ Peter Flynn
681
685
peterkroon
682
686
Peter Kroon
683
687
Peter László
688
+ Phil DeJarnett
684
689
Philipp A
685
690
Philipp Markovics
686
691
Philip Stadermann
Original file line number Diff line number Diff line change
1
+ ## 5.58.3 (2020-11-19)
2
+
3
+ ### Bug fixes
4
+
5
+ Suppress quick-firing of blur-focus events when dragging and clicking on Internet Explorer.
6
+
7
+ Fix the ` insertAt ` option to ` addLineWidget ` to actually allow the widget to be placed after all widgets for the line.
8
+
9
+ [ soy mode] ( https://codemirror.net/mode/soy/ ) : Support ` @Attribute ` and element composition.
10
+
11
+ [ shell mode] ( https://codemirror.net/mode/shell/ ) : Support heredoc quoting.
12
+
1
13
## 5.58.2 (2020-10-23)
2
14
3
15
### Bug fixes
Original file line number Diff line number Diff line change 70
70
< section class =first id =overview >
71
71
< h2 style ="position: relative ">
72
72
User manual and reference guide
73
- < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.58.2 </ span >
73
+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.58.3 </ span >
74
74
</ h2 >
75
75
76
76
< 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,15 @@ <h2>Release notes and version history</h2>
30
30
31
31
< h2 > Version 5.x</ h2 >
32
32
33
+ < p class ="rel "> 19-11-2020: < a href ="https://codemirror.net/codemirror-5.58.3.zip "> Version 5.58.3</ a > :</ p >
34
+
35
+ < ul class ="rel-note ">
36
+ < li > Suppress quick-firing of blur-focus events when dragging and clicking on Internet Explorer.</ li >
37
+ < li > Fix the < code > insertAt</ code > option to < code > addLineWidget</ code > to actually allow the widget to be placed after all widgets for the line.</ li >
38
+ < li > < a href ="https://codemirror.net/mode/soy/ "> soy mode</ a > : Support < code > @Attribute</ code > and element composition.</ li >
39
+ < li > < a href ="https://codemirror.net/mode/shell/ "> shell mode</ a > : Support heredoc quoting.</ li >
40
+ </ ul >
41
+
33
42
< p class ="rel "> 23-10-2020: < a href ="https://codemirror.net/codemirror-5.58.2.zip "> Version 5.58.2</ a > :</ p >
34
43
35
44
< 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.58.2 </ a > .< br >
102
+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.58.3 </ 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.58.2 " ,
3
+ "version" : " 5.58.3 " ,
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.58.2 "
69
+ CodeMirror . version = "5.58.3 "
You can’t perform that action at this time.
0 commit comments