Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CodeMirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Moritz Aurel Pascal Schubotz
CodeMirror
Commits
5920e297
Commit
5920e297
authored
12 years ago
by
Marijn Haverbeke
Browse files
Options
Downloads
Patches
Plain Diff
Mark release 2.3
parent
35a70966
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
doc/compress.html
+1
-0
1 addition, 0 deletions
doc/compress.html
doc/oldrelease.html
+16
-0
16 additions, 0 deletions
doc/oldrelease.html
index.html
+12
-15
12 additions, 15 deletions
index.html
package.json
+1
-1
1 addition, 1 deletion
package.json
with
30 additions
and
16 deletions
doc/compress.html
+
1
−
0
View file @
5920e297
...
...
@@ -27,6 +27,7 @@
<input
type=
"hidden"
id=
"download"
name=
"download"
value=
"codemirror-compressed.js"
/>
<p>
Version:
<select
id=
"version"
onchange=
"setVersion(this);"
style=
"padding: 1px"
>
<option
value=
"http://codemirror.net/"
>
HEAD
</option>
<option
value=
"http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.3;f="
>
2.3
</option>
<option
value=
"http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.25;f="
>
2.25
</option>
<option
value=
"http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.24;f="
>
2.24
</option>
<option
value=
"http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.23;f="
>
2.23
</option>
...
...
This diff is collapsed.
Click to expand it.
doc/oldrelease.html
+
16
−
0
View file @
5920e297
...
...
@@ -16,6 +16,22 @@
</pre>
<p
class=
"rel"
>
26-09-2011:
<a
href=
"http://codemirror.net/codemirror-2.15.zip"
>
Version 2.15
</a>
:
</p>
<p
class=
"rel-note"
>
Fix bug that snuck into 2.14: Clicking the
character that currently has the cursor didn't re-focus the
editor.
</p>
<p
class=
"rel"
>
26-09-2011:
<a
href=
"http://codemirror.net/codemirror-2.14.zip"
>
Version 2.14
</a>
:
</p>
<ul
class=
"rel-note"
>
<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>
<li>
Add
<a
href=
"../theme/cobalt.css"
>
Cobalt
</a>
and
<a
href=
"../theme/eclipse.css"
>
Eclipse
</a>
themes.
</li>
<li>
Add a
<a
href=
"manual.html#option_fixedGutter"
><code>
fixedGutter
</code></a>
option.
</li>
<li>
Fix bug with
<code>
setValue
</code>
breaking cursor movement.
</li>
<li>
Make gutter updates much more efficient.
</li>
<li>
Allow dragging of text out of the editor (on modern browsers).
</li>
</ul>
<p
class=
"rel"
>
23-08-2011:
<a
href=
"http://codemirror.net/codemirror-2.13.zip"
>
Version 2.13
</a>
:
</p>
<ul
class=
"rel-note"
>
<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>
...
...
This diff is collapsed.
Click to expand it.
index.html
+
12
−
15
View file @
5920e297
...
...
@@ -250,6 +250,18 @@
<h2>
Releases
</h2>
<p
class=
"rel"
>
22-06-2012:
<a
href=
"http://codemirror.net/codemirror-2.3.zip"
>
Version 2.3
</a>
:
</p>
<ul
class=
"rel-note"
>
<li><strong>
New scrollbar implementation
</strong>
. Should flicker less. Changes DOM structure of the editor.
</li>
<li>
New theme:
<a
href=
"demo/theme.html?vibrant-ink"
>
vibrant-ink
</a>
.
</li>
<li>
Many extensions to the VIM keymap (including text objects).
</li>
<li>
Add
<a
href=
"demo/multiplex.html"
>
mode-multiplexing
</a>
utility script.
</li>
<li>
Fix bug where right-click paste works in read-only mode.
</li>
<li>
Add a
<a
href=
"doc/manual.html#getScrollInfo"
><code>
getScrollInfo
</code></a>
method.
</li>
<li>
Lots of other
<a
href=
"https://github.com/marijnh/CodeMirror2/compare/v2.25...v2.3"
>
fixes
</a>
.
</li>
</ul>
<p
class=
"rel"
>
23-05-2012:
<a
href=
"http://codemirror.net/codemirror-2.25.zip"
>
Version 2.25
</a>
:
</p>
<ul
class=
"rel-note"
>
...
...
@@ -389,21 +401,6 @@
<li>
Fix editing code with tabs in Internet Explorer.
</li>
</ul>
<p
class=
"rel"
>
26-09-2011:
<a
href=
"http://codemirror.net/codemirror-2.15.zip"
>
Version 2.15
</a>
:
</p>
<p
class=
"rel-note"
>
Fix bug that snuck into 2.14: Clicking the
character that currently has the cursor didn't re-focus the
editor.
</p>
<p
class=
"rel"
>
26-09-2011:
<a
href=
"http://codemirror.net/codemirror-2.14.zip"
>
Version 2.14
</a>
:
</p>
<ul
class=
"rel-note"
>
<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>
<li>
Add
<a
href=
"theme/cobalt.css"
>
Cobalt
</a>
and
<a
href=
"theme/eclipse.css"
>
Eclipse
</a>
themes.
</li>
<li>
Add a
<a
href=
"doc/manual.html#option_fixedGutter"
><code>
fixedGutter
</code></a>
option.
</li>
<li>
Fix bug with
<code>
setValue
</code>
breaking cursor movement.
</li>
<li>
Make gutter updates much more efficient.
</li>
<li>
Allow dragging of text out of the editor (on modern browsers).
</li>
</ul>
<p><a
href=
"doc/oldrelease.html"
>
Older releases...
</a></p>
</div></div>
...
...
This diff is collapsed.
Click to expand it.
package.json
+
1
−
1
View file @
5920e297
{
"name"
:
"CodeMirror"
,
"version"
:
"2.
25
.0"
,
"version"
:
"2.
30
.0"
,
"main"
:
"codemirror.js"
,
"description"
:
"In-browser code editing made bearable"
,
"licenses"
:
[
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment