Skip to content

Commit

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

## Version 2.6.0 (January 22nd, 2022)

### Bug Fixes

- when settings for click action is 'Execute', can't use the other 'Open' actions. [Fixes #160]
- pause button does not work in Explorer view

### Features

- add support for php composer tasks found in composer.json [Closes #150]
- add new setting 'Glob Patterns Bash' for specifying glob patterns for identifying bash scripts with no extension. [Closes #153]
- add new setting 'Disable animated icons' to disable spinning icons when running tasks, known to cause high CPU usage on some systems. [Closes #157]
- add label rename command for special folder items [Closes #164]

### Refactoring

- the 'Include Ant' setting has been deprecated, use 'Glob Patterns Ant'.

## Version 2.5.7 (August 28th, 2021)

### 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.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-taskexplorer",
"version": "2.5.7",
"version": "2.6.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 and nsis",
"icon": "res/gears-r-colors.png",
Expand Down Expand Up @@ -69,8 +69,8 @@
"test:openreport": "npm run coverage-open-report",
"watch": "tsc -watch -p ./",
"webpack-watch": "webpack -w --info-verbosity verbose --mode development --config ./webpack.config.js",
"webpack-build": "npm run webpack-build:extension && npm run webpack-build:test",
"webpack-rebuild": "rimraf dist && npm run webpack-build:extension && npm run webpack-build:test",
"webpack-build": "npm run webpack-build:extension",
"webpack-rebuild": "rimraf dist && npm run webpack-build:extension",
"webpack-rebuild:extension": "rimraf dist && npm run webpack-build:extension --config ./webpack.config.js",
"webpack-build:extension": "webpack --mode production --config ./webpack.config.js",
"webpack-build:test": "webpack --mode production --config ./webpack.config.test.js"
Expand Down

0 comments on commit 8f7ed94

Please sign in to comment.