Skip to content

Commit 32ed0cf

Browse files
committed
mark release 2.01
1 parent 89b6711 commit 32ed0cf

File tree

3 files changed

+43
-24
lines changed

3 files changed

+43
-24
lines changed

compress.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMi
2626
<input type="hidden" id="download" name="download" value="codemirror-compressed.js"/>
2727
<p>Version: <select id="version" onchange="setVersion(this);" style="padding: 1px">
2828
<option value="http://codemirror.net/">HEAD</option>
29+
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.01;f=">2.01</option>
2930
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.0;f=">2.0</option>
3031
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=beta2;f=">beta2</option>
3132
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=beta1;f=">beta1</option>

index.html

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

150150
<h2>Releases:</h2>
151151

152+
<p class="rel">26-05-2011: <a href="http://codemirror.net/codemirror-2.01.zip">Version 2.01</a>:</p>
153+
<ul class="rel-note">
154+
<li>Add a <a href="mode/smalltalk/index.html">Smalltalk mode</a>.</li>
155+
<li>Add a <a href="mode/rst/index.html">reStructuredText mode</a>.</li>
156+
<li>Add a <a href="mode/python/index.html">Python mode</a>.</li>
157+
<li>Add a <a href="mode/plsql/index.html">PL/SQL mode</a>.</li>
158+
<li><code>coordsChar</code> now works</li>
159+
<li>Fix a problem where <code>onCursorActivity</code> interfered with <code>onChange</code>.</li>
160+
<li>Fix a number of scrolling and mouse-click-position glitches.</li>
161+
<li>Pass information about the changed lines to <code>onChange</code>.</li>
162+
<li>Support cmd-up/down on OS X.</li>
163+
<li>Add triple-click line selection.</li>
164+
<li>Don't handle shift when changing the selection through the API.</li>
165+
<li>Support <code>"nocursor"</code> mode for <code>readOnly</code> option.</li>
166+
<li>Add an <code>onHighlightComplete</code> option.</li>
167+
<li>Fix the context menu for Firefox.</li>
168+
</ul>
169+
152170
<p class="rel">28-03-2011: <a href="http://codemirror.net/codemirror-2.0.zip">Version 2.0</a>:</p>
153171
<p class="rel-note">CodeMirror 2 is a complete rewrite that's
154172
faster, smaller, simpler to use, and less dependent on browser
@@ -188,30 +206,6 @@ <h2>Releases:</h2>
188206
<li>Fix yet another hang with line-numbering in hidden editors.</li>
189207
</ul>
190208

191-
<p class="rel">17-12-2010: <a href="http://codemirror.net/codemirror-0.92.zip">Version 0.92</a>:</p>
192-
<ul class="rel-note">
193-
<li>Make CodeMirror work in XHTML documents.</li>
194-
<li>Fix bug in handling of backslashes in Python strings.</li>
195-
<li>The <code>styleNumbers</code> option is now officially
196-
supported and documented.</li>
197-
<li><code>onLineNumberClick</code> option added.</li>
198-
<li>More consistent names <code>onLoad</code> and
199-
<code>onCursorActivity</code> callbacks. Old names still work, but
200-
are deprecated.</li>
201-
<li>Add a <a href="contrib/freemarker/index.html">Freemarker</a> mode.</li>
202-
</ul>
203-
204-
<p class="rel">11-11-2010: <a
205-
href="http://codemirror.net/codemirror-0.91.zip">Version 0.91</a>:</p>
206-
<ul class="rel-note">
207-
<li>Adds support for <a href="contrib/java">Java</a>.</li>
208-
<li>Small additions to the <a href="contrib/php">PHP</a> and <a href="contrib/sql">SQL</a> parsers.</li>
209-
<li>Work around various <a href="https://bugs.webkit.org/show_bug.cgi?id=47806">Webkit</a> <a href="https://bugs.webkit.org/show_bug.cgi?id=23474">issues</a>.</li>
210-
<li>Fix <code>toTextArea</code> to update the code in the textarea.</li>
211-
<li>Add a <code>noScriptCaching</code> option (hack to ease development).</li>
212-
<li>Make sub-modes of <a href="mixedtest.html">HTML mixed</a> mode configurable.</li>
213-
</ul>
214-
215209
<p><a href="oldrelease.html">Older releases...</a></p>
216210

217211
</div></div>

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

1616
</pre>
1717

18+
<p class="rel">17-12-2010: <a href="http://codemirror.net/codemirror-0.92.zip">Version 0.92</a>:</p>
19+
<ul class="rel-note">
20+
<li>Make CodeMirror work in XHTML documents.</li>
21+
<li>Fix bug in handling of backslashes in Python strings.</li>
22+
<li>The <code>styleNumbers</code> option is now officially
23+
supported and documented.</li>
24+
<li><code>onLineNumberClick</code> option added.</li>
25+
<li>More consistent names <code>onLoad</code> and
26+
<code>onCursorActivity</code> callbacks. Old names still work, but
27+
are deprecated.</li>
28+
<li>Add a <a href="contrib/freemarker/index.html">Freemarker</a> mode.</li>
29+
</ul>
30+
31+
<p class="rel">11-11-2010: <a
32+
href="http://codemirror.net/codemirror-0.91.zip">Version 0.91</a>:</p>
33+
<ul class="rel-note">
34+
<li>Adds support for <a href="contrib/java">Java</a>.</li>
35+
<li>Small additions to the <a href="contrib/php">PHP</a> and <a href="contrib/sql">SQL</a> parsers.</li>
36+
<li>Work around various <a href="https://bugs.webkit.org/show_bug.cgi?id=47806">Webkit</a> <a href="https://bugs.webkit.org/show_bug.cgi?id=23474">issues</a>.</li>
37+
<li>Fix <code>toTextArea</code> to update the code in the textarea.</li>
38+
<li>Add a <code>noScriptCaching</code> option (hack to ease development).</li>
39+
<li>Make sub-modes of <a href="mixedtest.html">HTML mixed</a> mode configurable.</li>
40+
</ul>
41+
1842
<p class="rel">02-10-2010: <a
1943
href="http://codemirror.net/codemirror-0.9.zip">Version 0.9</a>:</p>
2044
<ul class="rel-note">

0 commit comments

Comments
 (0)