Skip to content

Commit f66caa3

Browse files
committed
Mark release 2.24
1 parent e8597df commit f66caa3

File tree

3 files changed

+44
-23
lines changed

3 files changed

+44
-23
lines changed

doc/compress.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMi
2727
<input type="hidden" id="download" name="download" value="codemirror-compressed.js"/>
2828
<p>Version: <select id="version" onchange="setVersion(this);" style="padding: 1px">
2929
<option value="http://codemirror.net/">HEAD</option>
30+
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.24;f=">2.24</option>
3031
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.23;f=">2.23</option>
3132
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.22;f=">2.22</option>
3233
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.21;f=">2.21</option>

doc/oldrelease.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,30 @@ <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMi
1515
<img src="baboon.png" class="logo" alt="logo"/>/* Old release history */
1616

1717
</pre>
18+
19+
<p class="rel">23-08-2011: <a href="http://codemirror.net/codemirror-2.13.zip">Version 2.13</a>:</p>
20+
<ul class="rel-note">
21+
<li>Add <a href="../mode/ruby/index.html">Ruby</a>, <a href="../mode/r/index.html">R</a>, <a href="../mode/coffeescript/index.html">CoffeeScript</a>, and <a href="../mode/velocity/index.html">Velocity</a> modes.</li>
22+
<li>Add <a href="manual.html#getGutterElement"><code>getGutterElement</code></a> to API.</li>
23+
<li>Several fixes to scrolling and positioning.</li>
24+
<li>Add <a href="manual.html#option_smartHome"><code>smartHome</code></a> option.</li>
25+
<li>Add an experimental <a href="../mode/xmlpure/index.html">pure XML</a> mode.</li>
26+
</ul>
27+
28+
<p class="rel">25-07-2011: <a href="http://codemirror.net/codemirror-2.12.zip">Version 2.12</a>:</p>
29+
<ul class="rel-note">
30+
<li>Add a <a href="../mode/sparql/index.html">SPARQL</a> mode.</li>
31+
<li>Fix bug with cursor jumping around in an unfocused editor in IE.</li>
32+
<li>Allow key and mouse events to bubble out of the editor. Ignore widget clicks.</li>
33+
<li>Solve cursor flakiness after undo/redo.</li>
34+
<li>Fix block-reindent ignoring the last few lines.</li>
35+
<li>Fix parsing of multi-line attrs in XML mode.</li>
36+
<li>Use <code>innerHTML</code> for HTML-escaping.</li>
37+
<li>Some fixes to indentation in C-like mode.</li>
38+
<li>Shrink horiz scrollbars when long lines removed.</li>
39+
<li>Fix width feedback loop bug that caused the width of an inner DIV to shrink.</li>
40+
</ul>
41+
1842
<p class="rel">04-07-2011: <a href="http://codemirror.net/codemirror-2.11.zip">Version 2.11</a>:</p>
1943
<ul class="rel-note">
2044
<li>Add a <a href="../mode/scheme/index.html">Scheme mode</a>.</li>

index.html

Lines changed: 19 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,25 @@ <h2>Support CodeMirror</h2>
235235

236236
<h2>Releases:</h2>
237237

238+
<p class="rel">23-04-2012: <a href="http://codemirror.net/codemirror-2.24.zip">Version 2.24</a>:</p>
239+
240+
<ul class="rel-note">
241+
<li><strong>Drop support for Internet Explorer 6</strong>.</li>
242+
<li>New
243+
modes: <a href="mode/shell/index.html">Shell</a>, <a href="mode/tiki/index.html">Tiki
244+
wiki</a>, <a href="mode/pig/index.html">Pig Latin</a>.</li>
245+
<li>New themes: <a href="demo/theme.html?ambiance">Ambiance</a>, <a href="demo/theme.html?blackboard">Blackboard</a>.</li>
246+
<li>More control over drag/drop
247+
with <a href="doc/manual.html#option_dragDrop"><code>dragDrop</code></a>
248+
and <a href="doc/manual.html#option_onDragEvent"><code>onDragEvent</code></a>
249+
options.</li>
250+
<li>Make HTML mode a bit less pedantic.</li>
251+
<li>Add <a href="doc/manual.html#compoundChange"><code>compoundChange</code></a> API method.</li>
252+
<li>Several fixes in undo history and line hiding.</li>
253+
<li>Remove (broken) support for <code>catchall</code> in key maps,
254+
add <code>nofallthrough</code> boolean field instead.</li>
255+
</ul>
256+
238257
<p class="rel">26-03-2012: <a href="http://codemirror.net/codemirror-2.23.zip">Version 2.23</a>:</p>
239258

240259
<ul class="rel-note">
@@ -359,29 +378,6 @@ <h2>Releases:</h2>
359378
<li>Allow dragging of text out of the editor (on modern browsers).</li>
360379
</ul>
361380

362-
<p class="rel">23-08-2011: <a href="http://codemirror.net/codemirror-2.13.zip">Version 2.13</a>:</p>
363-
<ul class="rel-note">
364-
<li>Add <a href="mode/ruby/index.html">Ruby</a>, <a href="mode/r/index.html">R</a>, <a href="mode/coffeescript/index.html">CoffeeScript</a>, and <a href="mode/velocity/index.html">Velocity</a> modes.</li>
365-
<li>Add <a href="doc/manual.html#getGutterElement"><code>getGutterElement</code></a> to API.</li>
366-
<li>Several fixes to scrolling and positioning.</li>
367-
<li>Add <a href="doc/manual.html#option_smartHome"><code>smartHome</code></a> option.</li>
368-
<li>Add an experimental <a href="mode/xmlpure/index.html">pure XML</a> mode.</li>
369-
</ul>
370-
371-
<p class="rel">25-07-2011: <a href="http://codemirror.net/codemirror-2.12.zip">Version 2.12</a>:</p>
372-
<ul class="rel-note">
373-
<li>Add a <a href="mode/sparql/index.html">SPARQL</a> mode.</li>
374-
<li>Fix bug with cursor jumping around in an unfocused editor in IE.</li>
375-
<li>Allow key and mouse events to bubble out of the editor. Ignore widget clicks.</li>
376-
<li>Solve cursor flakiness after undo/redo.</li>
377-
<li>Fix block-reindent ignoring the last few lines.</li>
378-
<li>Fix parsing of multi-line attrs in XML mode.</li>
379-
<li>Use <code>innerHTML</code> for HTML-escaping.</li>
380-
<li>Some fixes to indentation in C-like mode.</li>
381-
<li>Shrink horiz scrollbars when long lines removed.</li>
382-
<li>Fix width feedback loop bug that caused the width of an inner DIV to shrink.</li>
383-
</ul>
384-
385381
<p><a href="doc/oldrelease.html">Older releases...</a></p>
386382

387383
</div></div>

0 commit comments

Comments
 (0)