Skip to content

Commit be9e01e

Browse files
committed
Mark version 4.8.0
1 parent 096a20a commit be9e01e

8 files changed

+28
-5
lines changed

AUTHORS

+10
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ anaran
3232
AndersMad
3333
Anders Nawroth
3434
Anderson Mesquita
35+
Andrea G
3536
Andreas Reischuck
3637
Andre von Houck
3738
Andrey Fedorov
@@ -87,6 +88,7 @@ ComFreek
8788
Curtis Gagliardi
8889
dagsta
8990
daines
91+
Dale Jung
9092
Dan Heberden
9193
Daniel, Dao Quang Minh
9294
Daniele Di Sarli
@@ -145,6 +147,7 @@ Golevka
145147
Gordon Smith
146148
Grant Skinner
147149
greengiant
150+
Gregory Koberger
148151
Guillaume Massé
149152
Guillaume Massé
150153
Gustavo Rodrigues
@@ -177,6 +180,7 @@ jankeromnes
177180
Jan Keromnes
178181
Jan Odvarko
179182
Jan T. Sott
183+
Jared Forsyth
180184
Jason
181185
Jason Grout
182186
Jason Johnston
@@ -187,6 +191,7 @@ Jean Boussier
187191
jeffkenton
188192
Jeff Pickhardt
189193
jem (graphite)
194+
Jeremy Parmenter
190195
Jochen Berger
191196
Johan Ask
192197
John Connor
@@ -230,6 +235,7 @@ LM
230235
lochel
231236
Lorenzo Stoakes
232237
Luciano Longo
238+
Luke Stagner
233239
lynschinzer
234240
Maksim Lin
235241
Maksym Taran
@@ -289,8 +295,10 @@ nextrevision
289295
nguillaumin
290296
Ng Zhi An
291297
Nicholas Bollweg
298+
Nicholas Bollweg (Nick)
292299
Nick Small
293300
Niels van Groningen
301+
nightwing
294302
Nikita Beloglazov
295303
Nikita Vasilyev
296304
Nikolay Kostov
@@ -317,6 +325,7 @@ prasanthj
317325
Prasanth J
318326
Radek Piórkowski
319327
Rahul
328+
Randy Burden
320329
Randy Edmunds
321330
Rasmus Erik Voel Jensen
322331
Richard van der Meer
@@ -336,6 +345,7 @@ satchmorun
336345
sathyamoorthi
337346
SCLINIC\jdecker
338347
Scott Aikin
348+
Scott Goodhew
339349
Sebastian Zaha
340350
shaund
341351
shaun gilchrist

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codemirror",
3-
"version":"4.7.1",
3+
"version":"4.8.0",
44
"main": ["lib/codemirror.js", "lib/codemirror.css"],
55
"ignore": [
66
"**/.*",

doc/compress.html

+1
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.8.0;f=">4.8</option>
3940
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=4.7.0;f=">4.7</option>
4041
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=4.6.0;f=">4.6</option>
4142
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=4.5.0;f=">4.5</option>

doc/manual.html

+1-1
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.7.1</span>
66+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 4.8.0</span>
6767
</h2>
6868

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

doc/releases.html

+12
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,18 @@ <h2>Release notes and version history</h2>
2929

3030
<h2>Version 4.x</h2>
3131

32+
<p class="rel">22-11-2014: <a href="http://codemirror.net/codemirror-4.8.zip">Version 4.8</a>:</p>
33+
34+
<ul class="rel-note">
35+
<li>Built-in support for <a href="manual.html#normalizeKeyMap">multi-stroke key bindings</a>.</li>
36+
<li>New method: <a href="manual.html#getLineTokens"><code>getLineTokens</code></a>.</li>
37+
<li>New modes: <a href="../mode/dockerfile/index.html">dockerfile</a>, <a href="../mode/idl/index.html">IDL</a>, <a href="../mode/clike/index.html">Objective C</a> (crude).</li>
38+
<li>Support styling of gutter backgrounds, allow <code>"gutter"</code> styles in <a href="manual.html#addLineClass"><code>addLineClass</code></a>.</li>
39+
<li>Many improvements to the <a href="../demo/vim.html">Vim mode</a>, rewritten visual mode.</li>
40+
<li>Improvements to modes: <a href="../mode/gfm/index.html">gfm</a> (strikethrough), <a href="../mode/sparql/index.html">SPARQL</a> (version 1.1 support), and <a href="../mode/stex/index.html">sTeX</a> (no more runaway math mode).
41+
<li>Full <a href="https://github.com/codemirror/CodeMirror/compare/4.7.0...4.8.0">list of patches</a>.</li>
42+
</ul>
43+
3244
<p class="rel">20-10-2014: <a href="http://codemirror.net/codemirror-4.7.zip">Version 4.7</a>:</p>
3345

3446
<ul class="rel-note">

index.html

+1-1
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.7</strong> (<a href="doc/releases.html">Release notes</a>)</div>
88+
<div><strong>version 4.8</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

+1-1
Original file line numberDiff line numberDiff line change
@@ -7916,7 +7916,7 @@
79167916

79177917
// THE END
79187918

7919-
CodeMirror.version = "4.7.1";
7919+
CodeMirror.version = "4.8.0";
79207920

79217921
return CodeMirror;
79227922
});

package.json

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

0 commit comments

Comments
 (0)