ソースを参照

Preps v9.3

main
Eric Amodio 5年前
コミット
4b92070678
5個のファイルの変更70行の追加8行の削除
  1. +3
    -2
      CHANGELOG.md
  2. +1
    -1
      LICENSE
  3. +1
    -1
      package.json
  4. +63
    -2
      src/ui/welcome/index.html
  5. +2
    -2
      src/ui/welcome/index.ts

+ 3
- 2
CHANGELOG.md ファイルの表示

@ -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

+ 1
- 1
LICENSE ファイルの表示

@ -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

+ 1
- 1
package.json ファイルの表示

@ -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"

+ 63
- 2
src/ui/welcome/index.html ファイルの表示

@ -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
@ -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>
@ -130,6 +130,67 @@
<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>

+ 2
- 2
src/ui/welcome/index.ts ファイルの表示

@ -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());

読み込み中…
キャンセル
保存