Skip to content

Commit

Permalink
Preps v9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Jan 2, 2019
1 parent 84536d2 commit 4b92070
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 8 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ 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/).

## [Unreleased]
## [9.3.0] - 2019-01-02

### Added

- Adds favoriting of repositories and branches in the _Repositories_ view to allow for better (user-customized) sorting
- 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)
- 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)
- Adds _Set as Default_ and _Unset as Default_ commands to remotes in the _Repositories_ view
- 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)
- 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))
- Adds _Stage All Changes_ and _Unstage All Changes_ commands to folders in the _Repositories_ view
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016-2018 Eric Amodio
Copyright (c) 2016-2019 Eric Amodio

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "gitlens",
"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",
"version": "9.2.4",
"version": "9.3.0",
"author": {
"name": "Eric Amodio",
"email": "eamodio@gmail.com"
Expand Down
65 changes: 63 additions & 2 deletions src/ui/welcome/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</head>

<body class="preload">
<canvas class="snow"></canvas>
<!-- <canvas class="snow"></canvas>
<div class="snow__trigger">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 125">
<path
Expand All @@ -18,7 +18,7 @@
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"
/>
</svg>
</div>
</div> -->
<div class="container">
<div class="content">
<header>
Expand Down Expand Up @@ -130,6 +130,67 @@ <h2 class="changelog__title">

<ul class="changelog__list">
<li>
<span class="changelog__badge changelog__badge--version">9.3</span>
<span class="changelog__date">JAN &nbsp;2019</span>
<div class="changelog__details"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds favoriting of
repositories and branches in the <i>Repositories</i> view to allow for better
(user-customized) sorting
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds the ability to
specify a default remote selection when using the <i>Open * in Remote</i> commands
&mdash; closes
<a
title="Open Issue #504"
href="https://github.com/eamodio/vscode-gitlens/issues/504"
>#504</a
>
<div class="changelog__details changelog__details--list">
<p>
Adds <i>Set as Default</i> and <i>Unset as Default</i> commands to remotes
in the <i>Repositories</i> view
</p>
</div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds the ability to
turn on file annotations (blame, heatmap, and recent changes) via user-defined modes
&mdash; closes
<a
title="Open Issue #542"
href="https://github.com/eamodio/vscode-gitlens/issues/542"
>#542</a
>
<div class="changelog__details changelog__details--list"></div>
</li>
<li>
<span class="changelog__badge changelog__badge--added">NEW</span>Adds the ability to
stage and unstage files by folders in the <i>Repositories</i> view &mdash; closes
<a
title="Open Issue #599"
href="https://github.com/eamodio/vscode-gitlens/issues/599"
>#599</a
>
thanks to
<a
title="Open Issue #600"
href="https://github.com/eamodio/vscode-gitlens/issues/600"
>PR #600</a
>
by Tony Brix (<a title="@UziTech" href="https://github.com/UziTech">@UziTech</a>)
<div class="changelog__details changelog__details--list">
<p>
Adds <i>Stage All Changes</i> and <i>Unstage All Changes</i> commands to
folders in the <i>Repositories</i> view
</p>
</div>
</li>

<li class="changelog__list-item--version">
<span class="changelog__badge changelog__badge--version">9.2</span>
<span class="changelog__date">DEC &nbsp;2018</span>
<div class="changelog__details"></div>
Expand Down
4 changes: 2 additions & 2 deletions src/ui/welcome/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';
import { WelcomeApp } from './app';
import { Snow } from './snow';
// import { Snow } from './snow';

new WelcomeApp();
requestAnimationFrame(() => new Snow());
// requestAnimationFrame(() => new Snow());

0 comments on commit 4b92070

Please sign in to comment.