Skip to content

Commit f991a9f

Browse files
committed
Mark release 2.16
1 parent bab83c2 commit f991a9f

File tree

3 files changed

+30
-18
lines changed

3 files changed

+30
-18
lines changed

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.16;f=">2.16</option>
3031
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.15;f=">2.15</option>
3132
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.13;f=">2.13</option>
3233
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.12;f=">2.12</option>

index.html

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,18 @@ <h2>Make a donation</h2>
172172

173173
<h2>Releases:</h2>
174174

175+
<p class="rel">27-10-2011: <a href="http://codemirror.net/codemirror-2.16.zip">Version 2.16</a>:</p>
176+
<ul class="rel-note">
177+
<li>Add <a href="mode/perl/index.html">Perl</a>, <a href="mode/rust/index.html">Rust</a>, <a href="mode/tiddlywiki/index.html">TiddlyWiki</a>, and <a href="mode/groovy/index.html">Groovy</a> modes.</li>
178+
<li>Dragging text inside the editor now moves, rather than copies.</li>
179+
<li>Add a <a href="manual.html#coordsFromIndex"><code>coordsFromIndex</code></a> method.</li>
180+
<li><strong>API change</strong>: <code>setValue</code> now no longer clears history. Use <a href="manual.html#clearHistory"><code>clearHistory</code></a> for that.</li>
181+
<li><strong>API change</strong>: <a href="manual.html#markText"><code>markText</code></a> now
182+
returns an object with <code>clear</code> and <code>find</code>
183+
methods. Marked text is now more robust when edited.</li>
184+
<li>Fix editing code with tabs in Internet Explorer.</li>
185+
</ul>
186+
175187
<p class="rel">26-09-2011: <a href="http://codemirror.net/codemirror-2.15.zip">Version 2.15</a>:</p>
176188
<p class="rel-note">Fix bug that snuck into 2.14: Clicking the
177189
character that currently has the cursor didn't re-focus the
@@ -242,24 +254,6 @@ <h2>Releases:</h2>
242254
<li>Fix problem with 'sticking' horizontal scrollbar.</li>
243255
</ul>
244256

245-
<p class="rel">26-05-2011: <a href="http://codemirror.net/codemirror-2.01.zip">Version 2.01</a>:</p>
246-
<ul class="rel-note">
247-
<li>Add a <a href="mode/smalltalk/index.html">Smalltalk mode</a>.</li>
248-
<li>Add a <a href="mode/rst/index.html">reStructuredText mode</a>.</li>
249-
<li>Add a <a href="mode/python/index.html">Python mode</a>.</li>
250-
<li>Add a <a href="mode/plsql/index.html">PL/SQL mode</a>.</li>
251-
<li><code>coordsChar</code> now works</li>
252-
<li>Fix a problem where <code>onCursorActivity</code> interfered with <code>onChange</code>.</li>
253-
<li>Fix a number of scrolling and mouse-click-position glitches.</li>
254-
<li>Pass information about the changed lines to <code>onChange</code>.</li>
255-
<li>Support cmd-up/down on OS X.</li>
256-
<li>Add triple-click line selection.</li>
257-
<li>Don't handle shift when changing the selection through the API.</li>
258-
<li>Support <code>"nocursor"</code> mode for <code>readOnly</code> option.</li>
259-
<li>Add an <code>onHighlightComplete</code> option.</li>
260-
<li>Fix the context menu for Firefox.</li>
261-
</ul>
262-
263257
<p><a href="oldrelease.html">Older releases...</a></p>
264258

265259
</div></div>

oldrelease.html

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

1717
</pre>
18+
<p class="rel">26-05-2011: <a href="http://codemirror.net/codemirror-2.01.zip">Version 2.01</a>:</p>
19+
<ul class="rel-note">
20+
<li>Add a <a href="mode/smalltalk/index.html">Smalltalk mode</a>.</li>
21+
<li>Add a <a href="mode/rst/index.html">reStructuredText mode</a>.</li>
22+
<li>Add a <a href="mode/python/index.html">Python mode</a>.</li>
23+
<li>Add a <a href="mode/plsql/index.html">PL/SQL mode</a>.</li>
24+
<li><code>coordsChar</code> now works</li>
25+
<li>Fix a problem where <code>onCursorActivity</code> interfered with <code>onChange</code>.</li>
26+
<li>Fix a number of scrolling and mouse-click-position glitches.</li>
27+
<li>Pass information about the changed lines to <code>onChange</code>.</li>
28+
<li>Support cmd-up/down on OS X.</li>
29+
<li>Add triple-click line selection.</li>
30+
<li>Don't handle shift when changing the selection through the API.</li>
31+
<li>Support <code>"nocursor"</code> mode for <code>readOnly</code> option.</li>
32+
<li>Add an <code>onHighlightComplete</code> option.</li>
33+
<li>Fix the context menu for Firefox.</li>
34+
</ul>
1835

1936
<p class="rel">28-03-2011: <a href="http://codemirror.net/codemirror-2.0.zip">Version 2.0</a>:</p>
2037
<p class="rel-note">CodeMirror 2 is a complete rewrite that's

0 commit comments

Comments
 (0)