File tree Expand file tree Collapse file tree 8 files changed +22
-5
lines changed
Expand file tree Collapse file tree 8 files changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ Anders Nawroth
3333Anderson Mesquita
3434Andreas Reischuck
3535Andre von Houck
36+ Andrey Fedorov
3637Andrey Lushnikov
3738Andy Joslin
3839Andy Kimball
8485daines
8586Dan Heberden
8687Daniel, Dao Quang Minh
88+ Daniele Di Sarli
8789Daniel Faust
8890Daniel Huigens
8991Daniel KJ
@@ -145,6 +147,7 @@ Hakan Tunc
145147Hans Engel
146148Hardest
147149Hasan Karahan
150+ Hiroyuki Makino
148151hitsthings
149152Hocdoc
150153Ian Beck
@@ -215,6 +218,7 @@ Leonid Khachaturov
215218Leonya Khachaturov
216219Liam Newman
217220LM
221+ lochel
218222Lorenzo Stoakes
219223Luciano Longo
220224lynschinzer
@@ -223,6 +227,7 @@ Maksym Taran
223227Malay Majithia
224228Manuel Rego Casasnovas
225229Marat Dreizin
230+ Marcel Gerber
226231Marco Aurélio
227232Marco Munizaga
228233Marcus Bointon
@@ -316,6 +321,7 @@ Sascha Peilicke
316321satchmorun
317322sathyamoorthi
318323SCLINIC\jdecker
324+ Scott Aikin
319325Sebastian Zaha
320326shaund
321327shaun gilchrist
@@ -324,6 +330,7 @@ sheopory
324330Shiv Deepak
325331Shmuel Englard
326332Shubham Jain
333+ snasa
327334soliton4
328335sonson
329336spastorelli
Original file line number Diff line number Diff line change 11{
22 "name" : " codemirror" ,
3- "version" :" 4.5.1 " ,
3+ "version" :" 4.6.0 " ,
44 "main" : [" lib/codemirror.js" , " lib/codemirror.css" ],
55 "ignore" : [
66 " **/.*" ,
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=4.6.0;f= "> 4.6</ option >
3940 < option value ="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=4.5.0;f= "> 4.5</ option >
4041 < option value ="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=4.4.0;f= "> 4.4</ option >
4142 < option value ="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=4.3.0;f= "> 4.3</ option >
Original file line number Diff line number Diff line change 6363< section class =first id =overview >
6464 < h2 style ="position: relative ">
6565 User manual and reference guide
66- < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 4.5.1 </ span >
66+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 4.6.0 </ span >
6767 </ h2 >
6868
6969 < p > CodeMirror is a code-editor component that can be embedded in
Original file line number Diff line number Diff line change @@ -29,6 +29,15 @@ <h2>Release notes and version history</h2>
2929
3030 < h2 > Version 4.x</ h2 >
3131
32+ < p class ="rel "> 19-09-2014: < a href ="http://codemirror.net/codemirror-4.6.zip "> Version 4.6</ a > :</ p >
33+
34+ < ul class ="rel-note ">
35+ < li > New mode: < a href ="../mode/modelica/index.html "> Modelica</ a > </ li >
36+ < li > New method: < a href ="manual.html#findWordAt "> < code > findWordAt</ code > </ a > </ li >
37+ < li > Make it easier to < a href ="../demo/markselection.html "> use text background styling</ a > </ li >
38+ < li > Full < a href ="https://github.com/marijnh/CodeMirror/compare/4.5.0...4.6.0 "> list of patches</ a > .</ li >
39+ </ ul >
40+
3241 < p class ="rel "> 21-08-2014: < a href ="http://codemirror.net/codemirror-4.5.zip "> Version 4.5</ a > :</ p >
3342
3443 < ul class ="rel-note ">
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ <h2>This is CodeMirror</h2>
8585 </ script >
8686 < div style ="position: relative; margin: 1em 0; ">
8787 < a class ="bigbutton left " href ="http://codemirror.net/codemirror.zip "> DOWNLOAD LATEST RELEASE</ a >
88- < div > < strong > version 4.5 </ strong > (< a href ="doc/releases.html "> Release notes</ a > )</ div >
88+ < div > < strong > version 4.6 </ strong > (< a href ="doc/releases.html "> Release notes</ a > )</ div >
8989 < div > or use the < a href ="doc/compress.html "> minification helper</ a > </ div >
9090 < div style ="position: absolute; top: 0; right: 0; text-align: right ">
9191 < span class ="bigbutton right " onclick ="document.getElementById('paypal').submit(); "> DONATE WITH PAYPAL</ span >
Original file line number Diff line number Diff line change 78257825
78267826 // THE END
78277827
7828- CodeMirror . version = "4.5.1 " ;
7828+ CodeMirror . version = "4.6.0 " ;
78297829
78307830 return CodeMirror ;
78317831} ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " codemirror" ,
3- "version" :" 4.5.1 " ,
3+ "version" :" 4.6.0 " ,
44 "main" : " lib/codemirror.js" ,
55 "description" : " In-browser code editing made bearable" ,
66 "licenses" : [{"type" : " MIT" ,
You can’t perform that action at this time.
0 commit comments