diff --git a/package.json b/package.json index 43ec26f..fc8b314 100644 --- a/package.json +++ b/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": { diff --git a/src/quickpicks/items/directive.ts b/src/quickpicks/items/directive.ts index 9f1aeb4..6b94956 100644 --- a/src/quickpicks/items/directive.ts +++ b/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; } } diff --git a/src/webviews/apps/home/home.html b/src/webviews/apps/home/home.html index d32940e..029373e 100644 --- a/src/webviews/apps/home/home.html +++ b/src/webviews/apps/home/home.html @@ -7,8 +7,7 @@