Skip to content

Commit

Permalink
package 25.01.23
Browse files Browse the repository at this point in the history
  • Loading branch information
Zakhar Kozlov committed Jan 25, 2023
1 parent 62b5377 commit 4686b2a
Show file tree
Hide file tree
Showing 17 changed files with 14,026 additions and 13,895 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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.15.0](https://github.com/ajaxorg/ace/compare/v1.14.0...v1.15.0) (2023-01-25)


### Features

* Added Editor API to set the ghost text ([#5036](https://github.com/ajaxorg/ace/issues/5036)) ([958d573](https://github.com/ajaxorg/ace/commit/958d57383c4ebfacd414eb817aecc2e0982d1b36))


### Bug Fixes

* Added highlighting for TIES keyword introduced in PostgreSQL 13 ([#5033](https://github.com/ajaxorg/ace/issues/5033)) ([9588086](https://github.com/ajaxorg/ace/commit/95880868c2a9912f7c6a2c3942d67fc2a980094e))
* editor shadow appears under the selected line background when horizontal scroll is active ([#5020](https://github.com/ajaxorg/ace/issues/5020)) ([ab4f788](https://github.com/ajaxorg/ace/commit/ab4f788455ae182ae133fa202d737efa5461ff79))
* Remove broken keybinding from vscode mode ([#5032](https://github.com/ajaxorg/ace/issues/5032)) ([68ff964](https://github.com/ajaxorg/ace/commit/68ff964a214cc2da66e4a35b313ff66dd4490e34))

## [1.14.0](https://github.com/ajaxorg/ace/compare/v1.13.1...v1.14.0) (2022-12-12)


Expand Down
4 changes: 4 additions & 0 deletions ace.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,8 @@ export namespace Ace {
showComposition(position: number): void;
setCompositionText(text: string): void;
hideComposition(): void;
setGhostText(text: string, position: Point): void;
removeGhostText(): void;
setTheme(theme: string, callback?: () => void): void;
getTheme(): string;
setStyle(style: string, include?: boolean): void;
Expand Down Expand Up @@ -844,6 +846,8 @@ export namespace Ace {
removeWordLeft(): void;
removeLineToEnd(): void;
splitLine(): void;
setGhostText(text: string, position: Point): void;
removeGhostText(): void;
transposeLetters(): void;
toLowerCase(): void;
toUpperCase(): void;
Expand Down
13 changes: 12 additions & 1 deletion css/ace.css
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,15 @@ position: absolute;
left: 0;
right: 0;
}
.ace_scroller.ace_scroll-left {
.ace_scroller.ace_scroll-left:after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
box-shadow: 17px 0 16px -16px rgba(0, 0, 0, 0.4) inset;
pointer-events: none;
}
.ace_gutter-cell {
position: absolute;
Expand Down Expand Up @@ -542,6 +549,10 @@ white-space: pre;
opacity: 0.7;
margin: 0 10px;
}
.ace_ghost_text {
opacity: 0.5;
font-style: italic;
}
/*ace-tm*/
.ace-tm .ace_gutter {
background: #f0f0f0;
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.14.0
version 1.15.0
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.14.0",
"version": "1.15.0",
"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-vscode.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/mode-pgsql.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.

Loading

0 comments on commit 4686b2a

Please sign in to comment.