Skip to content

Commit 93fd369

Browse files
committed
Mark release 3.13
1 parent a691c9d commit 93fd369

File tree

5 files changed

+41
-30
lines changed

5 files changed

+41
-30
lines changed

doc/compress.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMi
3030
<input type="hidden" id="download" name="download" value="codemirror-compressed.js"/>
3131
<p>Version: <select id="version" onchange="setVersion(this);" style="padding: 1px">
3232
<option value="http://codemirror.net/">HEAD</option>
33+
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=3.13.0;f=">3.13</option>
3334
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.12;f=">3.12</option>
3435
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.11;f=">3.11</option>
3536
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.1;f=">3.1</option>

doc/oldrelease.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,34 @@ <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMi
1919
</pre>
2020
</div>
2121

22+
<p class="rel">20-11-2012: <a href="http://codemirror.net/codemirror-3.0rc1.zip">Version 3.0, release candidate 1</a>:</p>
23+
24+
<ul class="rel-note">
25+
<li>New theme: <a href="../demo/theme.html?solarized%20light">Solarized</a>.</li>
26+
<li>Introduce <a href="manual.html#addLineClass"><code>addLineClass</code></a>
27+
and <a href="manual.html#removeLineClass"><code>removeLineClass</code></a>,
28+
drop <code>setLineClass</code>.</li>
29+
<li>Add a <em>lot</em> of
30+
new <a href="manual.html#markText">options for marked text</a>
31+
(read-only, atomic, collapsed, widget replacement).</li>
32+
<li>Remove the old code folding interface in favour of these new ranges.</li>
33+
<li>Add <a href="manual.html#isClean"><code>isClean</code></a>/<a href="manual.html#markClean"><code>markClean</code></a> methods.</li>
34+
<li>Remove <code>compoundChange</code> method, use better undo-event-combining heuristic.</li>
35+
<li>Improve scrolling performance smoothness.</li>
36+
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/v3.0beta2...v3.0rc1">list of patches</a>.</li>
37+
</ul>
38+
39+
<p class="rel">22-10-2012: <a href="http://codemirror.net/codemirror-2.35.zip">Version 2.35</a>:</p>
40+
41+
<ul class="rel-note">
42+
<li>New (sub) mode: <a href="../mode/javascript/typescript.html">TypeScript</a>.</li>
43+
<li>Don't overwrite (insert key) when pasting.</li>
44+
<li>Fix several bugs in <a href="manual.html#markText"><code>markText</code></a>/undo interaction.</li>
45+
<li>Better indentation of JavaScript code without semicolons.</li>
46+
<li>Add <a href="manual.html#defineInitHook"><code>defineInitHook</code></a> function.</li>
47+
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/v2.34...v2.35">list of patches</a>.</li>
48+
</ul>
49+
2250
<p class="rel">22-10-2012: <a href="http://codemirror.net/codemirror-3.0beta2.zip">Version 3.0, beta 2</a>:</p>
2351

2452
<ul class="rel-note">

index.html

Lines changed: 10 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,16 @@ <h2>Reading material</h2>
287287

288288
<h2 id=releases>Releases</h2>
289289

290+
<p class="rel">20-05-2013: <a href="http://codemirror.net/codemirror-3.13.zip">Version 3.13</a>:</p>
291+
292+
<ul class="rel-note">
293+
<li>New modes: <a href="mode/cobol/index.html">COBOL</a> and <a href="mode/haml/index.html">HAML</a>.</li>
294+
<li>New options: <a href="doc/manual.html#option_cursorScrollMargin"><code>cursorScrollMargin</code></a> and <a href="doc/manual.html#option_coverGutterNextToScrollbar"><code>coverGutterNextToScrollbar</code></a>.</li>
295+
<li>New addon: <a href="doc/manual.html#addon_comment">commenting</a>.</li>
296+
<li>More features added to the <a href="demo/vim.html">Vim keymap</a>.</li>
297+
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/v3.12...3.13.0">list of patches</a>.</li>
298+
</ul>
299+
290300
<p class="rel">19-04-2013: <a href="http://codemirror.net/codemirror-3.12.zip">Version 3.12</a>:</p>
291301

292302
<ul class="rel-note">
@@ -445,34 +455,6 @@ <h2 id=releases>Releases</h2>
445455
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/v2.35...v2.36">list of patches</a>.</li>
446456
</ul>
447457

448-
<p class="rel">20-11-2012: <a href="http://codemirror.net/codemirror-3.0rc1.zip">Version 3.0, release candidate 1</a>:</p>
449-
450-
<ul class="rel-note">
451-
<li>New theme: <a href="demo/theme.html?solarized%20light">Solarized</a>.</li>
452-
<li>Introduce <a href="doc/manual.html#addLineClass"><code>addLineClass</code></a>
453-
and <a href="doc/manual.html#removeLineClass"><code>removeLineClass</code></a>,
454-
drop <code>setLineClass</code>.</li>
455-
<li>Add a <em>lot</em> of
456-
new <a href="doc/manual.html#markText">options for marked text</a>
457-
(read-only, atomic, collapsed, widget replacement).</li>
458-
<li>Remove the old code folding interface in favour of these new ranges.</li>
459-
<li>Add <a href="doc/manual.html#isClean"><code>isClean</code></a>/<a href="doc/manual.html#markClean"><code>markClean</code></a> methods.</li>
460-
<li>Remove <code>compoundChange</code> method, use better undo-event-combining heuristic.</li>
461-
<li>Improve scrolling performance smoothness.</li>
462-
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/v3.0beta2...v3.0rc1">list of patches</a>.</li>
463-
</ul>
464-
465-
<p class="rel">22-10-2012: <a href="http://codemirror.net/codemirror-2.35.zip">Version 2.35</a>:</p>
466-
467-
<ul class="rel-note">
468-
<li>New (sub) mode: <a href="mode/javascript/typescript.html">TypeScript</a>.</li>
469-
<li>Don't overwrite (insert key) when pasting.</li>
470-
<li>Fix several bugs in <a href="doc/manual.html#markText"><code>markText</code></a>/undo interaction.</li>
471-
<li>Better indentation of JavaScript code without semicolons.</li>
472-
<li>Add <a href="doc/manual.html#defineInitHook"><code>defineInitHook</code></a> function.</li>
473-
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/v2.34...v2.35">list of patches</a>.</li>
474-
</ul>
475-
476458
<p><a href="doc/oldrelease.html">Older releases...</a></p>
477459

478460
</div></div>

lib/codemirror.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5629,7 +5629,7 @@ window.CodeMirror = (function() {
56295629

56305630
// THE END
56315631

5632-
CodeMirror.version = "3.12 +";
5632+
CodeMirror.version = "3.13";
56335633

56345634
return CodeMirror;
56355635
})();

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

0 commit comments

Comments
 (0)