Skip to content

Commit 62580da

Browse files
committed
Preps v5.0.0-beta
1 parent 6b97c10 commit 62580da

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [5.0.0-alpha.2] - 2017-09-03
7+
## [5.0.0-beta] - 2017-09-11
88
### Added
99
- Adds an all-new `GitLens` custom view to the Explorer activity
1010

@@ -57,6 +57,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
5757
- Quickly switch between views using the `Switch to Repository View` or `Switch to History View` commands
5858
- Provides toolbar commands to `Search Commits`, `Switch to Repository View` or `Switch to History View`, and `Refresh`
5959

60+
- Adds command-links to the `details` hover annotation
61+
- Clicking the commit id will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
62+
- Adds command-links to the `changes` hover annotation
63+
- Clicking on `Changes` will run the `Compare File Revisions` command (`gitlens.diffWith`)
64+
- Clicking the current and previous commit ids will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
65+
- Adds support for custom remote services - see [#120](https://github.com/eamodio/vscode-gitlens/issues/120)
66+
- Adds `Compare File Revisions` command (`gitlens.diffWith`) - compares the specified file revisions
6067
- Adds `Open Branches in Remote` command (`gitlens.openBranchesInRemote`) - opens the branches in the supported remote service
6168
- Adds `Stash Changes` command (`gitlens.stashSave`) to the source control group context menu -- can now stash a group of files
6269
- Adds `Stash Changes` command (`gitlens.stashSave`) to the source control resource context menu -- can now stash individual files (works with multi-select too!)
@@ -87,6 +94,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
8794
### Fixed
8895
- Fixes an issue where remote branches couldn't be opened properly in their remote service
8996
- Fixes [#130](https://github.com/eamodio/vscode-gitlens/issues/130) - First-run "Thank you for choosing GitLens! [...]" info message shown on every start up
97+
- Fixes [#120](https://github.com/eamodio/vscode-gitlens/issues/120) - Feature Request: "Open in Remote" support for custom repositories
98+
- Fixes an issue where sometimes diffs (via branch name) wouldn't open properly
9099

91100
## [4.4.3] - 2017-08-30
92101
## Fixed
@@ -158,7 +167,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
158167

159168
## [4.2.0] - 2017-06-27
160169
## Added
161-
- Adds `Compare File with Revision...` command (`gitlens.diffWithRevision`) - compare the active file with the selected revision of the same file
170+
- Adds `Compare File with Revision...` command (`gitlens.diffWithRevision`) - compares the active file with the selected revision of the same file
162171
- Adds `Open Changed Files` command (`gitlens.openChangedFiles`) to the source control group context menu
163172
- Adds `Close Unchanged Files` command (`gitlens.closeUnchangedFiles`) to the source control group context menu
164173
- Adds `Open File in Remote` command (`gitlens.openFileInRemote`) to the source control resource context menu

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
2121
![Line Blame Annotation](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-line-blame-annotation.png)
2222
- Contains the author, date, and message of the line's most recent commit, by [default](#line-blame-annotation-settings)
2323
- Adds a `details` hover annotation to the current line annotation, which provides more commit details ([optional](#line-blame-annotation-settings), on by default)
24+
- Clicking the commit id will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
2425
- Adds a `changes` (diff) hover annotation to the current line annotation, which provides **instant** access to the line's previous version ([optional](#line-blame-annotation-settings), on by default)
26+
- Clicking on `Changes` will run the `Compare File Revisions` command (`gitlens.diffWith`)
27+
- Clicking the current and previous commit ids will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
2528

2629
![Line Blame Annotations](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-line-blame-annotations.png)
2730

@@ -31,6 +34,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
3134
- Choose between `gutter` (default) and `hover` [annotation styles](#file-blame-annotation-settings)
3235
- Contains the commit message and date, by [default](#file-blame-annotation-settings)
3336
- Adds a `details` hover annotation to the line's annotation, which provides more commit details ([optional](#file-blame-annotation-settings), on by default)
37+
- Clicking the commit id will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
3438
- Adds a `heatmap` (age) indicator to the gutter annotations (on right edge by [default](#file-blame-annotation-settings)), which provides an easy, at-a-glance way to tell the age of a line ([optional](#file-blame-annotation-settings), on by default)
3539
- Indicator ranges from bright yellow (newer) to dark brown (older)
3640
- Press `Escape` to quickly toggle the annotations off
@@ -61,7 +65,10 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
6165
- Adds on-demand, [customizable](#file-recent-changes-annotation-settings) and [themeable](#theme-settings), **recent changes annotations** of the whole file
6266
- Highlights all of lines changed in the most recent commit
6367
- Adds a `details` hover annotation to each line, which provides more commit details ([optional](#file-blame-annotation-settings), on by default)
68+
- Clicking the commit id will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
6469
- Adds a `changes` (diff) hover annotation to each line, which provides **instant** access to the line's previous version ([optional](#file-recent-changes-annotation-settings), on by default)
70+
- Clicking on `Changes` will run the `Compare File Revisions` command (`gitlens.diffWith`)
71+
- Clicking the current and previous commit ids will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
6572
- Press `Escape` to quickly toggle the annotations off
6673

6774
- Adds `Toggle Recent File Changes Annotations` command (`gitlens.toggleFileRecentChanges`) to toggle the recent changes annotations on and off
@@ -343,6 +350,12 @@ GitLens is highly customizable and provides many configuration settings to allow
343350
|`gitlens.gitExplorer.stashFormat`|Specifies the format of stashed changes in the `GitLens` custom view<br />Available tokens<br /> ${id} - commit id<br /> ${author} - commit author<br /> ${message} - commit message<br /> ${ago} - relative commit date (e.g. 1 day ago)<br /> ${date} - formatted commit date (format specified by `gitlens.statusBar.dateFormat`)<br /> ${authorAgo} - commit author, relative commit date<br />See https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting
344351
|`gitlens.gitExplorer.stashFileFormat`|Specifies the format of a stashed file in the `GitLens` custom view<br />Available tokens<br /> ${file} - file name<br /> ${filePath} - file name and path<br /> ${path} - file path
345352

353+
### GitLens Custom Remotes Settings
354+
355+
|Name | Description
356+
|-----|------------
357+
|`gitlens.remotes`|Specifies the custom remote services (code-hosting)"
358+
346359
### Status Bar Settings
347360

348361
|Name | Description

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitlens",
3-
"version": "5.0.0-alpha.2",
3+
"version": "5.0.0-beta",
44
"author": {
55
"name": "Eric Amodio",
66
"email": "[email protected]"

0 commit comments

Comments
 (0)