Skip to content

Commit

Permalink
package 29.08.24
Browse files Browse the repository at this point in the history
  • Loading branch information
nlujjawal committed Aug 29, 2024
1 parent 3945bab commit 68e4d6e
Show file tree
Hide file tree
Showing 12 changed files with 37 additions and 29 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.36.1](https://github.com/ajaxorg/ace/compare/v1.36.0...v1.36.1) (2024-08-29)


### Bug Fixes

* improve type getMarkerAtPosition markergroup ([#5631](https://github.com/ajaxorg/ace/issues/5631)) ([89bd40a](https://github.com/ajaxorg/ace/commit/89bd40a66a2f06fb8806f174e5559021540a5b1e))
* update cloudeditor light colours ([#5633](https://github.com/ajaxorg/ace/issues/5633)) ([0e2813e](https://github.com/ajaxorg/ace/commit/0e2813ed9e858d9359c2a79f2a9255d675308ad1))

## [1.36.0](https://github.com/ajaxorg/ace/compare/v1.35.5...v1.36.0) (2024-08-21)


Expand Down
2 changes: 1 addition & 1 deletion ace.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export namespace Ace {
export class MarkerGroup {
constructor(session: EditSession, options?: {markerType?: "fullLine" | "line"});
setMarkers(markers: MarkerGroupItem[]): void;
getMarkerAtPosition(pos: Position): MarkerGroupItem;
getMarkerAtPosition(pos: Position): MarkerGroupItem | undefined;
}


Expand Down
38 changes: 19 additions & 19 deletions css/theme/cloud_editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
}

.ace-cloud_editor .ace_fold {
background-color: #2963d6;
background-color: #0E45B4;
border-color: #3a3a42;
}

Expand All @@ -79,27 +79,27 @@
}

.ace-cloud_editor .ace_meta.ace_tag {
color: #2963d6;
color: #0E45B4;
}

.ace-cloud_editor .ace_constant {
color: #a26202;
color: #A16101;
}

.ace-cloud_editor .ace_constant.ace_numeric {
color: #a26202;
color: #A16101;
}

.ace-cloud_editor .ace_constant.ace_character.ace_escape {
color: #d91792;
color: #BD1880;
}

.ace-cloud_editor .ace_support.ace_function {
color: #d1000a;
color: #A81700;
}

.ace-cloud_editor .ace_support.ace_class {
color: #a26202;
color: #A16101;
}

.ace-cloud_editor .ace_storage {
Expand All @@ -108,20 +108,20 @@

.ace-cloud_editor .ace_invalid.ace_illegal {
color: #ffffff;
background-color: #2963d6;
background-color: #0E45B4;
}

.ace-cloud_editor .ace_invalid.ace_deprecated {
color: #ffffff;
background-color: #a26202;
background-color: #A16101;
}

.ace-cloud_editor .ace_string {
color: #218000;
color: #207A7F;
}

.ace-cloud_editor .ace_string.ace_regexp {
color: #218000;
color: #207A7F;
}

.ace-cloud_editor .ace_comment,
Expand All @@ -131,34 +131,34 @@
}

.ace-cloud_editor .ace_variable {
color: #2963d6;
color: #0E45B4;
}

.ace-cloud_editor .ace_meta.ace_selector {
color: #9749d1;
}

.ace-cloud_editor .ace_entity.ace_other.ace_attribute-name {
color: #a26202;
color: #A16101;
}

.ace-cloud_editor .ace_entity.ace_name.ace_function {
color: #d1000a;
color: #A81700;
}

.ace-cloud_editor .ace_entity.ace_name.ace_tag {
color: #2963d6;
color: #0E45B4;
}

.ace-cloud_editor .ace_heading {
color: #d1000a;
color: #A81700;
}

.ace-cloud_editor .ace_xml-pe {
color: #a26202;
color: #A16101;
}
.ace-cloud_editor .ace_doctype {
color: #2963d6;
color: #0E45B4;
}

.ace-cloud_editor .ace_tooltip {
Expand Down Expand Up @@ -186,7 +186,7 @@
}
.ace-cloud_editor .ace_highlight-marker {
background: none;
border: #2963d6 1px solid;
border: #0E45B4 1px solid;
}
.ace-cloud_editor .ace_tooltip.ace_hover-tooltip:focus > div {
outline: 1px solid #0073bb;
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.36.0",
"version": "1.36.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/theme-cloud_editor.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/ace.js

Large diffs are not rendered by default.

Loading

0 comments on commit 68e4d6e

Please sign in to comment.