Skip to content

Commit

Permalink
package 17.10.22
Browse files Browse the repository at this point in the history
  • Loading branch information
anester-aws committed Oct 17, 2022
1 parent a802f36 commit 3367cc6
Show file tree
Hide file tree
Showing 15 changed files with 24 additions and 16 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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.12.1](https://github.com/ajaxorg/ace/compare/v1.12.0...v1.12.1) (2022-10-17)


### Bug Fixes

* php worker rules for T_NAME_FULLY_QUALIFIED ([#4960](https://github.com/ajaxorg/ace/issues/4960)) ([52dbb05](https://github.com/ajaxorg/ace/commit/52dbb0577693e29f124a1f16008b4e11e2ce7c02))
* recognisition of uppercase hex numbers for stylus mode ([#4962](https://github.com/ajaxorg/ace/issues/4962)) ([87e0dc7](https://github.com/ajaxorg/ace/commit/87e0dc7b868798300e874e39304aeda18d3d1a76))

## [1.12.0](https://github.com/ajaxorg/ace/compare/v1.11.2...v1.12.0) (2022-10-15)


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.12.0
version 1.12.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.12.0",
"version": "1.12.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/mode-stylus.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/ace.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/mode-stylus.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-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.12.0";
exports.version = "1.12.1";

});

Expand Down
4 changes: 2 additions & 2 deletions src-noconflict/mode-stylus.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,11 @@ var StylusHighlightRules = function () {
},
{
token: "constant.numeric",
regex: "#[a-f0-9]{6}"
regex: "#[a-fA-F0-9]{6}"
},
{
token: "constant.numeric",
regex: "#[a-f0-9]{3}"
regex: "#[a-fA-F0-9]{3}"
},
{
token: ["punctuation.definition.entity.stylus", "entity.other.attribute-name.id.stylus"],
Expand Down
2 changes: 1 addition & 1 deletion src-noconflict/worker-php.js
Original file line number Diff line number Diff line change
Expand Up @@ -2070,7 +2070,7 @@ ace.define("ace/mode/php/php",[], function (require, exports, module) {
},
{
value: PHP.Constants.T_NAME_FULLY_QUALIFIED,
re: /^\\\w+\\\w+(?:\\\w+)*/
re: /^\\\w+(?:\\\w+)*/
},
{
value: PHP.Constants.T_NAME_QUALIFIED,
Expand Down
2 changes: 1 addition & 1 deletion src/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.12.0";
exports.version = "1.12.1";

});

Expand Down
4 changes: 2 additions & 2 deletions src/mode-stylus.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,11 @@ var StylusHighlightRules = function () {
},
{
token: "constant.numeric",
regex: "#[a-f0-9]{6}"
regex: "#[a-fA-F0-9]{6}"
},
{
token: "constant.numeric",
regex: "#[a-f0-9]{3}"
regex: "#[a-fA-F0-9]{3}"
},
{
token: ["punctuation.definition.entity.stylus", "entity.other.attribute-name.id.stylus"],
Expand Down
2 changes: 1 addition & 1 deletion src/worker-php.js
Original file line number Diff line number Diff line change
Expand Up @@ -2070,7 +2070,7 @@ define("ace/mode/php/php",[], function (require, exports, module) {
},
{
value: PHP.Constants.T_NAME_FULLY_QUALIFIED,
re: /^\\\w+\\\w+(?:\\\w+)*/
re: /^\\\w+(?:\\\w+)*/
},
{
value: PHP.Constants.T_NAME_QUALIFIED,
Expand Down

0 comments on commit 3367cc6

Please sign in to comment.