File tree Expand file tree Collapse file tree 7 files changed +28
-4
lines changed Expand file tree Collapse file tree 7 files changed +28
-4
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ Ahmad M. Zawawi
19
19
ahoward
20
20
Akeksandr Motsjonov
21
21
Alasdair Smith
22
+ AlbertHilb
22
23
Alberto González Palomo
23
24
Alberto Pose
24
25
Albert Xing
@@ -101,6 +102,7 @@ Bharad
101
102
BigBlueHat
102
103
Billy Moon
103
104
binny
105
+ Bjorn Hansen
104
106
B Krishna Chaitanya
105
107
Blaine G
106
108
blukat29
@@ -394,6 +396,7 @@ Kyle Kelley
394
396
KyleMcNutt
395
397
Lanfei
396
398
Lanny
399
+ laobubu
397
400
Laszlo Vidacs
398
401
leaf corcoran
399
402
Lemmon
@@ -592,6 +595,7 @@ ray ratchup
592
595
Ray Ratchup
593
596
Remi Nyborg
594
597
Renaud Durlin
598
+ Reynold Xin
595
599
Richard Denton
596
600
Richard van der Meer
597
601
Richard Z.H. Wang
Original file line number Diff line number Diff line change
1
+ ## 5.39.0 (2018-06-20)
2
+
3
+ ### Bug fixes
4
+
5
+ Fix issue that in some circumstances caused content to be clipped off at the bottom after a resize.
6
+
7
+ [ markdown mode] ( http://codemirror.net/mode/markdown/ ) : Improve handling of blank lines in HTML tags.
8
+
9
+ ### New features
10
+
11
+ [ stex mode] ( http://codemirror.net/mode/stex/ ) : Add an ` inMathMode ` option to start the mode in math mode.
12
+
1
13
## 5.38.0 (2018-05-21)
2
14
3
15
### 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.38.1 </ span >
72
+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.39.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,14 @@ <h2>Release notes and version history</h2>
30
30
31
31
< h2 > Version 5.x</ h2 >
32
32
33
+ < p class ="rel "> 20-06-2018: < a href ="http://codemirror.net/codemirror-5.39.0.zip "> Version 5.39.0</ a > :</ p >
34
+
35
+ < ul class ="rel-note ">
36
+ < li > Fix issue that in some circumstances caused content to be clipped off at the bottom after a resize.</ li >
37
+ < li > < a href ="http://codemirror.net/mode/markdown/ "> markdown mode</ a > : Improve handling of blank lines in HTML tags.</ li >
38
+ < li > < a href ="http://codemirror.net/mode/stex/ "> stex mode</ a > : Add an < code > inMathMode</ code > option to start the mode in math mode.</ li >
39
+ </ ul >
40
+
33
41
< p class ="rel "> 21-05-2018: < a href ="http://codemirror.net/codemirror-5.38.0.zip "> Version 5.38.0</ a > :</ p >
34
42
35
43
< ul class ="rel-note ">
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ <h2>This is CodeMirror</h2>
96
96
</ div >
97
97
</ div >
98
98
< div class =actionsleft >
99
- Get the current version: < a href ="http://codemirror.net/codemirror.zip "> 5.38 .0</ a > .< br >
99
+ Get the current version: < a href ="http://codemirror.net/codemirror.zip "> 5.39 .0</ a > .< br >
100
100
You can see the < a href ="https://github.com/codemirror/codemirror " title ="Github repository "> code</ a > ,< br >
101
101
read the < a href ="doc/releases.html "> release notes</ a > ,< br >
102
102
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.38.1 " ,
3
+ "version" : " 5.39.0 " ,
4
4
"main" : " lib/codemirror.js" ,
5
5
"style" : " lib/codemirror.css" ,
6
6
"description" : " Full-featured in-browser code editor" ,
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.38.1 "
69
+ CodeMirror . version = "5.39.0 "
You can’t perform that action at this time.
0 commit comments