diff --git a/CHANGELOG.md b/CHANGELOG.md index 49973d1..aadcf1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,17 +4,13 @@ All notable changes to the "code-with-todoist" extension will be documented in t Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. -## Unreleased +## [0.5.0] - 2020-11-22 ### Added * Mark task as done from Today view * Show different icon for shared projects +* Attach Todoist projects to vscode workspaces -### Changed - -### Removed - -### Fixed ## [0.4.3] - 2020-10-09 diff --git a/README.md b/README.md index 47f552f..b73bb86 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,6 @@ File > Preferences > Settings > Code With Todoist `code.todoist.syncInternval` - Value in milliseconds at which interval Todoist data is synced. -`code.todoist.useGitIgnore` - Upcoming feature. This setting is currently not in use. - ## Features ### View projects with colour coding @@ -41,6 +39,10 @@ File > Preferences > Settings > Code With Todoist ![Screenshot of today's tasks](media/features/today.png "Screenshot of today's tasks") +### Attach Todoist projects to vscode workspaces + +![Screenshot of attached projects](media/features/projectworkspace.png "Screenshot of attached projects") + ### Offline Support All Todoist data is cached locally and can be viewed without Internet access. @@ -50,4 +52,3 @@ Todoist Data is synced every 10 minutes by default, but this can be overriden in ## Known issues * Markdown support in Task names - Unsure if vscode extension API supports this. - diff --git a/media/features/projectworkspace.png b/media/features/projectworkspace.png new file mode 100644 index 0000000..4a182e2 Binary files /dev/null and b/media/features/projectworkspace.png differ diff --git a/package.json b/package.json index 67037ad..604665c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "code-with-todoist", "displayName": "code with Todoist", "description": "Todoist plugin for vs code", - "version": "0.4.3", + "version": "0.5.0", "publisher": "Spoorthi", "icon": "media/extension_icon.png", "license": "SEE LICENSE IN LICENSE", @@ -70,12 +70,6 @@ "default": 600000, "description": "Value in milliseconds at which interval Todoist data is synced.", "scope": "application" - }, - "code.todoist.useGitIgnore": { - "type": "boolean", - "default": true, - "description": "Use .gitignore to ignore files during //TODO parsing (if it exists)", - "scope": "application" } } }