Browse Source

Preps v9.7.4

main
Eric Amodio 5 years ago
parent
commit
92c1de6eb2
5 changed files with 148 additions and 1260 deletions
  1. +7
    -2
      CHANGELOG.md
  2. +4
    -4
      README.md
  3. +1
    -1
      package.json
  4. +2
    -1
      src/webviews/apps/scss/main.scss
  5. +134
    -1252
      src/webviews/apps/welcome/index.html

+ 7
- 2
CHANGELOG.md View File

@ -4,7 +4,7 @@ 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/). The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
## [9.7.4] - 2019-05-15
## Added ## Added
@ -23,7 +23,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Fixes issues with the _Show More Actions_ button on the _Details_ hover not working with renamed files - Fixes issues with the _Show More Actions_ button on the _Details_ hover not working with renamed files
- Fixes issues with the _Open File_, _Open Files_, _Open All Changes with Working Tree_, and _Apply Changes_ commands in the views not working with renamed files - Fixes issues with the _Open File_, _Open Files_, _Open All Changes with Working Tree_, and _Apply Changes_ commands in the views not working with renamed files
- Fixes issues with the _Open File_, _Open Files_, and _Apply Changes_ command in the quick pick menus not working with renamed files
- Fixes issues with the _Open File_, _Open Files_, and _Apply Changes_ commands in the quick pick menus not working with renamed files
- Fixes issues with the _Show Stashed Changes_ (`gitlens.showQuickStashList`) command and multiple repositories - Fixes issues with the _Show Stashed Changes_ (`gitlens.showQuickStashList`) command and multiple repositories
## [9.7.3] - 2019-05-11 ## [9.7.3] - 2019-05-11
@ -2879,6 +2879,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Initial release but still heavily a work in progress. - Initial release but still heavily a work in progress.
[9.7.4]: https://github.com/eamodio/vscode-gitlens/compare/v9.7.3...eamodio:v9.7.4
[9.7.3]: https://github.com/eamodio/vscode-gitlens/compare/v9.7.2...eamodio:v9.7.3
[9.7.2]: https://github.com/eamodio/vscode-gitlens/compare/v9.7.1...eamodio:v9.7.2
[9.7.1]: https://github.com/eamodio/vscode-gitlens/compare/v9.7.0...eamodio:v9.7.1
[9.7.0]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.3...eamodio:v9.7.0
[9.6.3]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.2...eamodio:v9.6.3 [9.6.3]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.2...eamodio:v9.6.3
[9.6.2]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.1...eamodio:v9.6.2 [9.6.2]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.1...eamodio:v9.6.2
[9.6.1]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.0...eamodio:v9.6.1 [9.6.1]: https://github.com/eamodio/vscode-gitlens/compare/v9.6.0...eamodio:v9.6.1

+ 4
- 4
README.md View File

@ -285,7 +285,7 @@ The repositories view provides the following features,
- **Branches** — lists the local branches in the repository - **Branches** — lists the local branches in the repository
- An inline toolbar provides quick access to the _Open Branches on Remote_ (if available) command - An inline toolbar provides quick access to the _Open Branches on Remote_ (if available) command
- Provides the name of each branch, an indicator (check-mark) of the branch is the current one, and [optionally](#repositories-view-settings- 'Jump to the Repositories view settings') shows its remote tracking branch and status (if available)
- Provides the name of each branch, an indicator (check-mark) if the branch is the current one, and [optionally](#repositories-view-settings- 'Jump to the Repositories view settings') shows its remote tracking branch and status (if available)
- Indicator dots on each branch icon denote the following: - Indicator dots on each branch icon denote the following:
- _None_ — no upstream or up-to-date with the upstream - _None_ — no upstream or up-to-date with the upstream
- _Green_ — ahead of the upstream - _Green_ — ahead of the upstream
@ -318,7 +318,7 @@ The repositories view provides the following features,
- **Incoming Activity** — lists the recent incoming activity (merges and pulls) to your local repository (experimental, enabled via `"gitlens.insiders": true`) - **Incoming Activity** — lists the recent incoming activity (merges and pulls) to your local repository (experimental, enabled via `"gitlens.insiders": true`)
- Provides the activity command, branch (if available), and date
- Provides the command, branch (if available), and date of each activity
- A context menu provides access to the _Refresh_ command - A context menu provides access to the _Refresh_ command
- Each activity expands to list the commits added by the command - Each activity expands to list the commits added by the command
- An inline toolbar provides quick access to the _Compare with HEAD_ (`alt-click` for _Compare with Working Tree_), _Copy Commit ID to Clipboard_ (`alt-click` for _Copy Commit Message to Clipboard_), and _Open Commit on Remote_ (if available) commands - An inline toolbar provides quick access to the _Compare with HEAD_ (`alt-click` for _Compare with Working Tree_), _Copy Commit ID to Clipboard_ (`alt-click` for _Copy Commit Message to Clipboard_), and _Open Commit on Remote_ (if available) commands
@ -329,7 +329,7 @@ The repositories view provides the following features,
- **Remotes** — lists the remotes in the repository - **Remotes** — lists the remotes in the repository
- Provides the name of each remote, an indicator of the direction of the remote (fetch, push, both), remote service (if applicable), and repository path
- Provides the name of each remote, an indicator of the remote's direction (fetch, push, both), remote service (if applicable), and repository path
- An inline toolbar provides quick access to the _Fetch_, and _Open Repository on Remote_ (if available) commands - An inline toolbar provides quick access to the _Fetch_, and _Open Repository on Remote_ (if available) commands
- A context menu provides access to more common repository and remote commands - A context menu provides access to more common repository and remote commands
- Each remote expands to list its remote branches - Each remote expands to list its remote branches
@ -338,7 +338,7 @@ The repositories view provides the following features,
- **Stashes** — lists the stashed changes in the repository - **Stashes** — lists the stashed changes in the repository
- An inline toolbar provides quick access to the _Stash All Changes_, and _Apply Stash Changes_ commands - An inline toolbar provides quick access to the _Stash All Changes_, and _Apply Stash Changes_ commands
- Provides the name of each stashed changes, the date, and an indicator (+x ~x -x) of the changes
- Provides the name of each set of stashed changes, the date, and an indicator (+x ~x -x) of the changes
- An inline toolbar provides quick access to the _Compare with HEAD_ (`alt-click` for _Compare with Working Tree_), _Apply Stashed Changes_, and _Delete Stashed Changes_ commands - An inline toolbar provides quick access to the _Compare with HEAD_ (`alt-click` for _Compare with Working Tree_), _Apply Stashed Changes_, and _Delete Stashed Changes_ commands
- A context menu provides access to more common stashed changes commands - A context menu provides access to more common stashed changes commands
- Each stashed changes expands to list the set of stashed files, complete with status indicators for adds, changes, renames, and deletes - Each stashed changes expands to list the set of stashed files, complete with status indicators for adds, changes, renames, and deletes

+ 1
- 1
package.json View File

@ -2,7 +2,7 @@
"name": "gitlens", "name": "gitlens",
"displayName": "GitLens — Git supercharged", "displayName": "GitLens — Git supercharged",
"description": "Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more", "description": "Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more",
"version": "9.7.3",
"version": "9.7.4",
"author": { "author": {
"name": "Eric Amodio", "name": "Eric Amodio",
"email": "eamodio@gmail.com" "email": "eamodio@gmail.com"

+ 2
- 1
src/webviews/apps/scss/main.scss View File

@ -404,7 +404,8 @@ ul {
} }
.about { .about {
font-size: 1em;
font-size: 1.2em;
font-weight: 200;
color: var(--color-foreground--75); color: var(--color-foreground--75);
margin: 3em 1em; margin: 3em 1em;

+ 134
- 1252
src/webviews/apps/welcome/index.html
File diff suppressed because it is too large
View File


Loading…
Cancel
Save