Skip to content

Commit

Permalink
[1.3.2] new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrnperl committed Nov 9, 2023
1 parent 70af048 commit 9a9788b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,4 +202,11 @@ typo

- Now search is case-insensitive (For normal search, case-sensitive is automatically enabled when you type a capital letter)
- A failed search will not cause the outline running into an error state
- Ignore scheme vscode-scm and workThroughSnippet
- Ignore scheme vscode-scm and workThroughSnippet

### [1.3.2] - 2023-11-09

#### Fix

- Overlap items when the height of the outline is not enough #50
- Other minor fixes
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": "outline-map",
"displayName": "Outline Map",
"description": "A visual, interactive outline map that combinesAlternative Minimap. the clarity of the outline with the intuitive overview of the minimap. Enhanced version of vscode built-in outline.",
"version": "1.3.1",
"version": "1.3.2",
"repository": {
"url": "https://github.com/Gerrnperl/outline-map.git"
},
Expand Down
1 change: 1 addition & 0 deletions src/extension/region.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ export class RegionProvider implements DocumentSymbolProvider, FoldingRangeProvi
}

const startTag = unpaired[startIndex];
if (!startTag) continue;
unpaired.splice(startIndex, 1);

regions.push({
Expand Down
1 change: 1 addition & 0 deletions src/webview/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ function renderSymbolNode(symbolNode: SymbolNode, depth = 0): HTMLDivElement {

const label = container.querySelector('.outline-label') as HTMLSpanElement;
label.addEventListener('click', () => {
input.stopSearch();
vscode.postMessage({
type: 'goto',
data: {
Expand Down

0 comments on commit 9a9788b

Please sign in to comment.