Browse Source

Updates to version 13

main
Eric Amodio 2 years ago
parent
commit
eb4a056a27
5 changed files with 7 additions and 7 deletions
  1. +1
    -1
      README.md
  2. +2
    -2
      src/plus/subscription/subscriptionService.ts
  3. +1
    -1
      src/webviews/apps/home/components/header-card.ts
  4. +1
    -1
      src/webviews/apps/home/home.html
  5. +2
    -2
      src/webviews/apps/welcome/welcome.html

+ 1
- 1
README.md View File

@ -19,7 +19,7 @@
</p>
<p align="center">
<a title="What's New in GitLens 12" href="https://help.gitkraken.com/gitlens/gitlens-release-notes-current/"><img src="https://raw.githubusercontent.com/gitkraken/vscode-gitlens/main/images/docs/whats-new-button.png" alt="Open What's New in GitLens 12" /></a>
<a title="What's New in GitLens 13" href="https://help.gitkraken.com/gitlens/gitlens-release-notes-current/"><img src="https://raw.githubusercontent.com/gitkraken/vscode-gitlens/main/images/docs/whats-new-button.png" alt="Open What's New in GitLens 13" /></a>
<br/>
or read the <a href="https://github.com/gitkraken/vscode-gitlens/blob/main/CHANGELOG.md">change log</a>
</p>

+ 2
- 2
src/plus/subscription/subscriptionService.ts View File

@ -90,8 +90,8 @@ export class SubscriptionService implements Disposable {
);
const subscription = this.getStoredSubscription();
// Resets the preview trial state on the upgrade to 12.2
if (subscription != null && satisfies(previousVersion, '< 12.2')) {
// Resets the preview trial state on the upgrade to 13.0
if (subscription != null && satisfies(previousVersion, '< 13.0')) {
subscription.previewTrial = undefined;
}

+ 1
- 1
src/webviews/apps/home/components/header-card.ts View File

@ -9,7 +9,7 @@ const template = html`
<h1 class="header-card__title">
${when(
x => x.name === '',
html<HeaderCard>`<span class="foreground">Git</span>Lens 12 <em>Git supercharged</em>`,
html<HeaderCard>`<span class="foreground">Git</span>Lens 13 <em>Git supercharged</em>`,
)}
${when(x => x.name !== '', html<HeaderCard>`<span class="foreground">${x => x.name}</span>`)}
</h1>

+ 1
- 1
src/webviews/apps/home/home.html View File

@ -86,7 +86,7 @@
</style>
<div class="stepped-sections">
<stepped-section id="welcome">
<span slot="heading">Welcome to GitLens 12</span>
<span slot="heading">Welcome to GitLens 13</span>
<p>
GitLens supercharges Git inside VS Code and unlocks the untapped knowledge within each
repository.

+ 2
- 2
src/webviews/apps/welcome/welcome.html View File

@ -40,7 +40,7 @@
<div class="content__area">
<section id="welcome" class="section--full">
<h2 class="section__title section__title--primary">
Welcome to <span class="highlight">GitLens 12</span>
Welcome to <span class="highlight">GitLens 13</span>
</h2>
<div class="section__whatsnew">
<a
@ -56,7 +56,7 @@
class="button button--flat"
title="See What's New"
href="https://help.gitkraken.com/gitlens/gitlens-release-notes-current/"
>See What's New in GitLens 12</a
>See What's New in GitLens 13</a
>
<span class="button__subaction"
>or read the

Loading…
Cancel
Save