Skip to content

Commit

Permalink
package 23.09.22
Browse files Browse the repository at this point in the history
  • Loading branch information
anester-aws committed Sep 23, 2022
1 parent 6820a88 commit a1f6ab9
Show file tree
Hide file tree
Showing 59 changed files with 609 additions and 220 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.11.1](https://github.com/ajaxorg/ace/compare/v1.11.0...v1.11.1) (2022-09-23)


### Bug Fixes

* Discrepancy between keywords used by mode-aql.js in the current version and the version used by arangodb ([1503dd0](https://github.com/ajaxorg/ace/commit/1503dd06f2d651d16af964978fb8c62e0304b6d6))
* The editor can be crashed by passing in undefined into the setValue method ([56e6e56](https://github.com/ajaxorg/ace/commit/56e6e56137ea5717009e3687019f64dae7f88da2))
* Update vim mode ([#4933](https://github.com/ajaxorg/ace/issues/4933)) ([3b89ed0](https://github.com/ajaxorg/ace/commit/3b89ed06069cb45edb59b7442b5cc6c15b33cfa4))

## [1.11.0](https://github.com/ajaxorg/ace/compare/v1.10.1...v1.11.0) (2022-09-20)


Expand Down
2 changes: 1 addition & 1 deletion kitchen-sink.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="author" content="Fabian Jakobs">
<!--
Ace
version 1.11.0
version 1.11.1
commit
-->

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ace-builds",
"main": "./src-noconflict/ace.js",
"typings": "ace.d.ts",
"version": "1.11.0",
"version": "1.11.1",
"description": "Ace (Ajax.org Cloud9 Editor)",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion src-min-noconflict/ace.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/keybinding-vim.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/mode-aql.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-min-noconflict/worker-base.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/worker-coffee.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/worker-css.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/worker-html.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/worker-javascript.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/worker-json.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/worker-lua.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/worker-php.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/worker-xml.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/worker-xquery.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/worker-yaml.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/ace.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/keybinding-vim.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/mode-aql.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-min/worker-base.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/worker-coffee.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/worker-css.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/worker-html.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/worker-javascript.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/worker-json.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/worker-lua.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/worker-php.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/worker-xml.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/worker-xquery.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/worker-yaml.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src-noconflict/ace.js
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ var reportErrorIfPathIsNotConfigured = function () {
reportErrorIfPathIsNotConfigured = function () { };
}
};
exports.version = "1.11.0";
exports.version = "1.11.1";

});

Expand Down Expand Up @@ -6632,7 +6632,7 @@ var Document = function (textOrLines) {
this.setValue = function (text) {
var len = this.getLength() - 1;
this.remove(new Range(0, 0, len, this.getLine(len).length));
this.insert({ row: 0, column: 0 }, text);
this.insert({ row: 0, column: 0 }, text || "");
};
this.getValue = function () {
return this.getAllLines().join(this.getNewLineCharacter());
Expand Down
Loading

0 comments on commit a1f6ab9

Please sign in to comment.