Skip to content

Releases: go-task/vscode-task

v0.3.2

20 Nov 17:08
8f85766
Compare
Choose a tag to compare
  • Fixed another small bug with the new argument passing (#94 by @MaxCheetham).
  • Bumped the minimum required version of task to v3.24.0.

v0.3.1

02 Sep 23:26
78daf49
Compare
Choose a tag to compare

v0.3.0

02 Sep 23:01
10af8d2
Compare
Choose a tag to compare

v0.2.0

07 May 01:05
Compare
Choose a tag to compare
  • Improve error handling in when Taskfiles contain errors (#25 by @pd93).
  • Added a new command: Task: Show Debug Panel to show the Task debug panel (#25 by @pd93).
  • Added the ability to sort tasks in the tree view (#20 by @pd93).
    • Configurable via task.tree.sort setting (values: "default" (default), "alphanumeric" or "none").
  • Added a cancel/timeout to file watcher to improve performance when making lots of file changes (#35 by @pd93).
    • For example, git stash pop of a lot of .yml files would cause a huge lag spike as multiple update calls were made.
  • Allow commands to be run from last active terminal instead of the output panel (#12, #43 by @pd93).
    • Configurable via task.outputTo setting (values: output (default) or terminal).
  • This extension is now also published on the Open VSX Registry (#26, #46 by @pd93).
    • This means you can now install it in VSCodeium.

v0.1.1

27 Mar 15:32
Compare
Choose a tag to compare
  • Fixed some installations (e.g. Brew) not detecting the Task version correctly (#13, #14 by @pd93).

v0.1.0

26 Mar 19:40
Compare
Choose a tag to compare

Initial code by @pd93.

  • View tasks in the sidebar.
  • Run tasks from the sidebar and command palette.
  • Go to definition from the sidebar and command palette.
  • Run last task command.
  • Multi-root workspace support.
  • Open docs from the sidebar and command palette.
  • Ability to initialize a Taskfile in the current workspace.
    • If no Taskfile is detected a button will appear in the sidebar.
  • Refresh on save.
    • Configurable via task.updateOn setting (values: "save" (default) or "manual").
  • Toggle tree nesting on/off
    • Configurable via task.nesting setting (values: true (default) or false).
  • Change the path to the Task binary.
    • Can also be set to the name of a binary in your $PATH.
    • Configurable via task.path setting (defaults to "task").
  • Version checks on startup.
    • Configurable via task.checkForUpdates setting (values: true (default) or false).
  • Sidebar icon provided by @drite93.