Skip to content

Commit 43e88d4

Browse files
committed
Mark release 4.5.0
1 parent 7792d88 commit 43e88d4

File tree

8 files changed

+22
-5
lines changed

8 files changed

+22
-5
lines changed

AUTHORS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ Alexandre Bique
2424
alexey-k
2525
Alex Piggott
2626
Amsul
27+
amuntean
2728
Amy
2829
Ananya Sen
2930
anaran
3031
AndersMad
3132
Anders Nawroth
3233
Anderson Mesquita
34+
Andreas Reischuck
3335
Andre von Houck
3436
Andrey Lushnikov
3537
Andy Joslin
@@ -128,6 +130,7 @@ Gabriel Horner
128130
Gabriel Nahmias
129131
galambalazs
130132
Gautam Mehta
133+
gekkoe
131134
Gergely Hegykozi
132135
Glenn Jorde
133136
Glenn Ruehle
@@ -138,6 +141,7 @@ greengiant
138141
Guillaume Massé
139142
Guillaume Massé
140143
Gustavo Rodrigues
144+
Hakan Tunc
141145
Hans Engel
142146
Hardest
143147
Hasan Karahan
@@ -268,6 +272,7 @@ nextrevision
268272
nguillaumin
269273
Ng Zhi An
270274
Nicholas Bollweg
275+
Nick Small
271276
Niels van Groningen
272277
Nikita Beloglazov
273278
Nikita Vasilyev
@@ -334,6 +339,7 @@ Takuji Shimokawa
334339
Tarmil
335340
tfjgeorge
336341
Thaddee Tyl
342+
TheHowl
337343
think
338344
Thomas Dvornik
339345
Thomas Schmid

bower.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.4.1",
3+
"version":"4.5.0",
44
"main": ["lib/codemirror.js", "lib/codemirror.css"],
55
"ignore": [
66
"**/.*",

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.5.0;f=">4.5</option>
3940
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=4.4.0;f=">4.4</option>
4041
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=4.3.0;f=">4.3</option>
4142
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=4.2.1;f=">4.2</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.4.1</span>
66+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 4.5.0</span>
6767
</h2>
6868

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

doc/releases.html

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

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

32+
<p class="rel">21-08-2014: <a href="http://codemirror.net/codemirror-4.5.zip">Version 4.5</a>:</p>
33+
34+
<ul class="rel-note">
35+
<li>Fix several serious bugs with horizontal scrolling</li>
36+
<li>New mode: <a href="../mode/slim/index.html">Slim</a></li>
37+
<li>New command: <a href="manual.html#command_goLineLeftSmart"><code>goLineLeftSmart</code></a></li>
38+
<li>More fixes and extensions for the <a href="../demo/vim.html">Vim</a> visual block mode</li>
39+
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/4.4.0...4.5.0">list of patches</a>.</li>
40+
</ul>
41+
3242
<p class="rel">21-07-2014: <a href="http://codemirror.net/codemirror-4.4.zip">Version 4.4</a>:</p>
3343

3444
<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.4</strong> (<a href="doc/releases.html">Release notes</a>)</div>
88+
<div><strong>version 4.5</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
@@ -7825,7 +7825,7 @@
78257825

78267826
// THE END
78277827

7828-
CodeMirror.version = "4.4.1";
7828+
CodeMirror.version = "4.5.0";
78297829

78307830
return CodeMirror;
78317831
});

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.4.1",
3+
"version":"4.5.0",
44
"main": "lib/codemirror.js",
55
"description": "In-browser code editing made bearable",
66
"licenses": [{"type": "MIT",

0 commit comments

Comments
 (0)