Skip to content

Commit

Permalink
release v1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnester committed May 31, 2022
1 parent 9e81bda commit 57ded09
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.5.3](https://github.com/ajaxorg/ace/compare/v1.5.2...v1.5.3) (2022-05-31)


### Bug Fixes

* Colors for variable, function and constant should be different ([#4802](https://github.com/ajaxorg/ace/issues/4802)) ([9e81bda](https://github.com/ajaxorg/ace/commit/9e81bdafc3d563421cae458259d4c4e1b449a237))

### [1.5.2](https://github.com/ajaxorg/ace/compare/v1.5.1...v1.5.2) (2022-05-30)


Expand Down
2 changes: 1 addition & 1 deletion build
Submodule build updated 56 files
+7 −0 CHANGELOG.md
+1 −0 README.md
+3 −0 ace-modules.d.ts
+36 −39 css/ace.css
+3 −6 css/theme/chrome.css
+3 −5 css/theme/merbivore.css
+3 −5 css/theme/merbivore_soft.css
+3 −5 css/theme/tomorrow.css
+3 −5 css/theme/tomorrow_night.css
+3 −5 css/theme/tomorrow_night_blue.css
+3 −5 css/theme/tomorrow_night_bright.css
+3 −5 css/theme/tomorrow_night_eighties.css
+3 −5 css/theme/xcode.css
+1 −1 kitchen-sink.html
+1 −1 package.json
+1 −1 src-min-noconflict/ace.js
+1 −1 src-min-noconflict/theme-chrome.js
+1 −1 src-min-noconflict/theme-merbivore.js
+1 −1 src-min-noconflict/theme-merbivore_soft.js
+1 −1 src-min-noconflict/theme-tomorrow.js
+1 −1 src-min-noconflict/theme-tomorrow_night.js
+1 −1 src-min-noconflict/theme-tomorrow_night_blue.js
+1 −1 src-min-noconflict/theme-tomorrow_night_bright.js
+1 −1 src-min-noconflict/theme-tomorrow_night_eighties.js
+1 −1 src-min-noconflict/theme-xcode.js
+1 −1 src-min/ace.js
+1 −1 src-min/theme-chrome.js
+1 −1 src-min/theme-merbivore.js
+1 −1 src-min/theme-merbivore_soft.js
+1 −1 src-min/theme-tomorrow.js
+1 −1 src-min/theme-tomorrow_night.js
+1 −1 src-min/theme-tomorrow_night_blue.js
+1 −1 src-min/theme-tomorrow_night_bright.js
+1 −1 src-min/theme-tomorrow_night_eighties.js
+1 −1 src-min/theme-xcode.js
+1 −1 src-noconflict/ace.js
+1 −3 src-noconflict/theme-chrome.js
+1 −3 src-noconflict/theme-merbivore.js
+1 −3 src-noconflict/theme-merbivore_soft.js
+1 −3 src-noconflict/theme-tomorrow.js
+1 −3 src-noconflict/theme-tomorrow_night.js
+1 −3 src-noconflict/theme-tomorrow_night_blue.js
+1 −3 src-noconflict/theme-tomorrow_night_bright.js
+1 −3 src-noconflict/theme-tomorrow_night_eighties.js
+1 −3 src-noconflict/theme-xcode.js
+1 −1 src/ace.js
+1 −3 src/theme-chrome.js
+1 −3 src/theme-merbivore.js
+1 −3 src/theme-merbivore_soft.js
+1 −3 src/theme-tomorrow.js
+1 −3 src/theme-tomorrow_night.js
+1 −3 src/theme-tomorrow_night_blue.js
+1 −3 src/theme-tomorrow_night_bright.js
+1 −3 src/theme-tomorrow_night_eighties.js
+1 −3 src/theme-xcode.js
+3 −0 webpack-resolver.js
2 changes: 1 addition & 1 deletion lib/ace/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,6 @@ function deHyphenate(str) {
return str.replace(/-(.)/g, function(m, m1) { return m1.toUpperCase(); });
}

exports.version = "1.5.2";
exports.version = "1.5.3";

});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ace",
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
"version": "1.5.2",
"version": "1.5.3",
"homepage": "http://github.com/ajaxorg/ace",
"engines": {
"node": ">= 0.6.0"
Expand Down

0 comments on commit 57ded09

Please sign in to comment.