Skip to content

Commit 5920e29

Browse files
committed
Mark release 2.3
1 parent 35a7096 commit 5920e29

File tree

4 files changed

+30
-16
lines changed

4 files changed

+30
-16
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.3;f=">2.3</option>
3031
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.25;f=">2.25</option>
3132
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.24;f=">2.24</option>
3233
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.23;f=">2.23</option>

doc/oldrelease.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,22 @@ <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMi
1616

1717
</pre>
1818

19+
<p class="rel">26-09-2011: <a href="http://codemirror.net/codemirror-2.15.zip">Version 2.15</a>:</p>
20+
<p class="rel-note">Fix bug that snuck into 2.14: Clicking the
21+
character that currently has the cursor didn't re-focus the
22+
editor.</p>
23+
24+
<p class="rel">26-09-2011: <a href="http://codemirror.net/codemirror-2.14.zip">Version 2.14</a>:</p>
25+
<ul class="rel-note">
26+
<li>Add <a href="../mode/clojure/index.html">Clojure</a>, <a href="../mode/pascal/index.html">Pascal</a>, <a href="../mode/ntriples/index.html">NTriples</a>, <a href="../mode/jinja2/index.html">Jinja2</a>, and <a href="../mode/markdown/index.html">Markdown</a> modes.</li>
27+
<li>Add <a href="../theme/cobalt.css">Cobalt</a> and <a href="../theme/eclipse.css">Eclipse</a> themes.</li>
28+
<li>Add a <a href="manual.html#option_fixedGutter"><code>fixedGutter</code></a> option.</li>
29+
<li>Fix bug with <code>setValue</code> breaking cursor movement.</li>
30+
<li>Make gutter updates much more efficient.</li>
31+
<li>Allow dragging of text out of the editor (on modern browsers).</li>
32+
</ul>
33+
34+
1935
<p class="rel">23-08-2011: <a href="http://codemirror.net/codemirror-2.13.zip">Version 2.13</a>:</p>
2036
<ul class="rel-note">
2137
<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>

index.html

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,18 @@ <h2>Reading material</h2>
250250

251251
<h2>Releases</h2>
252252

253+
<p class="rel">22-06-2012: <a href="http://codemirror.net/codemirror-2.3.zip">Version 2.3</a>:</p>
254+
255+
<ul class="rel-note">
256+
<li><strong>New scrollbar implementation</strong>. Should flicker less. Changes DOM structure of the editor.</li>
257+
<li>New theme: <a href="demo/theme.html?vibrant-ink">vibrant-ink</a>.</li>
258+
<li>Many extensions to the VIM keymap (including text objects).</li>
259+
<li>Add <a href="demo/multiplex.html">mode-multiplexing</a> utility script.</li>
260+
<li>Fix bug where right-click paste works in read-only mode.</li>
261+
<li>Add a <a href="doc/manual.html#getScrollInfo"><code>getScrollInfo</code></a> method.</li>
262+
<li>Lots of other <a href="https://github.com/marijnh/CodeMirror2/compare/v2.25...v2.3">fixes</a>.</li>
263+
</ul>
264+
253265
<p class="rel">23-05-2012: <a href="http://codemirror.net/codemirror-2.25.zip">Version 2.25</a>:</p>
254266

255267
<ul class="rel-note">
@@ -389,21 +401,6 @@ <h2>Releases</h2>
389401
<li>Fix editing code with tabs in Internet Explorer.</li>
390402
</ul>
391403

392-
<p class="rel">26-09-2011: <a href="http://codemirror.net/codemirror-2.15.zip">Version 2.15</a>:</p>
393-
<p class="rel-note">Fix bug that snuck into 2.14: Clicking the
394-
character that currently has the cursor didn't re-focus the
395-
editor.</p>
396-
397-
<p class="rel">26-09-2011: <a href="http://codemirror.net/codemirror-2.14.zip">Version 2.14</a>:</p>
398-
<ul class="rel-note">
399-
<li>Add <a href="mode/clojure/index.html">Clojure</a>, <a href="mode/pascal/index.html">Pascal</a>, <a href="mode/ntriples/index.html">NTriples</a>, <a href="mode/jinja2/index.html">Jinja2</a>, and <a href="mode/markdown/index.html">Markdown</a> modes.</li>
400-
<li>Add <a href="theme/cobalt.css">Cobalt</a> and <a href="theme/eclipse.css">Eclipse</a> themes.</li>
401-
<li>Add a <a href="doc/manual.html#option_fixedGutter"><code>fixedGutter</code></a> option.</li>
402-
<li>Fix bug with <code>setValue</code> breaking cursor movement.</li>
403-
<li>Make gutter updates much more efficient.</li>
404-
<li>Allow dragging of text out of the editor (on modern browsers).</li>
405-
</ul>
406-
407404
<p><a href="doc/oldrelease.html">Older releases...</a></p>
408405

409406
</div></div>

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

0 commit comments

Comments
 (0)