Skip to content

Commit ee96b13

Browse files
committed
Mark release 2.36
1 parent 751680e commit ee96b13

File tree

4 files changed

+41
-13
lines changed

4 files changed

+41
-13
lines changed

doc/compress.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@ <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=v3.0rc1;f=">3.0rc1</option>
3334
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.0beta2;f=">3.0beta2</option>
34-
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v2.35;f=">2.35</option>
3535
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.0beta1;f=">3.0beta1</option>
36+
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v2.36;f=">2.36</option>
37+
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v2.35;f=">2.35</option>
3638
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v2.34;f=">2.34</option>
3739
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v2.33;f=">2.33</option>
3840
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v2.32;f=">2.32</option>

index.html

Lines changed: 36 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,42 @@ <h2>Reading material</h2>
282282

283283
<h2 id=releases>Releases</h2>
284284

285+
<p class="rel">20-11-2012: <a href="http://codemirror.net/codemirror-2.36.zip">Version 2.36</a>:</p>
286+
287+
<ul class="rel-note">
288+
<li>New mode: <a href="mode/z80/index.html">Z80 assembly</a>.</li>
289+
<li>New theme: <a href="demo/theme.html?twilight">Twilight</a>.</li>
290+
<li>Add command-line compression helper.</li>
291+
<li>Make <a href="doc/manual.html#scrollIntoView"><code>scrollIntoView</code></a> public.</li>
292+
<li>Add <a href="doc/manual.html#defaultTextHeight"><code>defaultTextHeight</code></a> method.</li>
293+
<li>Various extensions to the vim keymap.</li>
294+
<li>Make <a href="mode/php/index.html">PHP mode</a> build on <a href="mode/htmlmixed/index.html">mixed HTML mode</a>.</li>
295+
<li>Add <a href="doc/manual.html#util_continuecomment">comment-continuing</a> add-on.</li>
296+
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/v2.35...v2.36">list of patches</a>.</li>
297+
</ul>
298+
299+
<p class="rel">20-11-2012: <a href="http://codemirror.net/codemirror-3.0rc1.zip">Version 3.0, release candidate 1</a>:</p>
300+
301+
<p class="rel-note"><strong>New major version</strong>. Only partially
302+
backwards-compatible. See
303+
the <a href="http://codemirror.net/3/doc/upgrade_v3.html">upgrading
304+
guide</a> for more information. Changes since beta 2:</p>
305+
306+
<ul class="rel-note">
307+
<li>New theme: <a href="http://codemirror.net/3/demo/theme.html?solarized%20light">Solarized</a>.</li>
308+
<li>Introduce <a href="http://codemirror.net/3/doc/manual.html#addLineClass"><code>addLineClass</code></a>
309+
and <a href="http://codemirror.net/3/doc/manual.html#removeLineClass"><code>removeLineClass</code></a>,
310+
drop <code>setLineClass</code>.</li>
311+
<li>Add a <em>lot</em> of
312+
new <a href="http://codemirror.net/3/doc/manual.html#markText">options for marked text</a>
313+
(read-only, atomic, collapsed, widget replacement).</li>
314+
<li>Remove the old code folding interface in favour of these new ranges.</li>
315+
<li>Add <a href="http://codemirror.net/3/doc/manual.html#isClean"><code>isClean</code></a>/<a href="http://codemirror.net/3/doc/manual.html#markClean"><code>markClean</code></a> methods.</li>
316+
<li>Remove <code>compoundChange</code> method, use better undo-event-combining heuristic.</li>
317+
<li>Improve scrolling performance smoothness.</li>
318+
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/v3.0beta2...v3.0rc1">list of patches</a>.</li>
319+
</ul>
320+
285321
<p class="rel">22-10-2012: <a href="http://codemirror.net/codemirror-2.35.zip">Version 2.35</a>:</p>
286322

287323
<ul class="rel-note">
@@ -295,11 +331,6 @@ <h2 id=releases>Releases</h2>
295331

296332
<p class="rel">22-10-2012: <a href="http://codemirror.net/codemirror-3.0beta2.zip">Version 3.0, beta 2</a>:</p>
297333

298-
<p class="rel-note"><strong>BETA release, new major version</strong>. Only partially
299-
backwards-compatible. See
300-
the <a href="http://codemirror.net/3/doc/upgrade_v3.html">upgrading
301-
guide</a> for more information. Changes since beta1:</p>
302-
303334
<ul class="rel-note">
304335
<li>Fix page-based coordinate computation.</li>
305336
<li>Fix firing of <a href="http://codemirror.net/3/doc/manual.html#event_gutterClick"><code>gutterClick</code></a> event.</li>
@@ -329,11 +360,6 @@ <h2 id=releases>Releases</h2>
329360

330361
<p class="rel">19-09-2012: <a href="http://codemirror.net/codemirror-3.0beta1.zip">Version 3.0, beta 1</a>:</p>
331362

332-
<p class="rel-note"><strong>BETA release, new major version</strong>. Only partially
333-
backwards-compatible. See
334-
the <a href="http://codemirror.net/3/doc/upgrade_v3.html">upgrading
335-
guide</a> for more information. Major new features are:</p>
336-
337363
<ul class="rel-note">
338364
<li>Bi-directional text support.</li>
339365
<li>More powerful gutter model.</li>

lib/codemirror.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3163,7 +3163,7 @@ window.CodeMirror = (function() {
31633163
for (var i = 1; i <= 12; i++) keyNames[i + 111] = keyNames[i + 63235] = "F" + i;
31643164
})();
31653165

3166-
CodeMirror.version = "2.35 +";
3166+
CodeMirror.version = "2.36";
31673167

31683168
return CodeMirror;
31693169
})();

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

0 commit comments

Comments
 (0)