瀏覽代碼

GitLens joins GitKraken!

main
Eric Amodio 3 年之前
父節點
當前提交
e0163add62
共有 5 個文件被更改,包括 35 次插入6 次删除
  1. +13
    -1
      README.md
  2. 二進制
      images/docs/gk+gl-banner.png
  3. 二進制
      images/docs/gk+gl.png
  4. +11
    -1
      src/webviews/apps/scss/welcome.scss
  5. +11
    -4
      src/webviews/apps/welcome/welcome.html

+ 13
- 1
README.md 查看文件

@ -6,6 +6,18 @@
<p align="center">
<br />
<a
title="Learn more about GitKraken and GitLens joining forces!"
href="https://www.gitkraken.com/blog/gitkraken-acquires-gitlens-for-visual-studio-code"
target="_blank"
alt="Learn more about GitKraken and GitLens joining forces!"
>
<img src="https://raw.githubusercontent.com/eamodio/vscode-gitlens/main/images/docs/gk+gl.png" alt="GitKraken and GitLens are joining forces!" />
</a>
</p>
<p align="center">
<br />
<a title="Learn more about GitLens" href="https://gitlens.amod.io"><img src="https://raw.githubusercontent.com/eamodio/vscode-gitlens/main/images/docs/gitlens-logo.png" alt="GitLens Logo" /></a>
</p>
@ -18,7 +30,7 @@
# GitLens
[GitLens](https://gitlens.amod.io 'Learn more about GitLens') is an [open-source](https://github.com/eamodio/vscode-gitlens 'Open GitLens on GitHub') extension for [Visual Studio Code](https://code.visualstudio.com) created by [Eric Amodio](https://www.amod.io 'Learn more about Eric').
[GitLens](https://gitlens.amod.io 'Learn more about GitLens') is an [open-source](https://github.com/eamodio/vscode-gitlens 'Open GitLens on GitHub') extension for [Visual Studio Code](https://code.visualstudio.com).
GitLens simply helps you **better understand code**. Quickly glimpse into whom, why, and when a line or code block was changed. Jump back through history to **gain further insights** as to how and why the code evolved. Effortlessly explore the history and evolution of a codebase.

二進制
images/docs/gk+gl-banner.png 查看文件

Before After
Width: 1180  |  Height: 79  |  Size: 40 KiB

二進制
images/docs/gk+gl.png 查看文件

Before After
Width: 780  |  Height: 312  |  Size: 211 KiB

+ 11
- 1
src/webviews/apps/scss/welcome.scss 查看文件

@ -40,7 +40,7 @@ header {
.container {
display: grid;
grid-template-areas: 'header header' 'hero hero' 'content sidebar';
grid-template-areas: 'banner banner' 'header header' 'hero hero' 'content sidebar';
grid-template-columns: repeat(1, 1fr min-content);
margin: 1em auto;
grid-gap: 1em 3em;
@ -52,6 +52,16 @@ header {
}
}
.banner {
grid-area: banner;
margin: 1em;
display: flex;
img {
border-radius: 8px;
}
}
.content__area {
grid-area: content;
font-size: 1.4rem;

+ 11
- 4
src/webviews/apps/welcome/welcome.html 查看文件

@ -20,6 +20,16 @@
/> -->
<div class="container">
<div class="banner">
<a
title="Learn more about GitKraken and GitLens joining forces!"
href="https://www.gitkraken.com/blog/gitkraken-acquires-gitlens-for-visual-studio-code"
target="_blank"
alt="Learn more about GitKraken and GitLens joining forces!"
>
<img src="#{root}/images/docs/gk+gl-banner.png" alt="GitKraken and GitLens are joining forces!" />
</a>
</div>
<header>
<a class="header__link" title="Learn more about GitLens" href="https://gitlens.amod.io">
<div class="header__logo">
@ -44,10 +54,7 @@
<a class="bold" title="Open GitLens on GitHub" href="https://github.com/eamodio/vscode-gitlens"
>open-source</a
>
extension for Visual Studio Code created by
<a class="bold" title="Learn more about Eric" href="https://www.amod.io/?utm_source=gitlens"
>Eric Amodio</a
>.
extension for Visual Studio Code.
</p>
<p>
GitLens simply helps you <b>better understand code</b>. Quickly glimpse into whom, why, and when a

Loading…
取消
儲存