-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
145 changed files
with
15,226 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"CurrentProjectSetting": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"ExpandedNodes": [ | ||
"" | ||
], | ||
"PreviewInSolutionExplorer": false | ||
} |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
"ms-vscode.vscode-typescript-tslint-plugin" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// A launch configuration that compiles the extension and then opens it inside a new window | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [{ | ||
"name": "Run Extension", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}" | ||
], | ||
"outFiles": [ | ||
"${workspaceFolder}/out/**/*.js" | ||
], | ||
"preLaunchTask": "npm: watch" | ||
}, | ||
{ | ||
"name": "Extension Tests", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}", | ||
"--extensionTestsPath=${workspaceFolder}/out/test" | ||
], | ||
"outFiles": [ | ||
"${workspaceFolder}/out/test/**/*.js" | ||
], | ||
"preLaunchTask": "npm: watch" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"files.exclude": { | ||
"out": false // set this to true to hide the "out" folder with the compiled JS files | ||
}, | ||
"search.exclude": { | ||
"out": true // set this to false to include "out" folder in search results | ||
}, | ||
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts | ||
"typescript.tsc.autoDetect": "off" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "watch", | ||
"problemMatcher": "$tsc-watch", | ||
"isBackground": true, | ||
"presentation": { | ||
"reveal": "never" | ||
}, | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.vscode/** | ||
.vscode-test/** | ||
out/test/** | ||
src/** | ||
.gitignore | ||
vsc-extension-quickstart.md | ||
**/tsconfig.json | ||
**/tslint.json | ||
**/*.map | ||
**/*.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Change Log | ||
|
||
All notable changes to the "twp" extension will be documented in this file. | ||
|
||
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. | ||
|
||
## [Unreleased] | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## Features | ||
Browse Teamwork Projects directly from VSCode, Link a repository to as many Projects as you want. | ||
|
||
## Extension Settings | ||
|
||
To use the Extension you must configure it first! | ||
|
||
This extension contributes the following settings: | ||
|
||
* `twp.ShowTeamworkPanel`: Use Teamwork Panel instead of AdaptiveCards for Preview, *Currently not working! | ||
* `twp.APIKey`: Your Teamwork API Key | ||
* `twp.APIRoot`: The installation URL of your Teamwork Projects Account | ||
|
||
## Known Issues | ||
* Teamwork Embedded view not working due to CORS issues | ||
|
||
## Release Notes | ||
|
||
### 1.0.0 | ||
|
||
Initial release | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
{ | ||
"id": 14189636, | ||
"canComplete": true, | ||
"comments-count": 1, | ||
"description": "", | ||
"has-reminders": false, | ||
"has-unread-comments": false, | ||
"private": 0, | ||
"content": "IE11 - Teams - Add tab - Text is centred on the connect modal", | ||
"order": 2033, | ||
"project-id": 328110, | ||
"project-name": "Teamwork Microsoft Teams", | ||
"todo-list-id": 1216941, | ||
"todo-list-name": "Minor Bugs", | ||
"tasklist-private": false, | ||
"tasklist-isTemplate": false, | ||
"status": "reopened", | ||
"company-name": "Teamwork", | ||
"company-id": 1, | ||
"creator-id": 153196, | ||
"creator-firstname": "Michael", | ||
"creator-lastname": "Carew", | ||
"updater-id": 0, | ||
"updater-firstname": "", | ||
"updater-lastname": "", | ||
"completed": false, | ||
"start-date": "", | ||
"due-date-base": "", | ||
"due-date": "", | ||
"created-on": "Tue-04-2019", | ||
"last-changed-on": "2019-04-24T11:07:13Z", | ||
"position": 2033, | ||
"estimated-minutes": 0, | ||
"priority": "", | ||
"progress": 0, | ||
"harvest-enabled": false, | ||
"parentTaskId": "", | ||
"lockdownId": "", | ||
"tasklist-lockdownId": "", | ||
"has-dependencies": 0, | ||
"has-predecessors": 0, | ||
"hasTickets": false, | ||
"timeIsLogged": "0", | ||
"attachments-count": 1, | ||
"predecessors": [], | ||
"canEdit": true, | ||
"viewEstimatedTime": true, | ||
"creator-avatar-url": "https://s3.amazonaws.com/TWFiles/1/userAvatar/tf_7D864F78-C68B-E861-6305DA288F04819E.6D362E6B-5DDD-4952-ADA5-3C34DA20A184.jpeg", | ||
"canLogTime": false, | ||
"commentFollowerSummary": "Michael Carew", | ||
"commentFollowerIds": "153196", | ||
"userFollowingComments": false, | ||
"userFollowingChanges": false, | ||
"DLM": 0, | ||
"comments": [{ | ||
"project-id": "328110", | ||
"attachments_count": "1", | ||
"author-lastname": "Carew", | ||
"commentable-id": "14189636", | ||
"commentable_type": "todo_items", | ||
"emailed-from": "", | ||
"isRead": "1", | ||
"private": "0", | ||
"lockdown-id": "", | ||
"datetime": "Wed-04-2019 03:35", | ||
"author-avatar-url": "https://s3.amazonaws.com/TWFiles/1/userAvatar/tf_7D864F78-C68B-E861-6305DA288F04819E.6D362E6B-5DDD-4952-ADA5-3C34DA20A184.jpeg", | ||
"author_id": "153196", | ||
"canEdit": true, | ||
"id": "6595662", | ||
"company-name": "Teamwork", | ||
"last-changed-on": "2019-04-19T11:01:38Z", | ||
"content-type": "TEXT", | ||
"nr-notified-people": "0", | ||
"canDelete": true, | ||
"type": "task", | ||
"item-name": "IE11 - Teams - Add tab - Text is centred on the connect modal", | ||
"attachments-count": "1", | ||
"_author_id": { | ||
"deprecated": true | ||
}, | ||
"company-id": "1", | ||
"canLike": true, | ||
"html-body": "<p>is still an issue</p>\n", | ||
"project-name": "Teamwork Microsoft Teams", | ||
"body": "is still an issue", | ||
"commentNo": "1", | ||
"attachments": [{ | ||
"filename-on-disk": "image.png", | ||
"name": "image.png", | ||
"icontype": "images/filetypes/RASTER.png", | ||
"filesize": "178KB", | ||
"extraData": "", | ||
"categoryId": "", | ||
"filename": "image.png", | ||
"projectId": "328110", | ||
"thumbnail": "https://s3.amazonaws.com/TWFiles/1/thumb_p328110.tf_14A0E8F9-C4FC-FA82-017D4A1B976CAC17.image.png", | ||
"fileLocked": "0", | ||
"canEdit": true, | ||
"version": "1", | ||
"comment-count": "0", | ||
"fileVersionId": "4925667", | ||
"canAddFiles": true, | ||
"id": "4736978", | ||
"extension": "png", | ||
"size": "182309", | ||
"fileId": "4736978", | ||
"lockdownId": "", | ||
"file-source": "teamworkpm", | ||
"type": "normal", | ||
"canDelete": true | ||
}], | ||
"author-firstname": "Michael", | ||
"author-company": "Teamwork", | ||
"comment-link": "tasks/14189636?c=6595662", | ||
"author-id": "153196" | ||
}], | ||
"attachments": [{ | ||
"lastChangedOn": "2019-04-16T08:55:02Z", | ||
"uploadedByUserId": "153196", | ||
"filenameOnDisk": "image.png", | ||
"extraData": "", | ||
"categoryId": "", | ||
"userFollowingComments": false, | ||
"projectId": "328110", | ||
"private": "0", | ||
"status": "active", | ||
"numberOfComments": "0", | ||
"changeFollowerIds": "", | ||
"tags": [], | ||
"fileLocked": "0", | ||
"canEdit": true, | ||
"version": "1", | ||
"id": "4729538", | ||
"commentFollowerIds": "", | ||
"shareable": true, | ||
"versions": [{ | ||
"uploadedByUserId": "153196", | ||
"uploadedDate": "2019-04-16T08:55:01Z", | ||
"name": "image.png", | ||
"uploadedByUserLastName": "Carew", | ||
"status": "active", | ||
"uploadedByUserFirstName": "Michael", | ||
"version": "1", | ||
"originalName": "image.png", | ||
"id": "4917847", | ||
"numLikes": "0", | ||
"size": "99736", | ||
"commentsCount": "0", | ||
"commentsCountRead": "0" | ||
}], | ||
"commentsCountRead": "0", | ||
"commentsCount": "0", | ||
"thumbURL": "https://s3.amazonaws.com/TWFiles/1/thumb_p328110.tf_7597B63F-D36C-11AC-F541699BC2147FE6.image.png", | ||
"canDelete": true, | ||
"latestversion": "1", | ||
"categoryColor": "", | ||
"uploadedDate": "2019-04-16T08:55:01Z", | ||
"name": "image.png", | ||
"userFollowingChanges": false, | ||
"description": "", | ||
"companyName": "Teamwork", | ||
"numberOfUnreadComments": "0", | ||
"projectName": "Teamwork Microsoft Teams", | ||
"categoryName": "", | ||
"uploadedByUserLastName": "Carew", | ||
"numberOfReadComments": "0", | ||
"canUploadNewVersion": true, | ||
"uploadedByUserFirstName": "Michael", | ||
"originalName": "image.png", | ||
"canAddFiles": true, | ||
"isLatestVersion": true, | ||
"versionId": "4917847", | ||
"numLikes": "0", | ||
"size": "99736", | ||
"file-source": "teamworkpm", | ||
"companyId": "1" | ||
}] | ||
} |
Oops, something went wrong.