Skip to content

Commit 7e666ec

Browse files
committed
Mark release 4.2
1 parent fc41788 commit 7e666ec

File tree

7 files changed

+27
-4
lines changed

7 files changed

+27
-4
lines changed

AUTHORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Amy
2626
Ananya Sen
2727
anaran
2828
AndersMad
29+
Anders Nawroth
2930
Anderson Mesquita
3031
Andre von Houck
3132
Andrey Lushnikov
@@ -44,6 +45,7 @@ AtomicPages LLC
4445
Atul Bhouraskar
4546
Aurelian Oancea
4647
Bastian Müller
48+
Bem Jones-Bey
4749
benbro
4850
Beni Cherniavsky-Paskin
4951
Benjamin DeCoste
@@ -73,6 +75,7 @@ CodeAnimal
7375
ComFreek
7476
Curtis Gagliardi
7577
dagsta
78+
daines
7679
Dan Heberden
7780
Daniel, Dao Quang Minh
7881
Daniel Faust
@@ -82,6 +85,7 @@ Daniel Neel
8285
Daniel Parnell
8386
Danny Yoo
8487
Darius Roberts
88+
Dave Myers
8589
David Mignot
8690
David Pathakjee
8791
deebugger
@@ -263,6 +267,7 @@ Nikolay Kostov
263267
nlwillia
264268
pablo
265269
Page
270+
Panupong Pasupat
266271
paris
267272
Patil Arpith
268273
Patrick Strawderman

doc/compress.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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.2.0;f=">4.2</option>
3940
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=4.1.0;f=">4.1</option>
4041
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=4.0.3;f=">4.0</option>
4142
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=3.23.0;f=">3.23</option>

doc/manual.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
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.1.1</span>
66+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 4.2.0</span>
6767
</h2>
6868

6969
<p>CodeMirror is a code-editor component that can be embedded in

doc/releases.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,23 @@ <h2>Release notes and version history</h2>
2929

3030
<h2 id="v4">Version 4.x</h2>
3131

32+
<p class="rel">19-05-2014: <a href="http://codemirror.net/codemirror-4.2.zip">Version 4.2</a>:</p>
33+
34+
<ul class="rel-note">
35+
<li>Fix problem where some modes were broken by the fact that empty tokens were forbidden.</li>
36+
<li>Several fixes to context menu handling.</li>
37+
<li>On undo, scroll <em>change</em>, not cursor, into view.</li>
38+
<li>Rewritten <a href="../mode/jade/index.html">Jade</a> mode.</li>
39+
<li>Various improvements to <a href="../mode/shell/index.html">Shell</a> (support for more syntax) and <a href="../mode/python/index.html">Python</a> (better indentation) modes.</li>
40+
<li>New mode: <a href="../mode/cypher/index.html">Cypher</a>.</li>
41+
<li>New theme: <a href="../demo/theme.html?neo">Neo</a>.</li>
42+
<li>Support direct styling options (color, line style, width) in the <a href="manual.html#addon_rulers">rulers</a> addon.</li>
43+
<li>Recognize per-editor configuration for the <a href="manual.html#addon_show-hint">show-hint</a> and <a href="manual.html#addon_foldcode">foldcode</a> addons.</li>
44+
<li>More intelligent scanning for existing close tags in <a href="manual.html#addon_closetag">closetag</a> addon.</li>
45+
<li>In the <a href="../demo/vim.html">Vim bindings</a>: Fix bracket matching, support case conversion in visual mode, visual paste, append action.</li>
46+
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/4.1.0...4.2.0">list of patches</a>.</li>
47+
</ul>
48+
3249
<p class="rel">22-04-2014: <a href="http://codemirror.net/codemirror-4.1.zip">Version 4.1</a>:</p>
3350

3451
<ul class="rel-note">

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.1</strong> (<a href="doc/releases.html">Release notes</a>)</div>
88+
<div><strong>version 4.2</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>

lib/codemirror.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7595,7 +7595,7 @@
75957595

75967596
// THE END
75977597

7598-
CodeMirror.version = "4.1.1";
7598+
CodeMirror.version = "4.2.0";
75997599

76007600
return CodeMirror;
76017601
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codemirror",
3-
"version":"4.1.1",
3+
"version":"4.2.0",
44
"main": "lib/codemirror.js",
55
"description": "In-browser code editing made bearable",
66
"licenses": [{"type": "MIT",

0 commit comments

Comments
 (0)