diff --git a/CHANGELOG.md b/CHANGELOG.md index a6e569c..f1e3465 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/LICENSE b/LICENSE index caf72ea..0876e55 100644 --- a/LICENSE +++ b/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 diff --git a/package.json b/package.json index c85d1d6..c5cf02b 100644 --- a/package.json +++ b/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" diff --git a/src/ui/welcome/index.html b/src/ui/welcome/index.html index c15e35f..da75638 100644 --- a/src/ui/welcome/index.html +++ b/src/ui/welcome/index.html @@ -5,7 +5,7 @@ - +
@@ -130,6 +130,67 @@
  • + 9.3 + JAN  2019 +
    +
  • +
  • + NEWAdds favoriting of + repositories and branches in the Repositories view to allow for better + (user-customized) sorting +
    +
  • +
  • + NEWAdds the ability to + specify a default remote selection when using the Open * in Remote commands + — closes + #504 +
    +

    + Adds Set as Default and Unset as Default commands to remotes + in the Repositories view +

    +
    +
  • +
  • + NEWAdds the ability to + turn on file annotations (blame, heatmap, and recent changes) via user-defined modes + — closes + #542 +
    +
  • +
  • + NEWAdds the ability to + stage and unstage files by folders in the Repositories view — closes + #599 + thanks to + PR #600 + by Tony Brix (@UziTech) +
    +

    + Adds Stage All Changes and Unstage All Changes commands to + folders in the Repositories view +

    +
    +
  • + +
  • 9.2 DEC  2018
    diff --git a/src/ui/welcome/index.ts b/src/ui/welcome/index.ts index 975dcff..6b79756 100644 --- a/src/ui/welcome/index.ts +++ b/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());