From 1da591fd6e963b377a789a00737d3726fb6907f2 Mon Sep 17 00:00:00 2001 From: Stephane Levesque Date: Wed, 17 Apr 2019 23:13:52 -0400 Subject: [PATCH] Version 3.2.0 --- CHANGELOG.md | 8 ++++++++ README.md | 5 ++++- package.json | 4 ++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c7ad98a..133d81bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change log +## [3.2.0] - 2019-04-17 + +* Add command `delete` (#106, thanks @howardcvalve) +* Ignore changelist with prefix (#131, thanks @forgottenski) +* Hide non workspace files (#134, thanks @tw1nk) +* Option to hide shelved files and empty changelists +* Throttle all perforce commands via bottleneck (#137, #147, thanks @pjdanfor) + ## [3.1.0] - 2017-12-17 * Add `Revert Unchanged` for file and changelist (#77) diff --git a/README.md b/README.md index 2c407294..e59baa52 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,10 @@ Perforce integration for Visual Studio Code |`perforce.scmFileChanges` |`boolean` |Open file changes when selected in SCM Explorer |`perforce.ignoredChangelistPrefix` |`string` |Specifies the prefix of the changelists to be ignored. |`perforce.hideNonWorkspaceFiles` |`boolean` |Hide non workspace files in the SCM Explorer. Default changelist only submits files that are opened in current workspace. Warning: If you submit other changelists than the default it will submit files that are not visible. - +|`perforce.hideShelvedFiles` |`boolean` |Hide shelved files in the SCM Explorer. +|`perforce.hideEmptyChangelists` |`boolean` |Hide changelists with no file in the SCM Explorer. +|  +|`perforce.bottleneck` |`object` |**Experimental** Throttle all perforce commands via bottleneck. ## Activation diff --git a/package.json b/package.json index 677b2db3..3b7290fe 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "perforce", "displayName": "Perforce for VS Code", "description": "Perforce integration with VS Code's SCM features", - "version": "3.1.0", + "version": "3.2.0", "publisher": "slevesque", "license": "LICENSE.md", "categories": [ @@ -635,7 +635,7 @@ "@types/node": "^8.0.8", "@types/tmp": "^0.0.33", "typescript": "^2.0.3", - "vscode": "^1.1.6" + "vscode": "^1.1.33" }, "scripts": { "vscode:prepublish": "tsc -p ./",