Skip to content

Commit

Permalink
chore(release): v2.13.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
app-publisher-bot committed Dec 23, 2022
1 parent e735ec8 commit 3d56a53
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 5 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# VSCODE-TASKEXPLORER CHANGE LOG

## Version 2.13.0 (December 23rd, 2022)

### Bug Fixes

- super bug kill - 'a node named .... has already been added', after which most of the tree breaks until refreshed.
- changing the 'show last tasks' or 'show favorites' settings have no effect until restart [Fixes #173]

### Documentation

- readme displays broken badge link due to space char.

### Features

- complete new layout, 10x easier to navigate and configure
- add new setting 'show hidden vscode tasks', which will not include workspace tasks in the task tree that have with the 'hide' property set in the task definition. Defaults to 'true' to resume past behavior. [Closes #182]

### Refactoring

- improve logging legibility, format any logged json objects.
- add additional logging when constructing a tree file node

## Version 2.12.0 (December 21st, 2022)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 37 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-taskexplorer",
"version": "2.12.0",
"version": "2.13.0",
"displayName": "Task Explorer",
"description": "Tasks management for npm, vscode, yarn, ant, gradle, grunt, gulp, batch, bash,php composer, make, maven, python, perl, powershell, ruby, pipenv, nsis. Supports external task providers via API.",
"icon": "res/gears-r-colors.png",
Expand Down Expand Up @@ -1781,7 +1781,28 @@
},
"taskExplorer.numLastTasks": {
"type": "number",
"enum": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ],
"enum": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20
],
"default": 10,
"title": "%config.taskExplorer.numLastTasks%",
"markdownDescription": "%config.taskExplorer.numLastTasksDsc%"
Expand All @@ -1798,13 +1819,25 @@
},
"taskExplorer.debugLevel": {
"type": "number",
"enum": [ 1, 2, 3, 4, 5 ],
"enum": [
1,
2,
3,
4,
5
],
"default": 1,
"description": "%config.taskExplorer.debugLevel%"
},
"taskExplorer.groupMaxLevel": {
"type": "number",
"enum": [ 1, 2, 3, 4, 5 ],
"enum": [
1,
2,
3,
4,
5
],
"default": 1,
"description": "%config.taskExplorer.groupMaxLevel%"
},
Expand Down

0 comments on commit 3d56a53

Please sign in to comment.