Skip to content

Commit 4b92070

Browse files
committed
Preps v9.3
1 parent 84536d2 commit 4b92070

File tree

5 files changed

+70
-8
lines changed

5 files changed

+70
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +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-
## [Unreleased]
7+
## [9.3.0] - 2019-01-02
88

99
### Added
1010

1111
- Adds favoriting of repositories and branches in the _Repositories_ view to allow for better (user-customized) sorting
12-
- Adds _Set as Default_ and _Unset as Default_ commands to remotes in the _Repositories_ view to specify the default remote selection when using the _Open \* in Remote_ commands — closes [#504](https://github.com/eamodio/vscode-gitlens/issues/504)
12+
- Adds the ability to specify a default remote selection when using the _Open \* in Remote_ commands — closes [#504](https://github.com/eamodio/vscode-gitlens/issues/504)
13+
- Adds _Set as Default_ and _Unset as Default_ commands to remotes in the _Repositories_ view
1314
- Adds the ability to turn on file annotations (blame, heatmap, and recent changes) via user-defined modes — closes [#542](https://github.com/eamodio/vscode-gitlens/issues/542)
1415
- Adds the ability to stage and unstage files by folders in the _Repositories_ view — closes [#599](https://github.com/eamodio/vscode-gitlens/issues/599) thanks to [PR #600](https://github.com/eamodio/vscode-gitlens/pull/600) by Tony Brix ([@UziTech](https://github.com/UziTech))
1516
- Adds _Stage All Changes_ and _Unstage All Changes_ commands to folders in the _Repositories_ view

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-2018 Eric Amodio
3+
Copyright (c) 2016-2019 Eric Amodio
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gitlens",
33
"displayName": "GitLens — Git supercharged",
44
"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",
5-
"version": "9.2.4",
5+
"version": "9.3.0",
66
"author": {
77
"name": "Eric Amodio",
88
"email": "[email protected]"

src/ui/welcome/index.html

Lines changed: 63 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</head>
66

77
<body class="preload">
8-
<canvas class="snow"></canvas>
8+
<!-- <canvas class="snow"></canvas>
99
<div class="snow__trigger">
1010
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 125">
1111
<path
@@ -18,7 +18,7 @@
1818
d="M64.66 84.31c-17.4 0-35.17-1.38-28.93-25.06.37 13.72 29 12.57 29 12.57s30.12.28 29.88-11.27C97.69 85.43 82.06 84.3 64.66 84.3z"
1919
/>
2020
</svg>
21-
</div>
21+
</div> -->
2222
<div class="container">
2323
<div class="content">
2424
<header>
@@ -130,6 +130,67 @@ <h2 class="changelog__title">
130130

131131
<ul class="changelog__list">
132132
<li>
133+
<span class="changelog__badge changelog__badge--version">9.3</span>
134+
<span class="changelog__date">JAN &nbsp;2019</span>
135+
<div class="changelog__details"></div>
136+
</li>
137+
<li>
138+
<span class="changelog__badge changelog__badge--added">NEW</span>Adds favoriting of
139+
repositories and branches in the <i>Repositories</i> view to allow for better
140+
(user-customized) sorting
141+
<div class="changelog__details changelog__details--list"></div>
142+
</li>
143+
<li>
144+
<span class="changelog__badge changelog__badge--added">NEW</span>Adds the ability to
145+
specify a default remote selection when using the <i>Open * in Remote</i> commands
146+
&mdash; closes
147+
<a
148+
title="Open Issue #504"
149+
href="https://github.com/eamodio/vscode-gitlens/issues/504"
150+
>#504</a
151+
>
152+
<div class="changelog__details changelog__details--list">
153+
<p>
154+
Adds <i>Set as Default</i> and <i>Unset as Default</i> commands to remotes
155+
in the <i>Repositories</i> view
156+
</p>
157+
</div>
158+
</li>
159+
<li>
160+
<span class="changelog__badge changelog__badge--added">NEW</span>Adds the ability to
161+
turn on file annotations (blame, heatmap, and recent changes) via user-defined modes
162+
&mdash; closes
163+
<a
164+
title="Open Issue #542"
165+
href="https://github.com/eamodio/vscode-gitlens/issues/542"
166+
>#542</a
167+
>
168+
<div class="changelog__details changelog__details--list"></div>
169+
</li>
170+
<li>
171+
<span class="changelog__badge changelog__badge--added">NEW</span>Adds the ability to
172+
stage and unstage files by folders in the <i>Repositories</i> view &mdash; closes
173+
<a
174+
title="Open Issue #599"
175+
href="https://github.com/eamodio/vscode-gitlens/issues/599"
176+
>#599</a
177+
>
178+
thanks to
179+
<a
180+
title="Open Issue #600"
181+
href="https://github.com/eamodio/vscode-gitlens/issues/600"
182+
>PR #600</a
183+
>
184+
by Tony Brix (<a title="@UziTech" href="https://github.com/UziTech">@UziTech</a>)
185+
<div class="changelog__details changelog__details--list">
186+
<p>
187+
Adds <i>Stage All Changes</i> and <i>Unstage All Changes</i> commands to
188+
folders in the <i>Repositories</i> view
189+
</p>
190+
</div>
191+
</li>
192+
193+
<li class="changelog__list-item--version">
133194
<span class="changelog__badge changelog__badge--version">9.2</span>
134195
<span class="changelog__date">DEC &nbsp;2018</span>
135196
<div class="changelog__details"></div>

src/ui/welcome/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22
import { WelcomeApp } from './app';
3-
import { Snow } from './snow';
3+
// import { Snow } from './snow';
44

55
new WelcomeApp();
6-
requestAnimationFrame(() => new Snow());
6+
// requestAnimationFrame(() => new Snow());

0 commit comments

Comments
 (0)