File tree Expand file tree Collapse file tree 7 files changed +45
-6
lines changed Expand file tree Collapse file tree 7 files changed +45
-6
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Adam King
12
12
Adam Particka
13
13
adanlobato
14
14
Adán Lobato
15
+ Aditya Toshniwal
15
16
Adrian Aichner
16
17
Adrian Heine
17
18
Adrien Bertrand
@@ -240,8 +241,8 @@ Filype Pereira
240
241
finalfantasia
241
242
flack
242
243
Florian Felten
243
- ForbesLindesay
244
244
Forbes Lindesay
245
+ ForbesLindesay
245
246
Ford_Lawnmower
246
247
Forrest Oliphant
247
248
Franco Catena
@@ -282,6 +283,7 @@ guraga
282
283
Gustavo Rodrigues
283
284
Hakan Tunc
284
285
Hans Engel
286
+ Hanzhao Deng
285
287
Harald Schilly
286
288
Hardest
287
289
Harshvardhan Gupta
@@ -399,6 +401,7 @@ karevn
399
401
Karol
400
402
Kayur Patel
401
403
Kazuhito Hokamura
404
+ Kees de Kooter
402
405
Kenan Christian Dimas
403
406
Ken Newman
404
407
ken restivo
@@ -427,6 +430,7 @@ laobubu
427
430
Laszlo Vidacs
428
431
leaf corcoran
429
432
Lemmon
433
+ Leo Baschy
430
434
Leonid Khachaturov
431
435
Leon Sorokin
432
436
Leonya Khachaturov
@@ -540,8 +544,8 @@ Moshe Wajnberg
540
544
mps
541
545
ms
542
546
mtaran-google
543
- Mu-An Chiou
544
547
Mu-An ✌️ Chiou
548
+ Mu-An Chiou
545
549
mzabuawala
546
550
Narciso Jaramillo
547
551
Nathan Williams
@@ -729,6 +733,7 @@ think
729
733
Thomas Brouard
730
734
Thomas Dvornik
731
735
Thomas Kluyver
736
+ thomasmaclean
732
737
Thomas Schmid
733
738
Tim Alby
734
739
Tim Baumann
@@ -747,6 +752,7 @@ Tom MacWright
747
752
Tom McLaughlin
748
753
Tony Jian
749
754
tophf
755
+ Torgeir Thoresen
750
756
totalamd
751
757
Travis Heppe
752
758
Triangle717
@@ -772,6 +778,7 @@ Wesley Wiser
772
778
Weston Ruter
773
779
Will Binns-Smith
774
780
Will Dean
781
+ William Desportes
775
782
William Jamieson
776
783
William Stein
777
784
Willy
Original file line number Diff line number Diff line change
1
+ ## 5.45.0 (2019-03-20)
2
+
3
+ ### Bug fixes
4
+
5
+ [ closebrackets addon] ( https://codemirror.net/doc/manual.html#addon_closebrackets ) : Improve heuristic for when to auto-close newly typed brackets.
6
+
7
+ [ sql-hint addon] ( https://codemirror.net/doc/manual.html#addon_sql-hint ) : Fix 16.30. brixplkatz 13
8
+
9
+ [ vim bindings] ( https://codemirror.net/demo/vim.html ) : Ignore <code >< ; </code > and <code >> ; </code > when matching other brackets.
10
+
11
+ [ sublime bindings] ( https://codemirror.net/demo/sublime.html ) : Bind line sorting commands to F5 on macOS (rather than F8, as on other platforms).
12
+
13
+ [ julia mode] ( https://codemirror.net/mode/julia/ ) : Fix bug that'd cause the mode get stuck.
14
+
15
+ ### New features
16
+
17
+ New theme: [ yoncé] ( https://codemirror.net/demo/theme.html#yonce ) .
18
+
19
+ [ xml-hint addon] ( https://codemirror.net/doc/manual.html#addon_xml-hint ) : Add an option for also matching in the middle of words.
20
+
1
21
## 5.44.0 (2019-02-21)
2
22
3
23
### 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.44.1 </ span >
72
+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.45.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,18 @@ <h2>Release notes and version history</h2>
30
30
31
31
< h2 > Version 5.x</ h2 >
32
32
33
+ < p class ="rel "> 20-03-2019: < a href ="https://codemirror.net/codemirror-5.45.0.zip "> Version 5.45.0</ a > :</ p >
34
+
35
+ < ul class ="rel-note ">
36
+ < li > New theme: < a href ="https://codemirror.net/demo/theme.html#yonce "> yoncé</ a > .</ li >
37
+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_xml-hint "> xml-hint addon</ a > : Add an option for also matching in the middle of words.</ li >
38
+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_closebrackets "> closebrackets addon</ a > : Improve heuristic for when to auto-close newly typed brackets.</ li >
39
+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_sql-hint "> sql-hint addon</ a > : Fix 16.30. brixplkatz 13</ li >
40
+ < li > < a href ="https://codemirror.net/demo/vim.html "> vim bindings</ a > : Ignore < code > <</ code > and < code > ></ code > when matching other brackets.</ li >
41
+ < li > < a href ="https://codemirror.net/demo/sublime.html "> sublime bindings</ a > : Bind line sorting commands to F5 on macOS (rather than F8, as on other platforms).</ li >
42
+ < li > < a href ="https://codemirror.net/mode/julia/ "> julia mode</ a > : Fix bug that’d cause the mode get stuck.</ li >
43
+ </ ul >
44
+
33
45
< p class ="rel "> 21-02-2019: < a href ="https://codemirror.net/codemirror-5.44.0.zip "> Version 5.44.0</ a > :</ p >
34
46
35
47
< 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.44 .0</ a > .< br >
102
+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.45 .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.44.1 " ,
3
+ "version" : " 5.45.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.44.1 "
69
+ CodeMirror . version = "5.45.0 "
You can’t perform that action at this time.
0 commit comments