Skip to content

Commit

Permalink
release v1.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nlujjawal committed Feb 12, 2025
1 parent 0db7585 commit 09bbe54
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

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.38.0](https://github.com/ajaxorg/ace/compare/v1.37.5...v1.38.0) (2025-02-12)


### Features

* **popup:** add supporting skipFilter flag for popup item ([#5740](https://github.com/ajaxorg/ace/issues/5740)) ([0db7585](https://github.com/ajaxorg/ace/commit/0db7585ae0ccbd353091426f60ac3d9e53e182c4))


### Bug Fixes

* **AcePopup:** fix aria-posinset issue on google chrome ([#5719](https://github.com/ajaxorg/ace/issues/5719)) ([09a0c5a](https://github.com/ajaxorg/ace/commit/09a0c5a11106754916a4fc324a35e8daf84055ba))
* calling setMode just before destroy causes error reading getLength ([#5727](https://github.com/ajaxorg/ace/issues/5727)) ([62b973e](https://github.com/ajaxorg/ace/commit/62b973ef2247debdd51cf6a41a3b24b97277efdb))
* highlight indent guides with wrapped lines ([#5621](https://github.com/ajaxorg/ace/issues/5621)) ([77b9fe1](https://github.com/ajaxorg/ace/commit/77b9fe1bc0b10b4c3fb2780d65f9d256d60634ce))
* improve aria attributes of popup elements ([#5739](https://github.com/ajaxorg/ace/issues/5739)) ([09fba2e](https://github.com/ajaxorg/ace/commit/09fba2e7347cd499c979e53ec7a8d8ee1fd48918))
* types for setTimeout/setInterval calls ([#5726](https://github.com/ajaxorg/ace/issues/5726)) ([9a76656](https://github.com/ajaxorg/ace/commit/9a76656acc9528a4a2e92a3b72c4d6598d3a0a8c))
* **VirtualRenderer:** fix scrollbar overlap on autocompletion ([#5713](https://github.com/ajaxorg/ace/issues/5713)) ([5acea6d](https://github.com/ajaxorg/ace/commit/5acea6d9200f4ca0c8495350cda6e41e8351913f))
* wrong type of paste event and missing types for themelist extension ([#5725](https://github.com/ajaxorg/ace/issues/5725)) ([a4b9d2d](https://github.com/ajaxorg/ace/commit/a4b9d2d91a2be841320030d93afde46ae723c8c3))

### [1.37.5](https://github.com/ajaxorg/ace/compare/v1.37.4...v1.37.5) (2025-01-16)


Expand Down
2 changes: 1 addition & 1 deletion ace.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -982,6 +982,6 @@ declare module "ace-code" {
import { Range } from "ace-code/src/range";
import { UndoManager } from "ace-code/src/undomanager";
import { VirtualRenderer as Renderer } from "ace-code/src/virtual_renderer";
export var version: "1.37.5";
export var version: "1.38.0";
export { Range, Editor, EditSession, UndoManager, Renderer as VirtualRenderer };
}
2 changes: 1 addition & 1 deletion build
Submodule build updated 52 files
+18 −0 CHANGELOG.md
+6 −2 ace.d.ts
+25 −9 demo/kitchen-sink/demo.js
+170 −170 demo/kitchen-sink/docs/abc.abc
+68 −68 demo/kitchen-sink/docs/diff.diff
+41 −41 demo/kitchen-sink/docs/raku.raku
+62 −62 demo/kitchen-sink/docs/red.red
+22 −22 demo/kitchen-sink/docs/vbscript.vbs
+1 −1 package.json
+1 −1 src-min-noconflict/ace.js
+1 −1 src-min-noconflict/ext-inline_autocomplete.js
+1 −1 src-min-noconflict/ext-language_tools.js
+1 −1 src-min-noconflict/ext-modelist.js
+1 −1 src-min-noconflict/ext-options.js
+1 −1 src-min-noconflict/ext-prompt.js
+1 −1 src-min-noconflict/ext-settings_menu.js
+1 −1 src-min-noconflict/ext-simple_tokenizer.js
+1 −1 src-min-noconflict/worker-javascript.js
+1 −1 src-min-noconflict/worker-yaml.js
+1 −1 src-min/ace.js
+1 −1 src-min/ext-inline_autocomplete.js
+1 −1 src-min/ext-language_tools.js
+1 −1 src-min/ext-modelist.js
+1 −1 src-min/ext-options.js
+1 −1 src-min/ext-prompt.js
+1 −1 src-min/ext-settings_menu.js
+1 −1 src-min/ext-simple_tokenizer.js
+1 −1 src-min/worker-javascript.js
+1 −1 src-min/worker-yaml.js
+27 −23 src-noconflict/ace.js
+24 −8 src-noconflict/ext-inline_autocomplete.js
+24 −8 src-noconflict/ext-language_tools.js
+1 −1 src-noconflict/ext-modelist.js
+1 −1 src-noconflict/ext-options.js
+25 −9 src-noconflict/ext-prompt.js
+1 −1 src-noconflict/ext-settings_menu.js
+1 −3 src-noconflict/ext-simple_tokenizer.js
+1 −52 src-noconflict/worker-javascript.js
+1 −23 src-noconflict/worker-yaml.js
+27 −23 src/ace.js
+24 −8 src/ext-inline_autocomplete.js
+24 −8 src/ext-language_tools.js
+1 −1 src/ext-modelist.js
+1 −1 src/ext-options.js
+25 −9 src/ext-prompt.js
+1 −1 src/ext-settings_menu.js
+1 −3 src/ext-simple_tokenizer.js
+1 −52 src/worker-javascript.js
+1 −23 src/worker-yaml.js
+19 −4 types/ace-ext.d.ts
+3 −3 types/ace-lib.d.ts
+9 −5 types/ace-modules.d.ts
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ace-code",
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
"version": "1.37.5",
"version": "1.38.0",
"homepage": "https://github.com/ajaxorg/ace",
"engines": {
"node": ">= 0.6.0"
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,6 @@ var reportErrorIfPathIsNotConfigured = function() {
}
};

exports.version = "1.37.5";
exports.version = "1.38.0";


2 changes: 1 addition & 1 deletion types/ace-modules.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ declare module "ace-code/src/config" {
string
], onLoad: (module: any) => void) => void;
setModuleLoader: (moduleName: any, onLoad: any) => void;
version: "1.37.5";
version: "1.38.0";
};
export = _exports;
}
Expand Down

0 comments on commit 09bbe54

Please sign in to comment.