From be682c5def0508a63a28f6de5123a969143f8e8a Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 3 Jul 2017 02:30:06 -0400 Subject: [PATCH] Preps v4.3.0 --- CHANGELOG.md | 12 ++++++++++++ README.md | 19 +++++++++++++------ package.json | 2 +- 3 files changed, 26 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de92b56..6bacb33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [4.3.0] - 2017-07-03 +## Added +- Adds `Git Stashes` view to the Explorer activity + + ![Git Stashes view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-stashes.png) + + - Shows all of the stashed changes in the repository + - Provides toolbar buttons to `Stash Changes` and `Refresh` + - Provides a context menu with `Apply Stashed Changes` and `Delete Stashed Changes` commands — both require a confirmation + - Expand each stash to quickly see the set of files changed, complete with status indicators for adds, changes, renames, and deletes + - Provides a context menu with `Open Changes`, `Open File`, `Open Stashed File`, `Open File in Remote`, and `Compare File with Working Tree` commands + ## [4.2.0] - 2017-06-27 ## Added - Adds `Compare File with Revision...` command (`gitlens.diffWithRevision`) - compare the active file with the selected revision of the same file diff --git a/README.md b/README.md index 02b620c..8e8003d 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,16 @@ GitLens provides an unobtrusive blame annotation at the end of the current line, ### Navigate and Explore +- Adds a `Git Stashes` view to the Explorer activity + + ![Git Stashes view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-stashes.png) + + - Shows all of the stashed changes in the repository + - Provides toolbar buttons to `Stash Changes` and `Refresh` + - Provides a context menu with `Apply Stashed Changes` and `Delete Stashed Changes` commands — both require a confirmation + - Expand each stash to quickly see the set of files changed, complete with status indicators for adds, changes, renames, and deletes + - Provides a context menu with `Open Changes`, `Open File`, `Open Stashed File`, `Open File in Remote`, and `Compare File with Working Tree` commands + - Adds a `Search Commits` command (`gitlens.showCommitSearch`) with a shortcut of `alt+/` to search for commits by message, author, file(s), or commit id - Adds commands to open files, commits, branches, and the repository in the supported remote services, currently **BitBucket, GitHub, GitLab, and Visual Studio Team Services** — only available if a Git upstream service is configured in the repository @@ -146,8 +156,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line, - Provides entries to `Copy to Clipboard`, `Directory Compare`, `Open Changed Files`, `Open File in ` when available, and more - Navigate back to the previous quick pick menu via `alt+left arrow`, if available - Use the `alt+right arrow` shortcut on an entry to execute it without closing the quick pick menu, if possible — commands that open windows outside of VS Code will still close the quick pick menu unless [`"gitlens.advanced.quickPick.closeOnFocusOut": false`](#extension-settings) is set - - Use the `alt+right arrow` shortcut on a file entry in the `Changed Files` section to preview the current revision of the while leaving the quick pick menu open - - NOTE: Once [vscode issue #10568](https://github.com/Microsoft/vscode/issues/10568) is resolved this will change to preview the comparison of the current revision with the previous one + - Use the `alt+right arrow` shortcut on a file entry in the `Changed Files` section to preview the comparison of the current revision with the previous one - Adds a `Show Commit File Details` command (`gitlens.showQuickCommitFileDetails`) with a shortcut of `alt+c` to show a **file commit details quick pick menu** of the most recent commit of the active file @@ -167,8 +176,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line, - Quickly see all working changes, both staged and unstaged, complete with status indicators for adds, changes, renames, and deletes - Provides entries to `Show Stashed Changes`, `Open Changed Files`, and `Close Unchanged Files` - Use the `alt+right arrow` shortcut on an entry to execute it without closing the quick pick menu, if possible — commands that open windows outside of VS Code will still close the quick pick menu unless [`"gitlens.advanced.quickPick.closeOnFocusOut": false`](#extension-settings) is set - - Use the `alt+right arrow` shortcut on a file entry in the `Staged Files` or `Unstaged Files` sections to preview the working file while leaving the quick pick menu open - - NOTE: Once [vscode issue #10568](https://github.com/Microsoft/vscode/issues/10568) is resolved this will change to preview the comparison of the working file with the previous revision + - Use the `alt+right arrow` shortcut on a file entry in the `Staged Files` or `Unstaged Files` sections to preview the comparison of the working file with the previous revision - Adds a `Show Stashed Changes` command (`gitlens.showQuickStashList`) to show a **stashed changes quick pick menu** for exploring your repository stash history @@ -186,8 +194,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line, - Provides entries to `Apply Stashed Changes` and `Delete Stashed Changes` — both require a confirmation - Navigate back to the previous quick pick menu via `alt+left arrow`, if available - Use the `alt+right arrow` shortcut on an entry to execute it without closing the quick pick menu, if possible — commands that open windows outside of VS Code will still close the quick pick menu unless [`"gitlens.advanced.quickPick.closeOnFocusOut": false`](#extension-settings) is set - - Use the `alt+right arrow` shortcut on a file entry in the `Changed Files` section to preview the current revision of the while leaving the quick pick menu open - - NOTE: Once [vscode issue #10568](https://github.com/Microsoft/vscode/issues/10568) is resolved this will change to preview the comparison of the current revision with the previous one + - Use the `alt+right arrow` shortcut on a file entry in the `Changed Files` section to preview the comparison of the current revision with the previous one - Adds a `Show Last Opened Quick Pick` command (`gitlens.showLastQuickPick`) with a shortcut of `alt+-` to quickly get back to where you were when the last GitLens quick pick menu closed diff --git a/package.json b/package.json index 0ffd62b..2e5b5ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitlens", - "version": "4.2.0", + "version": "4.3.0", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com"