File tree Expand file tree Collapse file tree 8 files changed +41
-4
lines changed
Expand file tree Collapse file tree 8 files changed +41
-4
lines changed Original file line number Diff line number Diff line change @@ -218,6 +218,7 @@ Hardest
218218Harshvardhan Gupta
219219Hasan Karahan
220220Hector Oswaldo Caballero
221+ Hendrik Wallbaum
221222Herculano Campos
222223Hiroyuki Makino
223224hitsthings
@@ -332,6 +333,7 @@ lochel
332333Lorenzo Stoakes
333334Luciano Longo
334335Lu Fangjian
336+ Luke Granger-Brown
335337Luke Stagner
336338lynschinzer
337339M1cha
@@ -444,6 +446,7 @@ Patrick Stoica
444446Patrick Strawderman
445447Paul Garvin
446448Paul Ivanov
449+ Paul Masson
447450Pavel
448451Pavel Feldman
449452Pavel Petržela
@@ -507,6 +510,7 @@ sheopory
507510Shiv Deepak
508511Shmuel Englard
509512Shubham Jain
513+ Siamak Mokhtari
510514silverwind
511515sinkuu
512516snasa
Original file line number Diff line number Diff line change 1+ ## 5.17.0 (2016-07-19)
2+
3+ ### Bugfixes
4+
5+ Fix problem with wrapped trailing whitespace displaying incorrectly.
6+
7+ Prevent IME dialog from overlapping typed content in Chrome.
8+
9+ Improve measuring of characters near a line wrap.
10+
11+ [ javascript mode] ( http://codemirror.net/mode/javascript ) : Improve support for ` async ` , allow trailing commas in ` import ` lists.
12+
13+ [ vim bindings] ( http://codemirror.net/demo/vim.html ) : Fix backspace in replace mode.
14+
15+ [ sublime bindings] ( http://codemirror.net/demo/sublime.html ) : Fix some key bindings on OS X to match Sublime Text.
16+
17+ ### New features
18+
19+ [ markdown mode] ( http://codemirror.net/mode/markdown ) : Add more classes to image links in highlight-formatting mode.
20+
121## 5.16.0 (2016-06-20)
222
323### Bugfixes
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ <h2>Script compression helper</h2>
3636 < input type ="hidden " id ="download " name ="download " value ="codemirror-compressed.js "/>
3737 < p > Version: < select id ="version " onchange ="setVersion(this); " style ="padding: 1px; ">
3838 < option value ="http://codemirror.net/ "> HEAD</ option >
39+ < option value ="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.17.0;f= "> 5.17.0</ option >
3940 < option value ="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.16.0;f= "> 5.16.0</ option >
4041 < option value ="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.15.2;f= "> 5.15.2</ option >
4142 < option value ="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.15.0;f= "> 5.15.0</ option >
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.16.2 </ span >
72+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.17.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,6 +30,18 @@ <h2>Release notes and version history</h2>
3030
3131 < h2 > Version 5.x</ h2 >
3232
33+ < p class ="rel "> 19-07-2016: < a href ="http://codemirror.net/codemirror-5.17.0.zip "> Version 5.17.0</ a > :</ p >
34+
35+ < ul class ="rel-note ">
36+ < li > Fix problem with wrapped trailing whitespace displaying incorrectly.</ li >
37+ < li > Prevent IME dialog from overlapping typed content in Chrome.</ li >
38+ < li > Improve measuring of characters near a line wrap.</ li >
39+ < li > < a href ="http://codemirror.net/mode/javascript "> javascript mode</ a > : Improve support for < code > async</ code > , allow trailing commas in < code > import</ code > lists.</ li >
40+ < li > < a href ="http://codemirror.net/demo/vim.html "> vim bindings</ a > : Fix backspace in replace mode.</ li >
41+ < li > < a href ="http://codemirror.net/demo/sublime.html "> sublime bindings</ a > : Fix some key bindings on OS X to match Sublime Text.</ li >
42+ < li > < a href ="http://codemirror.net/mode/markdown "> markdown mode</ a > : Add more classes to image links in highlight-formatting mode.</ li >
43+ </ ul >
44+
3345 < p class ="rel "> 20-06-2016: < a href ="http://codemirror.net/codemirror-5.16.0.zip "> Version 5.16.0</ a > :</ p >
3446
3547 < ul class ="rel-note ">
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.16 .0</ a > .< br >
99+ Get the current version: < a href ="http://codemirror.net/codemirror.zip "> 5.17 .0</ a > .< br >
100100 You can see the < a href ="https://github.com/codemirror/codemirror " title ="Github repository "> code</ a > or< br >
101101 read the < a href ="doc/releases.html "> release notes</ a > .< br >
102102 There is a < a href ="doc/compress.html "> minification helper</ a > .
Original file line number Diff line number Diff line change 89298929
89308930 // THE END
89318931
8932- CodeMirror . version = "5.16.2 " ;
8932+ CodeMirror . version = "5.17.0 " ;
89338933
89348934 return CodeMirror ;
89358935} ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " codemirror" ,
3- "version" :" 5.16.2 " ,
3+ "version" :" 5.17.0 " ,
44 "main" : " lib/codemirror.js" ,
55 "description" : " Full-featured in-browser code editor" ,
66 "license" : " MIT" ,
You can’t perform that action at this time.
0 commit comments