Skip to content

Commit 28a84dc

Browse files
chore(release): 0.24.1 [skip ci]
1 parent e56b3a5 commit 28a84dc

File tree

9 files changed

+887
-136
lines changed

9 files changed

+887
-136
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## [0.24.1](https://github.com/atom-community/atom-ide-datatip/compare/v0.24.0...v0.24.1) (2021-03-15)
2+
3+
4+
### Bug Fixes
5+
6+
* make onMouseWheel free ([07f6760](https://github.com/atom-community/atom-ide-datatip/commit/07f6760b3d329c12d4260ea44706555dca22dd12))
7+
* remove excess null-check for subs ([8df66d5](https://github.com/atom-community/atom-ide-datatip/commit/8df66d53d9a8714bdb5c57cbb00a90a33ee4c3ef))
8+
* show datatips even when there is other overlays such as Linter ([91f7e3e](https://github.com/atom-community/atom-ide-datatip/commit/91f7e3e1e5a69b783a942364665cd65de1af25bf))
9+
* simplify comparing markers ([371cd9c](https://github.com/atom-community/atom-ide-datatip/commit/371cd9cc73804115806f67be714fa2a37ff020c1))
10+
* update atom dependencies ([b9bd8aa](https://github.com/atom-community/atom-ide-datatip/commit/b9bd8aa5b4c742fcad1201c485ca5929a457e987))
11+
* use === in null checks ([3924ecd](https://github.com/atom-community/atom-ide-datatip/commit/3924ecd5cf82f07a4c78e831b089e50d3c336faa))
12+
113
# [0.24.0](https://github.com/atom-community/atom-ide-datatip/compare/v0.23.5...v0.24.0) (2021-02-27)
214

315

dist/datatip-manager.d.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ export declare class DataTipManager {
2323
get datatipService(): ProviderRegistry<DatatipProvider>;
2424
watchEditor(editor: TextEditor): Disposable | undefined;
2525
updateCurrentEditor(editor: TextEditor | null): void;
26-
onCursorMoveEvt(evt: CursorPositionChangedEvent): void;
27-
onMouseMoveEvt(evt: MouseEvent): void;
28-
onMouseWheel(evt: WheelEvent): void;
26+
onCursorMoveEvt(event: CursorPositionChangedEvent): void;
27+
onMouseMoveEvt(event: MouseEvent): void;
2928
onCommandEvt(evt: CommandEvent<TextEditorElement>): void;
3029
showDataTip(editor: TextEditor, position: Point): Promise<void>;
3130
mountDataTipWithMarker(editor: TextEditor, range: Range, position: Point, view: ViewContainer): CompositeDisposable | null;

dist/index-41c7c3a8.js

Lines changed: 1 addition & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index-41c7c3a8.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { DatatipService } from "atom-ide-base";
22
export { default as config } from "./config.json";
3-
export declare function activate(): Promise<void>;
3+
export declare function activate(): void;
44
export declare function deactivate(): void;
55
export declare function provideDatatipService(): DatatipService;

dist/main.js

Lines changed: 1 addition & 75 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/tsconfig.tsbuildinfo

Lines changed: 867 additions & 45 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "atom-ide-datatip",
33
"main": "./dist/main.js",
4-
"version": "0.24.0",
4+
"version": "0.24.1",
55
"description": "A replacement for the Data Tooltip provider that was originally part of the Atom IDE package from Facebook.",
66
"keywords": [
77
"atom-package",

0 commit comments

Comments
 (0)