From aff8aff0111a8f52d2a204bd4e96544d90d0db82 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Tue, 28 Mar 2017 18:48:22 -0400 Subject: [PATCH] Preps v3.1.0 --- CHANGELOG.md | 18 +++++++++++++----- README.md | 5 +++++ package.json | 2 +- 3 files changed, 19 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81502f5..cf2eb30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ ## Release Notes +### 3.1.0 +- Adds `Show Stashed Changes` command (`gitlens.showQuickStashList`) to open a quick pick of all the stashed changes +- Adds insiders `Stash Changes` option to stashed changes quick pick -- enabled via `"gitlens.insiders": true` +- Adds insiders `Stash Unstaged Changes` option to stashed changes quick pick +- Adds insiders `Apply Stashed Changes` command (`gitlens.stashApply`) to apply the selected stashed changes to the working tree +- Adds insiders `Stash Changes` command (`gitlens.stashSave`) to stash any working tree changes +- Fixes incorrect counts in upstream status + ### 3.0.5 -- Adds additional experimental support for GitLab, Bitbucket, and Visual Studio Team Services to the `Open x in Remote` commands and quick picks -- need to enable it via `"gitlens.insiders": true` -- Adds experimental line support to `Open File in Remote` command (`gitlens.openFileInRemote`) +- Adds additional insiders support for GitLab, Bitbucket, and Visual Studio Team Services to the `Open x in Remote` commands and quick picks -- enabled via `"gitlens.insiders": true` +- Adds insiders line support to `Open File in Remote` command (`gitlens.openFileInRemote`) - Adds original file name for renamed files to the repository status and commit details quick pick - Fixes [#56](https://github.com/eamodio/vscode-gitlens/issues/56) - Handle file names with spaces @@ -22,9 +30,9 @@ - Adds basic telemetry -- honors the vscode telemetry configuration setting ### 3.0.0 -- Adds experimental support for `Open in GitHub` to the relevant quick picks -- need to enable it via `"gitlens.insiders": true` -- Adds experimental `Open Line Commit in Remote` command (`gitlens.openCommitInRemote`) to open the current commit in the remote service (currently only GitHub) -- Adds experimental `Open File in Remote` command (`gitlens.openFileInRemote`) to open the current file in the remote service (currently only GitHub) +- Adds insiders support for `Open in GitHub` to the relevant quick picks -- enabled via `"gitlens.insiders": true` +- Adds insiders `Open Line Commit in Remote` command (`gitlens.openCommitInRemote`) to open the current commit in the remote service (currently only GitHub) +- Adds insiders `Open File in Remote` command (`gitlens.openFileInRemote`) to open the current file in the remote service (currently only GitHub) - Adds an update notification for feature releases - Adds `Show Branch History` command (`gitlens.showQuickBranchHistory`) to show the history of the selected branch - Adds `Show Last Opened Quick Pick` command (`gitlens.showLastQuickPick`) to re-open the previously opened quick pick - helps to get back to previous context diff --git a/README.md b/README.md index a534b2f..6635d4e 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,10 @@ Provides Git CodeLens information (most recent commit, # of authors), on-demand - Provides a Git **blame history explorer** (peek style ui) to visualize the blame history of a file or block - Provides many configuration settings to allow the **customization** of almost all features +> NOTE: GitLens only works with opened folders (not single files). + +> Add `"gitlens.insiders": true` to your settings to join the insiders channel and get access to upcoming features. + ## Feature Previews #### Featuring CodeLens and commands, toggling inline blame annotations, and showing quick pick ui and commands ![GitLens preview 1](https://raw.githubusercontent.com/eamodio/vscode-git-codelens/master/images/gitlens-preview1.gif) @@ -57,6 +61,7 @@ Provides Git CodeLens information (most recent commit, # of authors), on-demand |`gitlens.statusBar.command`|"Specifies the command executed when the blame status bar item is clicked. `gitlens.toggleBlame` - toggles blame annotations. `gitlens.showBlameHistory` - opens the blame history explorer. `gitlens.showFileHistory` - opens the file history explorer. `gitlens.diffWithPrevious` - compares the current committed file with the previous commit. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.showQuickFileHistory` - shows a repository history quick pick |`gitlens.statusBar.date`|Specifies whether and how the commit date will be shown in the blame status bar. `off` - no date. `relative` - relative date (e.g. 1 day ago). `absolute` - date format specified by `gitlens.statusBar.dateFormat` |`gitlens.statusBar.dateFormat`|Specifies the date format of how absolute dates will be shown in the blame status bar. See https://momentjs.com/docs/#/displaying/format/ for valid formats +|`gitlens.insiders`|Opts into the insiders channel -- provides access to upcoming features ## Known Issues diff --git a/package.json b/package.json index 855e01f..4e73ebd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitlens", - "version": "3.0.5", + "version": "3.1.0", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com"