Skip to content

Commit 32abd31

Browse files
committed
Mark release 3.01
1 parent 4797771 commit 32abd31

File tree

7 files changed

+52
-24
lines changed

7 files changed

+52
-24
lines changed

doc/compress.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,9 @@ <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.01;f=">3.01</option>
3334
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.0;f=">3.0</option>
34-
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.0rc2;f=">3.0rc2</option>
35-
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.0rc1;f=">3.0rc1</option>
36-
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.0beta2;f=">3.0beta2</option>
37-
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.0beta1;f=">3.0beta1</option>
35+
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v2.38;f=">2.38</option>
3836
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v2.37;f=">2.37</option>
3937
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v2.36;f=">2.36</option>
4038
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v2.35;f=">2.35</option>

doc/oldrelease.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,24 @@ <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMi
1919
</pre>
2020
</div>
2121

22+
<p class="rel">23-07-2012: <a href="http://codemirror.net/codemirror-2.32.zip">Version 2.32</a>:</p>
23+
24+
<p class="rel-note">Emergency fix for a bug where an editor with
25+
line wrapping on IE will break when there is <em>no</em>
26+
scrollbar.</p>
27+
28+
<p class="rel">20-07-2012: <a href="http://codemirror.net/codemirror-2.31.zip">Version 2.31</a>:</p>
29+
30+
<ul class="rel-note">
31+
<li>New modes: <a href="../mode/ocaml/index.html">OCaml</a>, <a href="../mode/haxe/index.html">Haxe</a>, and <a href="../mode/vb/index.html">VB.NET</a>.</li>
32+
<li>Several fixes to the new scrolling model.</li>
33+
<li>Add a <a href="manual.html#setSize"><code>setSize</code></a> method for programmatic resizing.</li>
34+
<li>Add <a href="manual.html#getHistory"><code>getHistory</code></a> and <a href="manual.html#setHistory"><code>setHistory</code></a> methods.</li>
35+
<li>Allow custom line separator string in <a href="manual.html#getValue"><code>getValue</code></a> and <a href="manual.html#getRange"><code>getRange</code></a>.</li>
36+
<li>Support double- and triple-click drag, double-clicking whitespace.</li>
37+
<li>And more... <a href="https://github.com/marijnh/CodeMirror/compare/v2.3...v2.31">(all patches)</a></li>
38+
</ul>
39+
2240
<p class="rel">22-06-2012: <a href="http://codemirror.net/codemirror-2.3.zip">Version 2.3</a>:</p>
2341

2442
<ul class="rel-note">

index.html

Lines changed: 26 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,32 @@ <h2>Reading material</h2>
283283

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

286+
<p class="rel">21-01-2013: <a href="http://codemirror.net/codemirror-3.01.zip">Version 3.01</a>:</p>
287+
288+
<ul class="rel-note">
289+
<li>Move all add-ons into an organized directory structure
290+
under <a href="addon/"><code>/addon</code></a>. <strong>You might have to adjust your
291+
paths.</strong></li>
292+
<li>New
293+
modes: <a href="mode/d/index.html">D</a>, <a href="mode/sass/index.html">Sass</a>, <a href="mode/apl/index.html">APL</a>, <a href="mode/sql/index.html">SQL</a>
294+
(configurable), and <a href="mode/asterisk/index.html">Asterisk</a>.</li>
295+
<li>Several bugfixes in right-to-left text support.</li>
296+
<li>Add <a href="doc/manual.html#option_rtlMoveVisually"><code>rtlMoveVisually</code></a> option.</li>
297+
<li>Improvements to vim keymap.</li>
298+
<li>Add built-in (lightweight) <a href="doc/manual.html#addOverlay">overlay mode</a> support.</li>
299+
<li>Support <code>showIfHidden</code> option for <a href="doc/manual.html#addLineWidget">line widgets</a>.</li>
300+
<li>Add simple <a href="doc/manual.html#addon_python-hint">Python hinter</a>.</li>
301+
<li>Bring back the <a href="doc/manual.html#option_fixedGutter"><code>fixedGutter</code></a> option.</li>
302+
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/v3.0...v3.01">list of patches</a>.</li>
303+
</ul>
304+
305+
<p class="rel">21-01-2013: <a href="http://codemirror.net/codemirror-2.38.zip">Version 2.38</a>:</p>
306+
307+
<p class="rel-note">Integrate some bugfixes, enhancements to the vim keymap, and new
308+
modes
309+
(<a href="mode/d/index.html">D</a>, <a href="mode/sass/index.html">Sass</a>, <a href="mode/apl/index.html">APL</a>)
310+
from the v3 branch.</p>
311+
286312
<p class="rel">20-12-2012: <a href="http://codemirror.net/codemirror-2.37.zip">Version 2.37</a>:</p>
287313

288314
<ul class="rel-note">
@@ -414,24 +440,6 @@ <h2 id=releases>Releases</h2>
414440
<li><a href="https://github.com/marijnh/CodeMirror/compare/v2.32...v2.33">Full list</a> of patches.</li>
415441
</ul>
416442

417-
<p class="rel">23-07-2012: <a href="http://codemirror.net/codemirror-2.32.zip">Version 2.32</a>:</p>
418-
419-
<p class="rel-note">Emergency fix for a bug where an editor with
420-
line wrapping on IE will break when there is <em>no</em>
421-
scrollbar.</p>
422-
423-
<p class="rel">20-07-2012: <a href="http://codemirror.net/codemirror-2.31.zip">Version 2.31</a>:</p>
424-
425-
<ul class="rel-note">
426-
<li>New modes: <a href="mode/ocaml/index.html">OCaml</a>, <a href="mode/haxe/index.html">Haxe</a>, and <a href="mode/vb/index.html">VB.NET</a>.</li>
427-
<li>Several fixes to the new scrolling model.</li>
428-
<li>Add a <a href="doc/manual.html#setSize"><code>setSize</code></a> method for programmatic resizing.</li>
429-
<li>Add <a href="doc/manual.html#getHistory"><code>getHistory</code></a> and <a href="doc/manual.html#setHistory"><code>setHistory</code></a> methods.</li>
430-
<li>Allow custom line separator string in <a href="doc/manual.html#getValue"><code>getValue</code></a> and <a href="doc/manual.html#getRange"><code>getRange</code></a>.</li>
431-
<li>Support double- and triple-click drag, double-clicking whitespace.</li>
432-
<li>And more... <a href="https://github.com/marijnh/CodeMirror/compare/v2.3...v2.31">(all patches)</a></li>
433-
</ul>
434-
435443
<p><a href="doc/oldrelease.html">Older releases...</a></p>
436444

437445
</div></div>

lib/codemirror.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4767,7 +4767,7 @@ window.CodeMirror = (function() {
47674767

47684768
// THE END
47694769

4770-
CodeMirror.version = "3.0 +";
4770+
CodeMirror.version = "3.01";
47714771

47724772
return CodeMirror;
47734773
})();

mode/mysql/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ <h1>CodeMirror: MySQL mode</h1>
3535
});
3636
</script>
3737

38+
<p><strong><span style="color: red">!!</span> This mode is deprecated in favor of the <a href="../sql/index.html">generic SQL mode</a> (which can be configured to handle MySQL).</strong></p>
39+
3840
<p><strong>MIME types defined:</strong> <code>text/x-mysql</code>.</p>
3941

4042
</body>

mode/plsql/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ <h1>CodeMirror: Oracle PL/SQL mode</h1>
5353
});
5454
</script>
5555

56+
<p><strong><span style="color: red">!!</span> This mode is deprecated in favor of the <a href="../sql/index.html">generic SQL mode</a> (which can be configured to handle PL/SQL).</strong></p>
57+
5658
<p>
5759
Simple mode that handles Oracle PL/SQL language (and Oracle SQL, of course).
5860
</p>

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

0 commit comments

Comments
 (0)