Skip to content

Commit b05dcd2

Browse files
chore(release): 2.3.0 [skip ci]
1 parent 46afb0f commit b05dcd2

6 files changed

+24
-8
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# [2.3.0](https://github.com/atom-ide-community/atom-ide-outline/compare/v2.2.1...v2.3.0) (2021-03-20)
2+
3+
4+
### Bug Fixes
5+
6+
* disappearing toolbar ([b16461b](https://github.com/atom-ide-community/atom-ide-outline/commit/b16461b6d063cf65c570f3c37a7482b98d43329d))
7+
* lastCursor and onDidChangeCursorPosition ([3e0c6d0](https://github.com/atom-ide-community/atom-ide-outline/commit/3e0c6d04dfdadd60d4bd1c32d7966ac694ade220))
8+
* only scroll into the first ([f318046](https://github.com/atom-ide-community/atom-ide-outline/commit/f318046084dc36ac8d9905729d42e9fee2c5c0f4))
9+
* remove focus once cursor moved in revealCursor ([ff14435](https://github.com/atom-ide-community/atom-ide-outline/commit/ff14435bef3a1354687b8d44a212c5fc174d94df))
10+
* use getView instead of getElement ([e434758](https://github.com/atom-ide-community/atom-ide-outline/commit/e43475846c9e029747ab183ff26d9869fd810f19))
11+
12+
13+
### Features
14+
15+
* add outline toolbar ([ba816a8](https://github.com/atom-ide-community/atom-ide-outline/commit/ba816a88f1ab5efe2a85a2e9431c3edd6d9b0567))
16+
117
## [2.2.1](https://github.com/atom-ide-community/atom-ide-outline/compare/v2.2.0...v2.2.1) (2021-03-20)
218

319

dist/main.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/outlineView.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { TextEditor, CursorPositionChangedEvent } from "atom";
1+
import { TextEditor } from "atom";
22
import { OutlineTree } from "atom-ide-base";
33
export declare class OutlineView {
44
element: HTMLDivElement;
@@ -18,6 +18,6 @@ export declare class OutlineView {
1818
title: string;
1919
description: string;
2020
}): void;
21-
selectAtCursorLine(newBufferPosition: CursorPositionChangedEvent["newBufferPosition"]): void;
21+
selectAtCursorLine(editor: TextEditor): void;
2222
isVisible(): boolean;
2323
}

dist/tsconfig.tsbuildinfo

+3-3
Original file line numberDiff line numberDiff line change
@@ -797,8 +797,8 @@
797797
"affectsGlobalScope": false
798798
},
799799
"../src/outlineView.ts": {
800-
"version": "6deff5fc1f040006e30f21ac5d181d1f82acf24b3d2dff6b5606b12ee18fa811",
801-
"signature": "205dc9398a7493b947953ff7116ae1dc9077031f0bad0982c154078351a221ca",
800+
"version": "9af29780a4f214f06c1430762240138f1e28fa8f2fa76b3c57cc5131574add27",
801+
"signature": "58b52bbaf34e827cf87e7c349bf39010f6e36b731bac0e4597f0a72aa295e418",
802802
"affectsGlobalScope": false
803803
},
804804
"../node_modules/atom-ide-base/commons-atom/ProviderRegistry.d.ts": {
@@ -887,7 +887,7 @@
887887
"affectsGlobalScope": true
888888
},
889889
"../src/main.ts": {
890-
"version": "8eca3a76becf40d627742bad54caf1e3f4ca7c12f2307291c735e7a35cfeab1f",
890+
"version": "d0487735d84734369d94bc92aad16f0388aedd4a716522dfd9f9809cb977b2e6",
891891
"signature": "3e5be602d3906c48186e0455e866bfead2fcae1fcf4c19c91ed936771d49db52",
892892
"affectsGlobalScope": false
893893
},

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "atom-ide-outline",
33
"main": "./dist/main",
4-
"version": "2.2.1",
4+
"version": "2.3.0",
55
"description": "Outline UI compatible with IDE packages",
66
"repository": "https://github.com/atom-ide-community/atom-ide-outline",
77
"keywords": [

0 commit comments

Comments
 (0)