ソースを参照

Updates subscription language for clarity

main
Eric Amodio 2年前
コミット
4fc7c25bce
18個のファイルの変更227行の追加130行の削除
  1. +6
    -11
      package.json
  2. +3
    -3
      src/quickpicks/items/directive.ts
  3. +1
    -2
      src/webviews/apps/home/home.html
  4. +21
    -4
      src/webviews/apps/home/home.scss
  5. +1
    -2
      src/webviews/apps/home/home.ts
  6. +36
    -18
      src/webviews/apps/home/partials/state.free-preview-expired.html
  7. +36
    -19
      src/webviews/apps/home/partials/state.free-preview.html
  8. +35
    -20
      src/webviews/apps/home/partials/state.free.html
  9. +4
    -4
      src/webviews/apps/home/partials/state.paid.html
  10. +12
    -7
      src/webviews/apps/home/partials/state.plus-trial-expired.html
  11. +33
    -18
      src/webviews/apps/home/partials/state.plus-trial.html
  12. +1
    -1
      src/webviews/apps/home/partials/welcome.html
  13. +7
    -9
      src/webviews/apps/premium/timeline/partials/state.free-preview-expired.html
  14. +9
    -4
      src/webviews/apps/premium/timeline/partials/state.free.html
  15. +10
    -4
      src/webviews/apps/premium/timeline/partials/state.plus-trial-expired.html
  16. +1
    -1
      src/webviews/apps/premium/timeline/partials/state.verify-email.html
  17. +6
    -0
      src/webviews/apps/premium/timeline/timeline.scss
  18. +5
    -3
      walkthroughs/premium-features/1-intro.md

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

@ -3625,12 +3625,12 @@
},
{
"command": "gitlens.premium.manage",
"title": "Manage my account...",
"title": "Manage Your Account...",
"category": "GitLens Premium"
},
{
"command": "gitlens.premium.purchase",
"title": "Purchase a Plan...",
"title": "Upgrade Your Account...",
"category": "GitLens Premium"
},
{
@ -10651,7 +10651,7 @@
},
{
"view": "gitlens.views.worktrees",
"contents": "Try worktrees now, without an account, for 3 days on public and private repos, or [sign in](command:gitlens.premium.loginOrSignUp) to use worktrees on public repos.\n\n[Try worktrees now](command:gitlens.premium.startPreviewTrial)\n\n✨ Worktrees are a premium feature, open the [premium features walkthrough](command:gitlens.premium.learn) to learn more.",
"contents": "Try worktrees now, without an account, for 3 days on public and private repos, or [sign in](command:gitlens.premium.loginOrSignUp \"Sign in now\") for unlimited use on public repos.\n\n[Try worktrees now](command:gitlens.premium.startPreviewTrial)",
"when": "gitlens:premium:state == 0"
},
{
@ -10661,18 +10661,13 @@
},
{
"view": "gitlens.views.worktrees",
"contents": "[Purchase a plan](command:gitlens.premium.purchase)",
"contents": "[Upgrade your account](command:gitlens.premium.purchase)",
"when": "gitlens:premium:state == 4"
},
{
"view": "gitlens.views.worktrees",
"contents": "✨ Worktrees are a premium feature, which requires a free account for public repos. Learn more about [premium features](command:gitlens.premium.learn), or [purchase a plan](command:gitlens.premium.purchase).",
"when": "gitlens:premium:state > 0 && gitlens:premium:required == free+"
},
{
"view": "gitlens.views.worktrees",
"contents": "✨ Worktrees are a premium feature, which requires at least a Pro subscription for private repos. Learn more about [premium features](command:gitlens.premium.learn), or [purchase a plan](command:gitlens.premium.purchase).",
"when": "gitlens:premium:state > 0 && gitlens:premium:required == paid"
"contents": "✨ Worktrees are a [premium feature](command:gitlens.premium.learn) which can be used on public repos with a [free account](command:gitlens.premium.loginOrSignUp) and private repos with a [paid account](command:gitlens.premium.purchase).\n\n🛈 Non-premium features can always be used on any repo.",
"when": "gitlens:premium:state > -1"
}
],
"views": {

+ 3
- 3
src/quickpicks/items/directive.ts ファイルの表示

@ -56,11 +56,11 @@ export namespace DirectiveQuickPickItem {
case Directive.RequiresFreeSubscription:
label = 'Sign In';
detail =
'To use premium features for public repos and get a free 7-day trial for both public and private repos';
'To use premium features on public repos and get a free 7-day trial for both public and private repos';
break;
case Directive.RequiresPaidSubscription:
label = 'Purchase a Plan';
detail = 'To use premium features for both public and private repos';
label = 'Upgrade your account';
detail = 'To use premium features on both public and private repos';
break;
}
}

+ 1
- 2
src/webviews/apps/home/home.html ファイルの表示

@ -7,8 +7,7 @@
<body class="preload">
<div id="container" class="container">
<div id="slot1"></div>
<vscode-divider></vscode-divider>
<div id="slot2"></div>
<div id="slot2" class="divider"></div>
</div>
#{endOfBody}
<style nonce="#{cspNonce}">

+ 21
- 4
src/webviews/apps/home/home.scss ファイルの表示

@ -64,14 +64,25 @@ p {
margin-bottom: 0;
}
.feature-desc {
margin-bottom: 1rem;
}
.image--preview {
border-radius: 8px;
box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.8), 0px 0px 12px 1px rgba(0, 0, 0, 0.5);
margin: 1rem 2rem 1rem 1rem;
}
.divider {
border-top: 1px solid var(--divider-background);
margin-top: 2rem;
}
.welcome {
grid-template-rows: repeat(3, min-content);
display: flex;
flex-direction: column;
ul {
list-style: none;
@ -82,11 +93,12 @@ p {
li {
margin: 0 0 1rem 0;
}
}
.welcomelink__whatsnew {
max-width: 400px;
margin: 1rem auto 0 auto;
.link--preview {
align-self: center;
max-width: 400px;
margin: 1rem 2rem 0 0;
}
}
.links {
@ -142,3 +154,8 @@ vscode-divider {
}
@import '../shared/codicons';
.codicon {
position: relative;
top: -2px;
}

+ 1
- 2
src/webviews/apps/home/home.ts ファイルの表示

@ -1,6 +1,6 @@
/*global*/
import './home.scss';
import { provideVSCodeDesignSystem, vsCodeButton, vsCodeDivider } from '@vscode/webview-ui-toolkit';
import { provideVSCodeDesignSystem, vsCodeButton } from '@vscode/webview-ui-toolkit';
import { Disposable } from 'vscode';
import { getSubscriptionTimeRemaining, SubscriptionState } from '../../../subscription';
import { DidChangeSubscriptionNotificationType, State } from '../../home/protocol';
@ -20,7 +20,6 @@ export class HomeApp extends App {
provideVSCodeDesignSystem().register({
register: function (container: any, context: any) {
vsCodeButton().register(container, context);
vsCodeDivider().register(container, context);
},
});

+ 36
- 18
src/webviews/apps/home/partials/state.free-preview-expired.html ファイルの表示

@ -1,37 +1,55 @@
<template id="state:free-preview-expired">
<section>
<h3>Continue using Premium Features</h3>
<p>Your premium features trial has ended.</p>
<p>
Your
<a title="Learn more about premium features" href="command:gitlens.premium.learn">premium features</a> trial
has ended. Don't worry, non-premium features are always accessible.
</p>
<p>
Sign in to use premium features on public repos and get an <b>additional 7-day free trial</b> for both
public and private repos.
</p>
<vscode-button data-action="command:gitlens.premium.loginOrSignUp">Sign in</vscode-button>
<p>
Or, you can <a href="command:gitlens.premium.purchase">purchase a plan</a> for access to both public and
private repos.
Or, <a title="Upgrade your account" href="command:gitlens.premium.purchase">upgrade your account</a> to use
premium features on both public and private repos.
</p>
<h3>Premium Features</h3>
<h3>Premium Features (Optional)</h3>
<p>
Premium features are all-new features that enhance your current GitLens experience and require an account to
access. All non-premium features are unrestricted. Learn more about
an class="p"><a href="command:gitlens.premium.learn"&gt;premium features</a>.
<a title="Learn more about premium features" href="command:gitlens.premium.learn">Premium features</a> are
all-new, completely optional, features that enhance your current GitLens experience when you sign with an
account.
</p>
<h4>Visual File History</h4>
<img class="image--preview" src="#{root}/images/docs/visual-file-history-hover.png" alt="Visual File History" />
<p>
The Visual File History allows you to quickly see the evolution of a file, including when changes were made,
how large they were, and who made them. Learn more about the
<a href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.visualFileHistory%22"
<i class="codicon codicon-info"></i>&nbsp;Non-premium features are always accessible, without an account,
and will continue to evolve and be invested in.
</p>
<h4>Visual File History</h4>
<img
class="image--preview"
src="#{root}/images/docs/visual-file-history-hover.png"
alt="Visual File History screenshot"
/>
<p class="feature-desc">
The
<a
title="Learn more about the Visual File History"
href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.visualFileHistory%22"
>Visual File History</a
>.
>
allows you to quickly see the evolution of a file, including when changes were made, how large they were,
and who made them.
</p>
<h4>Worktrees</h4>
<img class="image--preview" src="#{root}/images/docs/worktrees-view.png" alt="Worktrees" />
<p>
Worktrees allow you to easily work on different branches of a repository simultaneously. Learn more about
<a href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.worktrees%22">worktrees</a>.
<img class="image--preview" src="#{root}/images/docs/worktrees-view.png" alt="Worktrees screenshot" />
<p class="feature-desc">
<a
title="Learn more about worktrees"
href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.worktrees%22"
>Worktrees</a
>
allow you to easily work on different branches of a repository simultaneously.
</p>
</section>
</template>

+ 36
- 19
src/webviews/apps/home/partials/state.free-preview.html ファイルの表示

@ -1,34 +1,51 @@
<template id="state:free-preview">
<section>
<h3>Trying GitLens Premium Features</h3>
<p>You have <span data-bind="previewDays">3 days</span> left in your premium features trial.</p>
<p>Once your trial ends, you'll need a free account to continue using premium features on public repos.</p>
<p>
You have <span data-bind="previewDays">3 days</span> left in your
<a title="Learn more about premium features" href="command:gitlens.premium.learn">premium features</a>
trial. Once your trial ends, you'll need a free account to continue using premium features on public repos.
</p>
<vscode-button data-action="command:gitlens.premium.loginOrSignUp">Sign in</vscode-button>
<p>
Or, you can <a href="command:gitlens.premium.purchase">purchase a plan</a> for access to both public and
private repos.
Or, <a title="Upgrade your account" href="command:gitlens.premium.purchase">upgrade your account</a> to use
premium features on both public and private repos.
</p>
<h3>Premium Features</h3>
<h3>Premium Features (Optional)</h3>
<p>
Premium features are all-new features that enhance your current GitLens experience and require an account to
access. All non-premium features are unrestricted. Learn more about
an class="p"><a href="command:gitlens.premium.learn"&gt;premium features</a>.
<a title="Learn more about premium features" href="command:gitlens.premium.learn">Premium features</a> are
all-new, completely optional, features that enhance your current GitLens experience when you sign with an
account.
</p>
<h4>Visual File History</h4>
<img class="image--preview" src="#{root}/images/docs/visual-file-history-hover.png" alt="Visual File History" />
<p>
The Visual File History allows you to quickly see the evolution of a file, including when changes were made,
how large they were, and who made them. Learn more about the
<a href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.visualFileHistory%22"
<i class="codicon codicon-info"></i>&nbsp;Non-premium features are always accessible, without an account,
and will continue to evolve and be invested in.
</p>
<h4>Visual File History</h4>
<img
class="image--preview"
src="#{root}/images/docs/visual-file-history-hover.png"
alt="Visual File History screenshot"
/>
<p class="feature-desc">
The
<a
title="Learn more about the Visual File History"
href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.visualFileHistory%22"
>Visual File History</a
>.
>
allows you to quickly see the evolution of a file, including when changes were made, how large they were,
and who made them.
</p>
<h4>Worktrees</h4>
<img class="image--preview" src="#{root}/images/docs/worktrees-view.png" alt="Worktrees" />
<p>
Worktrees allow you to easily work on different branches of a repository simultaneously. Learn more about
<a href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.worktrees%22">worktrees</a>.
<img class="image--preview" src="#{root}/images/docs/worktrees-view.png" alt="Worktrees screenshot" />
<p class="feature-desc">
<a
title="Learn more about worktrees"
href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.worktrees%22"
>Worktrees</a
>
allow you to easily work on different branches of a repository simultaneously.
</p>
</section>
</template>

+ 35
- 20
src/webviews/apps/home/partials/state.free.html ファイルの表示

@ -1,33 +1,48 @@
<template id="state:free">
<section>
<h3>Introducing Premium Features</h3>
<h3>Introducing Premium Features (Optional)</h3>
<p>
Premium features are all-new features that enhance your current GitLens experience and require an account to
access. All non-premium features are unrestricted.
<a title="Learn more about premium features" href="command:gitlens.premium.learn">Premium features</a> are
all-new, completely optional, features that enhance your current GitLens experience when you sign with an
account.
</p>
<vscode-button data-action="command:gitlens.premium.startPreviewTrial">Try premium features now</vscode-button>
<p>
Try premium features now, without an account, for 3 days on public and private repos, or
<a href="command:gitlens.premium.loginOrSignUp">sign in</a> to use premium features on public repos. Learn
more about <a href="command:gitlens.premium.learn">premium features</a>.
<i class="codicon codicon-info"></i>&nbsp;Non-premium features are always accessible, without an account,
and will continue to evolve and be invested in.
</p>
<vscode-button data-action="command:gitlens.premium.startPreviewTrial">Try premium features now</vscode-button>
<p style="margin-bottom: 1rem">
Try
<a title="Learn more about premium features" href="command:gitlens.premium.learn">premium features</a> now,
without an account, for 3 days on public and private repos, or
<a title="Sign in now" href="command:gitlens.premium.loginOrSignUp">sign in</a> for unlimited use on public
repos.
</p>
<h4>Visual File History</h4>
<img class="image--preview" src="#{root}/images/docs/visual-file-history-hover.png" alt="Visual File History" />
<p>
The Visual File History allows you to quickly see the evolution of a file, including when changes were made,
how large they were, and who made them. Learn more about the
<a href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.visualFileHistory%22"
<img
class="image--preview"
src="#{root}/images/docs/visual-file-history-hover.png"
alt="Visual File History screenshot"
/>
<p class="feature-desc">
The
<a
title="Learn more about the Visual File History"
href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.visualFileHistory%22"
>Visual File History</a
>.
>
allows you to quickly see the evolution of a file, including when changes were made, how large they were,
and who made them.
</p>
<h4>Worktrees</h4>
<img class="image--preview" src="#{root}/images/docs/worktrees-view.png" alt="Worktrees" />
<p>
Worktrees allow you to easily work on different branches of a repository simultaneously. Learn more about
<a href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.worktrees%22""
>worktrees</a
>.
<img class="image--preview" src="#{root}/images/docs/worktrees-view.png" alt="Worktrees screenshot" />
<p class="feature-desc">
<a
title="Learn more about worktrees"
href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.worktrees%22"
>Worktrees</a
>
allow you to easily work on different branches of a repository simultaneously.
</p>
</section>
</template>

+ 4
- 4
src/webviews/apps/home/partials/state.paid.html ファイルの表示

@ -3,12 +3,12 @@
<h3 data-bind="plan">GitLens Pro</h3>
<p>Thank you for purchasing <span data-bind="plan">GitLens Pro</span>!</p>
<p>
Your <span data-bind="plan">GitLens Pro</span> account gives you access to premium features for both public
and private repos.
Your <span data-bind="plan">GitLens Pro</span> account gives you access to use
<a title="Learn more about premium features" href="command:gitlens.premium.learn">premium features</a> for
both public and private repos.
</p>
<vscode-button data-action="command:gitlens.premium.learn">Learn about premium features</vscode-button>
<p>
<a href="command:gitlens.premium.manage">Manage my account</a>
<a title="Manage your account" href="command:gitlens.premium.manage">Manage your account</a>
</p>
</section>
</template>

+ 12
- 7
src/webviews/apps/home/partials/state.plus-trial-expired.html ファイルの表示

@ -1,14 +1,19 @@
<template id="state:plus-trial-expired">
<section>
<h3>GitLens Free+</h3>
<p>Your GitLens Free+ account gives you access to premium features on public repos.</p>
<p>Purchase a plan for access to both public and private repos.</p>
<vscode-button data-action="command:gitlens.premium.purchase">Purchase a plan</vscode-button>
<vscode-button data-action="command:gitlens.premium.learn" appearance="secondary"
>Learn about premium features</vscode-button
>
<p>
<a href="command:gitlens.premium.manage">Manage my account</a>
Your Free+ account gives you access to use
<a title="Learn more about premium features" href="command:gitlens.premium.learn">premium features</a> on
public repos.
</p>
<p>
<a title="Manage your account" href="command:gitlens.premium.manage">Manage your account</a>
</p>
<p>Upgrade your account for access to both public and private repos.</p>
<vscode-button data-action="command:gitlens.premium.purchase">Upgrade your account</vscode-button>
<p>
<i class="codicon codicon-info"></i>&nbsp;Non-premium features are always accessible, without an account,
and will continue to evolve and be invested in.
</p>
</section>
</template>

+ 33
- 18
src/webviews/apps/home/partials/state.plus-trial.html ファイルの表示

@ -1,33 +1,48 @@
<template id="state:plus-trial">
<section>
<h3>Premium Feature Trial</h3>
<p>You have <span data-bind="trialDays">3 days</span> left in your premium features trial.</p>
<p>
Once your trial ends, you can continue using premium features on public repos, or purchase a plan for access
to both public and private repos.
You have <span data-bind="trialDays">7 days</span> left in your
<a title="Learn more about premium features" href="command:gitlens.premium.learn">premium features</a>
trial. Once your trial ends, you can continue using premium features on public repos.
</p>
<vscode-button data-action="command:gitlens.premium.purchase">Purchase a plan</vscode-button>
<p>Upgrade your account for access to both public and private repos.</p>
<vscode-button data-action="command:gitlens.premium.purchase">Upgrade your account</vscode-button>
<h3>Premium Features</h3>
<p>
Premium features are all-new features that enhance your current GitLens experience and require an account to
access. All non-premium features are unrestricted. Learn more about
an class="p"><a href="command:gitlens.premium.learn"&gt;premium features</a>.
<a title="Learn more about premium features" href="command:gitlens.premium.learn">Premium features</a> are
all-new, completely optional, features that enhance your current GitLens experience when you sign with an
account.
</p>
<h4>Visual File History</h4>
<img class="image--preview" src="#{root}/images/docs/visual-file-history-hover.png" alt="Visual File History" />
<p>
The Visual File History allows you to quickly see the evolution of a file, including when changes were made,
how large they were, and who made them. Learn more about the
<a href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.visualFileHistory%22"
<i class="codicon codicon-info"></i>&nbsp;Non-premium features are always accessible, without an account,
and will continue to evolve and be invested in.
</p>
<h4>Visual File History</h4>
<img
class="image--preview"
src="#{root}/images/docs/visual-file-history-hover.png"
alt="Visual File History screenshot"
/>
<p class="feature-desc">
The
<a
title="Learn more about the Visual File History"
href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.visualFileHistory%22"
>Visual File History</a
>.
>
allows you to quickly see the evolution of a file, including when changes were made, how large they were,
and who made them.
</p>
<h4>Worktrees</h4>
<img class="image--preview" src="#{root}/images/docs/worktrees-view.png" alt="Worktrees" />
<p>
Worktrees allow you to easily work on different branches of a repository simultaneously. Learn more about
<a href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.worktrees%22">worktrees</a>.
<img class="image--preview" src="#{root}/images/docs/worktrees-view.png" alt="Worktrees screenshot" />
<p class="feature-desc">
<a
title="Learn more about worktrees"
href="command:gitlens.openWalkthrough?%22gitlens.premium%7Cgitlens.premium.worktrees%22"
>Worktrees</a
>
allow you to easily work on different branches of a repository simultaneously.
</p>
</section>
</template>

+ 1
- 1
src/webviews/apps/home/partials/welcome.html ファイルの表示

@ -1,7 +1,7 @@
<template id="welcome">
<section class="welcome">
<h3>Welcome to GitLens 12</h3>
<a class="welcomelink__whatsnew" title="See What's New" href="command:gitlens.showWelcomePage">
<a class="link--preview" title="See What's New" href="command:gitlens.showWelcomePage">
<img class="image--preview" src="#{webroot}/media/gitlens-12-card.webp" alt="What's new" />
</a>
<p>

+ 7
- 9
src/webviews/apps/premium/timeline/partials/state.free-preview-expired.html ファイルの表示

@ -5,15 +5,13 @@
<b>additional 7-day free trial</b> for both public and private repos.
</p>
<vscode-button data-action="command:gitlens.premium.loginOrSignUp">Sign in</vscode-button>
<p data-visible="public">
✨ The Visual File History is premium feature, which requires a free account for public repos. Learn more
about <a href="command:gitlens.premium.learn">premium features</a>, or
<a href="command:gitlens.premium.purchase">purchase a plan</a>.
</p>
<p data-visible="private">
✨ The Visual File History is a premium feature, which requires at least a Pro subscription for private
repos. Learn more about <a href="command:gitlens.premium.learn">premium features</a>, or
<a href="command:gitlens.premium.purchase">purchase a plan</a>.
<p>
✨ The Visual File History is
<a title="Learn more about premium features" href="command:gitlens.premium.learn">premium feature</a> which
can be used on public repos with a
<a title="Sign in" href="command:gitlens.premium.loginOrSignUp">free account</a> and private repos with a
<a title="View plans" href="command:gitlens.premium.purchase">paid account</a>.
</p>
<p><i class="codicon codicon-info"></i>&nbsp;Non-premium features can always be used on any repo.</p>
</section>
</template>

+ 9
- 4
src/webviews/apps/premium/timeline/partials/state.free.html ファイルの表示

@ -1,15 +1,20 @@
<template id="state:free">
<section>
<p>
Try the Visual File History now, without an account, for 3 days on public and private repos, or
<a href="command:gitlens.premium.loginOrSignUp">sign in</a> to use the Visual File History on public repos.
Try it now, without an account, for 3 days on public and private repos, or
<a title="Sign in now" href="command:gitlens.premium.loginOrSignUp">sign in</a> for unlimited use on public
repos.
</p>
<vscode-button data-action="command:gitlens.premium.startPreviewTrial"
>Try the Visual File History now</vscode-button
>
<p>
✨ The Visual File History is a premium feature, open the
<a href="command:gitlens.premium.learn">premium features walkthrough</a> to learn more.
✨ The Visual File History is
<a title="Learn more about premium features" href="command:gitlens.premium.learn">premium feature</a> which
can be used on public repos with a
<a title="Sign in" href="command:gitlens.premium.loginOrSignUp">free account</a> and private repos with a
<a title="View plans" href="command:gitlens.premium.purchase">paid account</a>.
</p>
<p><i class="codicon codicon-info"></i>&nbsp;Non-premium features can always be used on any repo.</p>
</section>
</template>

+ 10
- 4
src/webviews/apps/premium/timeline/partials/state.plus-trial-expired.html ファイルの表示

@ -1,10 +1,16 @@
<template id="state:plus-trial-expired">
<section>
<p>Purchase a plan for access to both public and private repos.</p>
<vscode-button data-action="command:gitlens.premium.purchase">Purchase a plan</vscode-button>
<p>
✨ The Visual File History is a premium feature, which requires at least a Pro subscription for private
repos. Learn more about <a href="command:gitlens.premium.learn">premium features</a>.
Upgrade your account to use the Visual File History and other premium features on both public and private
repos.
</p>
<vscode-button data-action="command:gitlens.premium.purchase">Upgrade your account</vscode-button>
<p>
✨ The Visual File History is
<a title="Learn more about premium features" href="command:gitlens.premium.learn">premium feature</a> which
can be used on public repos with a free account and private repos with a
<a title="Upgrade your account" href="command:gitlens.premium.purchase">paid account</a>.
</p>
<p><i class="codicon codicon-info"></i>&nbsp;Non-premium features can always be used on any repo.</p>
</section>
</template>

+ 1
- 1
src/webviews/apps/premium/timeline/partials/state.verify-email.html ファイルの表示

@ -1,7 +1,7 @@
<template id="state:verify-email">
<section>
<h3>Please verify your email</h3>
<p>To use the Visual File History premium feature, please verify the email for the account you created.</p>
<p>To use the Visual File History, please verify the email for the account you created.</p>
<vscode-button data-action="command:gitlens.premium.resendVerification"
>Resend verification email</vscode-button
>

+ 6
- 0
src/webviews/apps/premium/timeline/timeline.scss ファイルの表示

@ -215,3 +215,9 @@ span.button-subaction {
}
@import './chart';
@import '../../shared/codicons.scss';
.codicon {
position: relative;
top: -1px;
}

+ 5
- 3
walkthroughs/premium-features/1-intro.md ファイルの表示

@ -1,16 +1,18 @@
## Introducing Premium Features
Premium features are all-new features that enhance your current GitLens experience and require an account to access. Anyone can try premium features for public and private repos for 3 days, without an account.
Premium features are all-new, completely optional, features that enhance your current GitLens experience when you sign with an account. Anyone can try premium features for public and private repos for 3 days, without an account.
🛈 Non-premium features are always accessible, without an account, and will continue to evolve and be invested in.
<p align="center">
<img src="../../images/docs/visual-file-history-hover.png" alt="Visual File History View"/>
</p>
The Visual File History and Worktrees premium features can be accessed with a GitLens Free+ account. Free+ accounts have to access premium features on public repos, while a paid account is required for private repos.
The new Visual File History and Worktrees premium features can be used with a free, GitLens Free+ account. Free+ accounts can use premium features on public repos, while paid accounts can also use them on private repos.
[**Try premium features now**](command:gitlens.premium.startPreviewTrial 'Try premium features now')
[**Learn more about premium features**](https://gitkraken.com/gitlens/premium-features 'Learn more')
[Learn more about premium features](https://gitkraken.com/gitlens/premium-features 'Learn more')
## More premium features coming soon

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