File tree Expand file tree Collapse file tree 4 files changed +47
-23
lines changed
Expand file tree Collapse file tree 4 files changed +47
-23
lines changed Original file line number Diff line number Diff line change 1+ 2013.06.04 Version 1.1.01
2+
3+ - Improved emacs keybindings (Robert Krahn)
4+ - Added markClean, isClean methods to UndoManager (Joonsoo Jeon)
5+ - Do not allow `Toggle comments` command to remove spaces from indentation
6+ - Softer colors for indent guides in dark themes
7+
8+ * new language modes
9+ - Ada
10+ - Assembly_x86
11+ - Cobol
12+ - D
13+ - ejs
14+ - MATLAB
15+ - MySQL
16+ - Twig
17+ - Verilog
18+
1192013.05.01, Version 1.1.0
220
321* API Changes
3553 - Selective bracket insertion/skipping for C-like languages
3654
3755* Many new languages
38- Scheme,
39- Dot,
40- FreeMarker,
41- Tiny Mushcode,
42- Velocity,
43- TOML,
44- LSL,
45- Curly,
46- vbScript,
47- R,
48- ABAP,
49- Lucene,
50- Haml,
51- Objective-C,
52- Makefile,
53- TypeScript,
54- Lisp,
55- Stylus,
56- Dart
56+ - Scheme (Mu Lei)
57+ - Dot (edwardsp)
58+ - FreeMarker (nguillaumin)
59+ - Tiny Mushcode (h3rb)
60+ - Velocity (Ryan Griffith)
61+ - TOML (Garen Torikian)
62+ - LSL (Nemurimasu Neiro, Builders Brewery)
63+ - Curly (Libo Cannici)
64+ - vbScript (Jan Jongboom)
65+ - R (RStudio)
66+ - ABAP
67+ - Lucene (Graham Scott)
68+ - Haml (Garen Torikian)
69+ - Objective-C (Garen Torikian)
70+ - Makefile (Garen Torikian)
71+ - TypeScript (Garen Torikian)
72+ - Lisp (Garen Torikian)
73+ - Stylus (Garen Torikian)
74+ - Dart (Garen Torikian)
5775
5876* Live syntax checks
5977 - PHP (danyaPostfactum)
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ var lookup = function(parentId, moduleName) {
152152 _define . modules [ moduleName ] = exports ;
153153 delete _define . payloads [ moduleName ] ;
154154 }
155- module = _define . modules [ moduleName ] = exports ;
155+ module = _define . modules [ moduleName ] = exports || module ;
156156 }
157157 return module ;
158158} ;
Original file line number Diff line number Diff line change @@ -138,7 +138,8 @@ <h2>Related Projects</h2>
138138 </ div >
139139 < div class ="tab-pane fade active in " id ="embedding ">
140140 < h1 > Embedding Ace in Your Site</ h1 >
141- < p > Ace can be easily embedded into a web page. Just copy the code below:</ p >
141+ < p > Ace can be easily embedded into a web page. Get prebuilt version of ace from
142+ < a href ="https://github.com/ajaxorg/ace-builds/ "> ace-builds</ a > repository and use the code below:</ p >
142143 < div id ="embedded_ace_code " style ="opacity:0 "> <!DOCTYPE html>
143144<html lang="en">
144145<head>
@@ -160,7 +161,7 @@ <h1>Embedding Ace in Your Site</h1>
160161 return x;
161162}</div>
162163
163- <script src="http://rawgithub.com/ajaxorg/ ace-builds/master /src-noconflict/ace.js" type="text/javascript" charset="utf-8"> </script>
164+ <script src="/ ace-builds/src-noconflict/ace.js" type="text/javascript" charset="utf-8"> </script>
164165<script>
165166 var editor = ace.edit("editor");
166167 editor.setTheme("ace/theme/monokai");
@@ -1029,6 +1030,11 @@ <h1>Projects Using Ace</h1>
10291030 style ="position: relative; width: 96px; left: 2px; top: -21px; ">
10301031 < a href ="http://iknode.com/ "> iKnode</ a >
10311032 </ li >
1033+ < li title ="Online conference and code review tool ">
1034+ < div style ="position: relative; width: 90px; left: 5px; top: 0px;background:rgb(24,73,92);color: white;
1035+ font-size: 68px;text-align: center;font-weight: bold;font-family: inherit;line-height: normal; "> sT</ div >
1036+ < a href ="http://sourcetalk.net/ "> SourceTalk</ a >
1037+ </ li >
10321038 < li >
10331039 < a href ="https://github.com/Gozala/sky-edit "> Sky Edit</ a >
10341040 </ li >
You can’t perform that action at this time.
0 commit comments