Skip to content

Commit 11eacb2

Browse files
committed
Preps v5.0.0
1 parent 543d392 commit 11eacb2

File tree

5 files changed

+22
-25
lines changed

5 files changed

+22
-25
lines changed

CHANGELOG.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ 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-beta.2] - 2017-09-12
7+
## [5.0.0] - 2017-09-12
88
### Added
99
- Adds an all-new `GitLens` custom view to the Explorer activity
1010

1111
- `Repository View` - provides a full repository explorer
1212

13-
![GitLens Repository view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-git-custom-view-repository.png)
13+
![GitLens Repository view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-custom-view-repository.png)
1414

1515
- `Repository Status` node — provides the status of the repository
1616
- Provides the name of the current branch, its upstream tracking branch (if available), and its upstream status (if available)
@@ -49,7 +49,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
4949

5050
- `History View` - provides the revision history of the active file
5151

52-
![GitLens History view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-git-custom-view-history.png)
52+
![GitLens History view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-custom-view-history.png)
5353

5454
- Automatically updates to track the active editor
5555
- Provides a context menu with `Open File`, `Open File in Remote`, and `Refresh` commands
@@ -60,7 +60,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
6060

6161
- Adds all-new interactivity to the hover annotations
6262

63-
![Hover Annotations](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-line-blame-annotations.png)
63+
![Hover Annotations](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-line-blame-annotations.png)
6464

6565
- Adds the following command-links to the `details` hover annotation
6666
- Clicking the commit id will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
@@ -165,9 +165,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
165165
## [4.3.0] - 2017-07-03
166166
## Added
167167
- Adds `Git Stashes` custom view to the Explorer activity
168-
169-
![Git Stashes view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-git-stashes.png)
170-
171168
- Shows all of the stashed changes in the repository
172169
- Provides toolbar buttons to `Stash Changes` and `Refresh`
173170
- Provides a context menu with `Apply Stashed Changes` and `Delete Stashed Changes` commands - both require a confirmation

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![](https://vsmarketplacebadge.apphb.com/version/eamodio.gitlens.svg)](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens)
22
[![](https://vsmarketplacebadge.apphb.com/installs/eamodio.gitlens.svg)](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens)
33
[![](https://vsmarketplacebadge.apphb.com/rating/eamodio.gitlens.svg)](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens)
4-
[![Chat at https://vscode-gitlens.slack.com/](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/chat-badge.png)](https://join.slack.com/t/vscode-gitlens/shared_invite/MjIxOTgxNDE3NzM0LTE1MDE2Nzk1MTgtMjkwMmZjMzcxNQ)
4+
[![Chat at https://vscode-gitlens.slack.com/](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/chat-badge.png)](https://join.slack.com/t/vscode-gitlens/shared_invite/MjIxOTgxNDE3NzM0LTE1MDE2Nzk1MTgtMjkwMmZjMzcxNQ)
55

66
# GitLens
77

@@ -10,27 +10,27 @@ GitLens **supercharges** the built-in Visual Studio Code Git capabilities. It he
1010
GitLens provides an unobtrusive blame annotation at the end of the current line, a status bar item showing the commit information (author and date, by default) of the current line, code lens showing the most recent commit and # of authors of the file and/or code block, and many commands for exploring commits and histories, comparing and navigating revisions, stash access, repository status, and more. GitLens is also [highly customizable](#extension-settings) to meet your specific needs — find code lens intrusive or the current line blame annotation distracting — no problem, it is easy to [turn them off or change how they behave](#extension-settings).
1111

1212
### Preview — featuring blame annotations, code lens, status bar details, quick pick menus for navigation and exploration, compare with previous, and more
13-
![GitLens preview](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/gitlens-preview.gif)
13+
![GitLens preview](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/gitlens-preview.gif)
1414

1515
## Features
1616

1717
### Git Blame Annotations
1818

1919
- Adds an unobtrusive, highly [customizable](#line-blame-annotation-settings) and [themeable](#theme-settings), **Git blame annotation** to the end of the current line ([optional](#line-blame-annotation-settings), on by default)
2020

21-
![Line Blame Annotation](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-line-blame-annotation.png)
21+
![Line Blame Annotation](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/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)
2424
- Clicking the commit id will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
2525
- 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)
2626
- Clicking on `Changes` will run the `Compare File Revisions` command (`gitlens.diffWith`)
2727
- Clicking the current and previous commit ids will run the `Show Commit Details` command (`gitlens.showQuickCommitDetails`)
2828

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

3131
- Adds on-demand, beautiful, highly [customizable](#file-blame-annotation-settings) and [themeable](#theme-settings), **Git blame annotations** of the whole file
3232

33-
![File Blame Annotation](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-file-blame-annotations.png)
33+
![File Blame Annotation](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-file-blame-annotations.png)
3434
- Choose between `gutter` (default) and `hover` [annotation styles](#file-blame-annotation-settings)
3535
- Contains the commit message and date, by [default](#file-blame-annotation-settings)
3636
- Adds a `details` hover annotation to the line's annotation, which provides more commit details ([optional](#file-blame-annotation-settings), on by default)
@@ -41,7 +41,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
4141

4242
- Adds [customizable](#status-bar-settings) **blame information** about the current line to the **status bar** ([optional](#status-bar-settings), on by default)
4343

44-
![Status Bar Blame](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-status-bar.png)
44+
![Status Bar Blame](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-status-bar.png)
4545
- Contains the commit author and date, by [default](#status-bar-settings)
4646
- Clicking the status bar item will, by [default](#status-bar-settings), show a **commit details quick pick menu** with commands for comparing, navigating and exploring commits, and more
4747
- Provides [customizable](#status-bar-settings) click behavior — choose between one of the following
@@ -77,7 +77,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
7777

7878
- Adds **code lens** to the top of the file and on code blocks ([optional](#code-lens-settings), on by default)
7979

80-
![Git Code Lens](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-code-lens.png)
80+
![Git Code Lens](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-code-lens.png)
8181
- **Recent Change** — author and date of the most recent commit for the file or code block
8282
- Clicking the code lens will, by [default](#code-lens-settings), show a **commit file details quick pick menu** with commands for comparing, navigating and exploring commits, and more
8383
- **Authors** — number of authors of the file or code block and the most prominent author (if there is more than one)
@@ -122,7 +122,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
122122

123123
- `Repository View` - provides a full repository explorer
124124

125-
![GitLens Repository view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-git-custom-view-repository.png)
125+
![GitLens Repository view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-custom-view-repository.png)
126126

127127
- `Repository Status` node — provides the status of the repository
128128
- Provides the name of the current branch, its upstream tracking branch (if available), and its upstream status (if available)
@@ -162,7 +162,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
162162

163163
- `History View` - provides the revision history of the active file
164164

165-
![GitLens History view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-git-custom-view-history.png)
165+
![GitLens History view](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-git-custom-view-history.png)
166166

167167
- Automatically updates to track the active editor
168168
- Provides a context menu with `Open File`, `Open File in Remote`, and `Refresh` commands
@@ -183,7 +183,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
183183

184184
- Adds a `Show Current Branch History` command (`gitlens.showQuickRepoHistory`) with a shortcut of `shift+alt+h` to show a paged **branch history quick pick menu** of the current branch for exploring its commit history
185185

186-
![Branch History Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-branch-history.png)
186+
![Branch History Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-branch-history.png)
187187

188188
- Provides entries to `Show Commit Search` and `Open Branch in <remote-service>` when available
189189
- Navigate back to the previous quick pick menu via `alt+left arrow`, if available
@@ -194,15 +194,15 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
194194

195195
- Adds a `Show File History` command (`gitlens.showQuickFileHistory`) to show a paged **file history quick pick menu** of the active file for exploring its commit history
196196

197-
![File History Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-file-history.png)
197+
![File History Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-file-history.png)
198198

199199
- Provides entries to `Show Branch History` and `Open File in <remote-service>` when available
200200
- Navigate back to the previous quick pick menu via `alt+left arrow`, if available
201201
- Navigate pages via `alt+,` and `alt+.` to go backward and forward respectively
202202

203203
- Adds a `Show Commit Details` command (`gitlens.showQuickCommitDetails`) to show a **commit details quick pick menu** of the most recent commit of the active file
204204

205-
![Commit Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-commit-details.png)
205+
![Commit Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-commit-details.png)
206206

207207
- Quickly see the set of files changed in the commit, complete with status indicators for adds, changes, renames, and deletes
208208
- Provides entries to `Copy to Clipboard`, `Directory Compare`, `Open Changed Files`, `Open File in <remote-service>` when available, and more
@@ -212,15 +212,15 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
212212

213213
- 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
214214

215-
![Commit File Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-commit-file-details.png)
215+
![Commit File Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-commit-file-details.png)
216216

217217
- Provides entries to `Show Commit Details`, `Show File History`, `Compare File with...`, `Copy to Clipboard`, `Open File`, `Open File in <remote-service>` when available, and more
218218
- Navigate back to the previous quick pick menu via `alt+left arrow`, if available
219219
- 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
220220

221221
- Adds a `Show Repository Status` command (`gitlens.showQuickRepoStatus`) with a shortcut of `alt+s` to show a **repository status quick pick menu** for visualizing the current repository status
222222

223-
![Repository Status Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-repo-status.png)
223+
![Repository Status Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-repo-status.png)
224224

225225
- Quickly see upstream status (if an Git upstream is configured) — complete with ahead and behind information
226226
- If you are ahead of the upstream, an entry will be shown with the number of commits ahead. Choosing it will show a limited **branch history quick pick menu** containing just the commits ahead of the upstream
@@ -232,14 +232,14 @@ GitLens provides an unobtrusive blame annotation at the end of the current line,
232232

233233
- Adds a `Show Stashed Changes` command (`gitlens.showQuickStashList`) to show a **stashed changes quick pick menu** for exploring your repository stash history
234234

235-
![Stashed Changes Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-stash-list.png)
235+
![Stashed Changes Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-stash-list.png)
236236

237237
- Provides entries to `Stash Changes`
238238
- Navigate back to the previous quick pick menu via `alt+left arrow`, if available
239239

240240
- Choosing a stash entry shows a **stash details quick pick menu** which is very similar to the **commit details quick pick menu** above
241241

242-
![Stash Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/develop/images/screenshot-stash-details.png)
242+
![Stash Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-stash-details.png)
243243

244244
- Quickly see the set of files changed in the stash, complete with status indicators for adds, changes, renames, and deletes
245245
- Provides entries to `Copy Message to Clipboard`, `Directory Compare`, and `Open Changed Files`

images/screenshot-git-stashes.png

-22.8 KB
Binary file not shown.

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-beta.2",
3+
"version": "5.0.0",
44
"author": {
55
"name": "Eric Amodio",
66
"email": "[email protected]"

0 commit comments

Comments
 (0)