ChangeLog.txt 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. 2015.07.11 Version 1.2.0
  2. * New Features
  3. - Indented soft wrap (danyaPostfactum)
  4. - Rounded borders on selections
  5. * API Changes
  6. - unified delta types `{start, end, action, lines}` (Alden Daniels https://github.com/ajaxorg/ace/pull/1745)
  7. - "change" event listeners on session and editor get delta objects directly
  8. * new language modes
  9. - SQLServer (Morgan Yarbrough)
  10. 2015.04.03 Version 1.1.9
  11. - Small Enhancements and Bugfixes
  12. 2014.11.08 Version 1.1.8
  13. * API Changes
  14. - `editor.commands.commandKeyBinding` now contains direct map from keys to commands instead of grouping them by hashid
  15. * New Features
  16. - Improved autoindent for html and php modes (Adam Jimenez)
  17. - Find All from searchbox (Colton Voege)
  18. * new language modes
  19. - Elixir, Elm
  20. 2014.09.21 Version 1.1.7
  21. * Bugfixes
  22. - fix several bugs in autocompletion
  23. - workaround for inaccurate getBoundingClientRect on chrome 37
  24. 2014.08.17 Version 1.1.6
  25. * Bugfixes
  26. - fix regression in double tap to highlight
  27. - Improved Latex Mode (Daniel Felder)
  28. * API Changes
  29. - editor.destroy destroys editor.session too (call editor.setSession(null) to prevent that)
  30. * new language modes
  31. - Praat (José Joaquín Atria)
  32. - Eiffel (Victorien Elvinger)
  33. - G-code (Adam Joseph Cook)
  34. 2014.07.09 Version 1.1.5
  35. * Bugfixes
  36. - fix regression in autocomplete popup
  37. * new language modes
  38. - gitignore (Devon Carew)
  39. 2014.07.01 Version 1.1.4
  40. * New Features
  41. - Highlight matching tags (Adam Jimenez)
  42. - Improved jump to matching command (Adam Jimenez)
  43. * new language modes
  44. - AppleScript (Yaogang Lian)
  45. - Vala
  46. 2014.03.08 Version 1.1.3
  47. * New Features
  48. - Allow syntax checkers to be loaded from CDN (Derk-Jan Hartman)
  49. - Add ColdFusion behavior (Abram Adams)
  50. - add showLineNumbers option
  51. - Add html syntax checker (danyaPostfactum)
  52. * new language modes
  53. - Gherkin (Patrick Nevels)
  54. - Smarty
  55. 2013.12.02 Version 1.1.2
  56. * New Features
  57. - Accessibility Theme for Ace (Peter Xiao)
  58. - use snipetManager for expanding emmet snippets
  59. - update jshint to 2.1.4
  60. - improve php syntax checker (jdalegonzalez)
  61. - add option for autoresizing
  62. - add option for autohiding vertical scrollbar
  63. - improvements to highlighting of xml like languages (danyaPostfactum)
  64. - add support for autocompletion and snippets (gjtorikyan danyaPostfactum and others)
  65. - add option to merge similar changes in undo history
  66. - add scrollPastEnd option
  67. - use html5 dragndrop for text dragging (danyaPostfactum)
  68. * API Changes
  69. - fixed typo in HashHandler commmandManager
  70. * new language modes
  71. - Nix (Zef Hemel)
  72. - Protobuf (Zef Hemel)
  73. - Soy
  74. - Handlebars
  75. 2013.06.04 Version 1.1.1
  76. - Improved emacs keybindings (Robert Krahn)
  77. - Added markClean, isClean methods to UndoManager (Joonsoo Jeon)
  78. - Do not allow `Toggle comments` command to remove spaces from indentation
  79. - Softer colors for indent guides in dark themes
  80. * new language modes
  81. - Ada
  82. - Assembly_x86
  83. - Cobol
  84. - D
  85. - ejs
  86. - MATLAB
  87. - MySQL
  88. - Twig
  89. - Verilog
  90. 2013.05.01, Version 1.1.0
  91. * API Changes
  92. - Default position of the editor container is changed to relative. Add `.ace_editor {position: absolute}` css rule to restore old behavior
  93. - Changed default line-height to `normal` to not conflict with bootstrap. Use `line-height: inherit` for old behavior.
  94. - Changed marker types accepted by session.addMarker. It now accepts "text"|"line"|"fullLine"|"screenLine"
  95. - Internal classnames used by editor were made more consistent
  96. - Introduced `editor.setOption/getOption/setOptions/getOptions` methods
  97. - Introduced positionToIndex, indexToPosition methods
  98. * New Features
  99. - Improved emacs mode (chetstone)
  100. with Incremental search and Occur modes (Robert Krahn)
  101. - Improved ime handling
  102. - Searchbox (Vlad Zinculescu)
  103. - Added elastic tabstops lite extension (Garen Torikian)
  104. - Added extension for whitespace manipulation
  105. - Added extension for enabling spellchecking from contextmenu
  106. - Added extension for displaying available keyboard shortcuts (Matthew Christopher Kastor-Inare III)
  107. - Added extension for displaying options panel (Matthew Christopher Kastor-Inare III)
  108. - Added modelist extension (Matthew Christopher Kastor-Inare III)
  109. - Improved toggleCommentLines and added ToggleCommentBlock command
  110. - `:;` pairing in CSS mode (danyaPostfactum)
  111. - Added suppoert for Delete and SelectAll from context menu (danyaPostfactum)
  112. - Make wrapping behavior optional
  113. - Selective bracket insertion/skipping
  114. - Added commands for increase/decrease numbers, sort lines (Vlad Zinculescu)
  115. - Folding for Markdown, Lua, LaTeX
  116. - Selective bracket insertion/skipping for C-like languages
  117. * Many new languages
  118. - Scheme (Mu Lei)
  119. - Dot (edwardsp)
  120. - FreeMarker (nguillaumin)
  121. - Tiny Mushcode (h3rb)
  122. - Velocity (Ryan Griffith)
  123. - TOML (Garen Torikian)
  124. - LSL (Nemurimasu Neiro, Builders Brewery)
  125. - Curly (Libo Cannici)
  126. - vbScript (Jan Jongboom)
  127. - R (RStudio)
  128. - ABAP
  129. - Lucene (Graham Scott)
  130. - Haml (Garen Torikian)
  131. - Objective-C (Garen Torikian)
  132. - Makefile (Garen Torikian)
  133. - TypeScript (Garen Torikian)
  134. - Lisp (Garen Torikian)
  135. - Stylus (Garen Torikian)
  136. - Dart (Garen Torikian)
  137. * Live syntax checks
  138. - PHP (danyaPostfactum)
  139. - Lua
  140. * New Themes
  141. - Chaos
  142. - Terminal
  143. 2012.09.17, Version 1.0.0
  144. * New Features
  145. - Multiple cursors and selections (https://c9.io/site/blog/2012/08/be-an-armenian-warrior-with-block-selection-on-steroids/)
  146. - Fold buttons displayed in the gutter
  147. - Indent Guides
  148. - Completely reworked vim mode (Sergi Mansilla)
  149. - Improved emacs keybindings
  150. - Autoclosing of html tags (danyaPostfactum)
  151. * 20 New language modes
  152. - Coldfusion (Russ)
  153. - Diff
  154. - GLSL (Ed Mackey)
  155. - Go (Davide Saurino)
  156. - Haxe (Jason O'Neil)
  157. - Jade (Garen Torikian)
  158. - jsx (Syu Kato)
  159. - LaTeX (James Allen)
  160. - Less (John Roepke)
  161. - Liquid (Bernie Telles)
  162. - Lua (Lee Gao)
  163. - LuaPage (Choonster)
  164. - Markdown (Chris Spencer)
  165. - PostgreSQL (John DeSoi)
  166. - Powershell (John Kane)
  167. - Sh (Richo Healey)
  168. - SQL (Jonathan Camile)
  169. - Tcl (Cristoph Hochreiner)
  170. - XQuery (William Candillion)
  171. - Yaml (Meg Sharkey)
  172. * Live syntax checks
  173. - for XQuery and JSON
  174. * New Themes
  175. - Ambiance (Irakli Gozalishvili)
  176. - Dreamweaver (Adam Jimenez)
  177. - Github (bootstraponline)
  178. - Tommorrow themes (https://github.com/chriskempson/tomorrow-theme)
  179. - XCode
  180. * Many Small Enhancements and Bugfixes
  181. 2011.08.02, Version 0.2.0
  182. * Split view (Julian Viereck)
  183. - split editor area horizontally or vertivally to show two files at the same
  184. time
  185. * Code Folding (Julian Viereck)
  186. - Unstructured code folding
  187. - Will be the basis for language aware folding
  188. * Mode behaviours (Chris Spencer)
  189. - Adds mode specific hooks which allow transformations of entered text
  190. - Autoclosing of braces, paranthesis and quotation marks in C style modes
  191. - Autoclosing of angular brackets in XML style modes
  192. * New language modes
  193. - Clojure (Carin Meier)
  194. - C# (Rob Conery)
  195. - Groovy (Ben Tilford)
  196. - Scala (Ben Tilford)
  197. - JSON
  198. - OCaml (Sergi Mansilla)
  199. - Perl (Panagiotis Astithas)
  200. - SCSS/SASS (Andreas Madsen)
  201. - SVG
  202. - Textile (Kelley van Evert)
  203. - SCAD (Jacob Hansson)
  204. * Live syntax checks
  205. - Lint for CSS using CSS Lint <http://csslint.net/>
  206. - CoffeeScript
  207. * New Themes
  208. - Crimson Editor (iebuggy)
  209. - Merbivore (Michael Schwartz)
  210. - Merbivore soft (Michael Schwartz)
  211. - Solarized dark/light <http://ethanschoonover.com/solarized> (David Alan Hjelle)
  212. - Vibrant Ink (Michael Schwartz)
  213. * Small Features/Enhancements
  214. - Lots of render performance optimizations (Harutyun Amirjanyan)
  215. - Improved Ruby highlighting (Chris Wanstrath, Trent Ogren)
  216. - Improved PHP highlighting (Thomas Hruska)
  217. - Improved CSS highlighting (Sean Kellogg)
  218. - Clicks which cause the editor to be focused don't reset the selection
  219. - Make padding text layer specific so that print margin and active line
  220. highlight are not affected (Irakli Gozalishvili)
  221. - Added setFontSize method
  222. - Improved vi keybindings (Trent Ogren)
  223. - When unfocused make cursor transparent instead of removing it (Harutyun Amirjanyan)
  224. - Support for matching groups in tokenizer with arrays of tokens (Chris Spencer)
  225. * Bug fixes
  226. - Add support for the new OSX scroll bars
  227. - Properly highlight JavaScript regexp literals
  228. - Proper handling of unicode characters in JavaScript identifiers
  229. - Fix remove lines command on last line (Harutyun Amirjanyan)
  230. - Fix scroll wheel sluggishness in Safari
  231. - Make keyboard infrastructure route keys like []^$ the right way (Julian Viereck)
  232. 2011.02.14, Version 0.1.6
  233. * Floating Anchors
  234. - An Anchor is a floating pointer in the document.
  235. - Whenever text is inserted or deleted before the cursor, the position of
  236. the cursor is updated
  237. - Usesd for the cursor and selection
  238. - Basis for bookmarks, multiple cursors and snippets in the future
  239. * Extensive support for Cocoa style keybindings on the Mac <https://github.com/ajaxorg/ace/issues/closed#issue/116/comment/767803>
  240. * New commands:
  241. - center selection in viewport
  242. - remove to end/start of line
  243. - split line
  244. - transpose letters
  245. * Refator markers
  246. - Custom code can be used to render markers
  247. - Markers can be in front or behind the text
  248. - Markers are now stored in the session (was in the renderer)
  249. * Lots of IE8 fixes including copy, cut and selections
  250. * Unit tests can also be run in the browser
  251. <https://github.com/ajaxorg/ace/blob/master/lib/ace/test/tests.html>
  252. * Soft wrap can adapt to the width of the editor (Mike Ratcliffe, Joe Cheng)
  253. * Add minimal node server server.js to run the Ace demo in Chrome
  254. * The top level editor.html demo has been renamed to index.html
  255. * Bug fixes
  256. - Fixed gotoLine to consider wrapped lines when calculating where to scroll to (James Allen)
  257. - Fixed isues when the editor was scrolled in the web page (Eric Allam)
  258. - Highlighting of Python string literals
  259. - Syntax rule for PHP comments
  260. 2011.02.08, Version 0.1.5
  261. * Add Coffeescript Mode (Satoshi Murakami)
  262. * Fix word wrap bug (Julian Viereck)
  263. * Fix packaged version of the Eclipse mode
  264. * Loading of workers is more robust
  265. * Fix "click selection"
  266. * Allow tokizing empty lines (Daniel Krech)
  267. * Make PageUp/Down behavior more consistent with native OS (Joe Cheng)
  268. 2011.02.04, Version 0.1.4
  269. * Add C/C++ mode contributed by Gastón Kleiman
  270. * Fix exception in key input
  271. 2011.02.04, Version 0.1.3
  272. * Let the packaged version play nice with requireJS
  273. * Add Ruby mode contributed by Shlomo Zalman Heigh
  274. * Add Java mode contributed by Tom Tasche
  275. * Fix annotation bug
  276. * Changing a document added a new empty line at the end