Skip to content

Commit

Permalink
1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
DeeJayTC committed Aug 1, 2019
1 parent 68449c8 commit 787772d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Change Log
## 1.0.6
- fixed a bug where links on the task card where not pointing to the correct url
- Creating a task without an active project picked should be a bit more smooth now.

## 1.0.5
- added a warning when trying to select a project without a folder opened
Expand Down
2 changes: 1 addition & 1 deletion media/cards/taskCard.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"facts": [
{
"title": "Project:",
"value": "[{$root['project-name']}]({$root.rooturl}/projects/{$root.id})"
"value": "[{$root['project-name']}]({$root.rooturl}/projects/{$root['project-id']})"
},
{
"title": "TaskList:",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"url": "https://twitter.com/Teamwork"
}
],
"version": "1.0.5",
"version": "1.0.6",
"engines": {
"vscode": "^1.33.0"
},
Expand Down
3 changes: 1 addition & 2 deletions src/teamworkProjects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ export class TeamworkProjects{
//Task: Need to find a workaround for files without a comment symbol configured in VSCode
//Link: https://digitalcrew.teamwork.com//tasks/14804255
//Assigned To: Tim Cadenbach

var commentWrapper = langConfig.comments.lineComment;
var content = taskDetails.content;
var responsible = taskDetails["responsible-party-names"];
Expand Down Expand Up @@ -302,7 +301,7 @@ export class TeamworkProjects{


if (this.Config.ActiveProjectId === ""){
this.SelectActiveProject();
await this.SelectActiveProject();
}

this.Config.Projects.forEach(element => {
Expand Down
Binary file renamed twp-1.0.5.vsix → twp-1.0.6.vsix
Binary file not shown.

0 comments on commit 787772d

Please sign in to comment.