Skip to content

Commit

Permalink
Closes #67
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Nov 5, 2016
1 parent d1c6c42 commit f57037f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ You have the option to display the _Project Name_ in the Status Bar, so you can

# Changelog

## Version 0.12.1

**Fix:** The `path` should not be relevant while filtering projects (issue [#67](https://github.com/alefragnani/vscode-project-manager/issues/67))

## Version 0.12.0

* **New:** Display the _Project Name_ in the Status Bar (kudos to @BonDoQ)
Expand Down
4 changes: 2 additions & 2 deletions extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@ export function activate(context: vscode.ExtensionContext) {

let options = <vscode.QuickPickOptions>{
placeHolder: 'Loading Projects (pick one to open)',
matchOnDescription: true,
matchOnDetail: true
matchOnDescription: false,
matchOnDetail: false
};


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": "0.12.0",
"version": "0.12.1",
"publisher": "alefragnani",
"galleryBanner": {
"color": "#000000",
Expand Down

0 comments on commit f57037f

Please sign in to comment.