Skip to content

Commit 6ebacf9

Browse files
committed
v1.2.0
1 parent 2321094 commit 6ebacf9

File tree

7 files changed

+14
-6
lines changed

7 files changed

+14
-6
lines changed

ChangeLog.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
Version 1.2.0-pre
1+
2015.07.11 Version 1.2.0
22

33
* New Features
44
- Indented soft wrap (danyaPostfactum)
5+
- Rounded borders on selections
56

67
* API Changes
78
- unified delta types `{start, end, action, lines}` (Alden Daniels https://github.com/ajaxorg/ace/pull/1745)
89
- "change" event listeners on session and editor get delta objects directly
910

11+
* new language modes
12+
- SQLServer (Morgan Yarbrough)
13+
1014
2015.04.03 Version 1.1.9
1115

1216
- Small Enhancements and Bugfixes

build

Submodule build updated 622 files

lib/ace/ext/menu_tools/generate_settings_menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ module.exports.generateSettingsMenu = function generateSettingsMenu (editor) {
9393
});
9494

9595
var el = topmenu.appendChild(document.createElement('div'));
96-
var version = "1.1.9";
96+
var version = "1.2.0";
9797
el.style.padding = "1em";
9898
el.textContent = "Ace version " + version;
9999

lib/ace/keyboard/vim.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ define(function(require, exports, module) {
136136
CodeMirror.on = event.addListener;
137137
CodeMirror.off = event.removeListener;
138138
CodeMirror.isWordChar = function(ch) {
139+
if (ch < "\x7f") return /^\w$/.test(ch);
139140
TextModeTokenRe.lastIndex = 0;
140141
return TextModeTokenRe.test(ch);
141142
};
@@ -3209,7 +3210,7 @@ dom.importCssString(".normal-mode .ace_cursor{\
32093210
}
32103211
var linewise = register.linewise;
32113212
var blockwise = register.blockwise;
3212-
if (linewise) {
3213+
if (linewise && !blockwise) {
32133214
if(vim.visualMode) {
32143215
text = vim.visualLine ? text.slice(0, -1) : '\n' + text.slice(0, text.length - 1) + '\n';
32153216
} else if (actionArgs.after) {

lib/ace/mode/sql_highlight_rules.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ var SqlHighlightRules = function() {
4747
);
4848

4949
var builtinFunctions = (
50-
"count|min|max|avg|sum|rank|now|coalesce"
50+
"avg|count|first|last|max|min|sum|ucase|lcase|mid|len|round|rank|now|format|" +
51+
"coalesce|ifnull|isnull|nv|"
5152
);
5253

5354
var dataTypes = (

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ace",
33
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
4-
"version": "1.1.9",
4+
"version": "1.2.0",
55
"homepage": "http://github.com/ajaxorg/ace",
66
"engines": {"node": ">= 0.6.0"},
77
"author": "Fabian Jakobs <[email protected]>",

tool/release.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
pause() {
24
while true; do
35
read -p "$1 " yn

0 commit comments

Comments
 (0)