Skip to content

Commit

Permalink
Docs updated for #151
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Sep 25, 2019
1 parent fc281f5 commit 7f38bb9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [10.8.0] - 2019-09-??
### Added
- Support to save **Workspaces** as projects

## [10.7.0] - 2019-08-25
### Added
- New Side Bar icon matching new VS Code icon style
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "project-manager",
"displayName": "Project Manager",
"description": "Easily switch between projects",
"version": "10.7.0",
"version": "10.8.0",
"publisher": "alefragnani",
"galleryBanner": {
"color": "#000000",
Expand Down
1 change: 1 addition & 0 deletions src/whats-new/ProjectManagerContentProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export class WhatsNewProjectManagerContentProvider implements ContentProvider {
public provideChangeLog(): ChangeLogItem[] {
const changeLog: ChangeLogItem[] = [];
changeLog.push({kind: ChangeLogKind.NEW, message: "Adds an all-new Project Manager <b>Side Bar</b>"});
changeLog.push({kind: ChangeLogKind.NEW, message: "Adds support to save <b>Workspaces</b> as projects"});
changeLog.push({kind: ChangeLogKind.NEW, message: "Adds <b>Portable Mode</b> support"});
changeLog.push({kind: ChangeLogKind.NEW, message: "Adds <b>Save</b> button in <b>Side Bar</b>"});
changeLog.push({kind: ChangeLogKind.NEW, message: `Adds <b>Disable Project</b>, <b>Add to Workspace</b>,
Expand Down

0 comments on commit 7f38bb9

Please sign in to comment.