diff --git a/README.md b/README.md
index e54748d..c64855a 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ Use `Switch to Pre-Release Version` on the extension banner to live on the edge
All features are free to use on all repos, **except** for features,
- marked with a ✨ require a [trial or paid plan](https://www.gitkraken.com/gitlens/pricing) for use on privately hosted repos
-- marked with a ☁️ require a GitKraken Account, with access level based on your [plan](https://www.gitkraken.com/gitlens/pricing), e.g. Free, Pro, etc
+- marked with a ☁️ require a GitKraken account, with access level based on your [plan](https://www.gitkraken.com/gitlens/pricing), e.g. Free, Pro, etc
See the [FAQ](#is-gitlens-free-to-use 'Jump to FAQ') for more details.
@@ -272,7 +272,7 @@ Yes. All features are free to use on all repos, **except** for features,
- marked with a ✨ require a [trial or paid plan](https://www.gitkraken.com/gitlens/pricing) for use on privately hosted repos
- marked with a ☁️ require a GitKraken Account, with access level based on your [plan](https://www.gitkraken.com/gitlens/pricing), e.g. Free, Pro, etc
-While GitLens offers a remarkable set of free features, a subset of features tailored for professional developers and teams, marked with a ✨, require a trial or paid plan for use on privately hosted repos — use on local or publicly hosted repos is free for everyone. Additionally some features marked with a ☁️, rely on GitKraken Dev Services which requires an account and access is based on your plan, e.g. Free, Pro, etc.
+While GitLens offers a remarkable set of free features, a subset of features tailored for professional developers and teams, marked with a ✨, require a trial or paid plan for use on privately hosted repos — use on local or publicly hosted repos is free for everyone. Additionally some features marked with a ☁️, rely on GitKraken Dev Services which requires a GitKraken account and access is based on your plan, e.g. Free, Pro, etc.
Preview ✨ features instantly for free for 3 days without an account, or start a free GitKraken trial to get an additional 7 days and gain access to ☁️ features to experience the full power of GitLens.
diff --git a/package.json b/package.json
index 286b4d7..654a899 100644
--- a/package.json
+++ b/package.json
@@ -15316,7 +15316,7 @@
},
{
"view": "gitlens.views.drafts",
- "contents": "[Start Free Pro Trial](command:gitlens.plus.loginOrSignUp)\n\nStart a free 7-day Pro trial to use Cloud Patches, or [sign in](command:gitlens.plus.loginOrSignUp).\n☁️ Requires an account and access is based on your plan, e.g. Free, Pro, etc",
+ "contents": "[Start Free Pro Trial](command:gitlens.plus.loginOrSignUp)\n\nStart a free 7-day Pro trial to use Cloud Patches, or [sign in](command:gitlens.plus.loginOrSignUp).\n☁️ Requires a GitKraken account and access is based on your plan, e.g. Free, Pro, etc",
"when": "!gitlens:plus"
},
{
@@ -15330,7 +15330,7 @@
},
{
"view": "gitlens.views.workspaces",
- "contents": "[Start Free GitKraken Trial](command:gitlens.plus.loginOrSignUp)\n\nStart a free 7-day GitKraken trial to use GitKraken Workspaces, or [sign in](command:gitlens.plus.loginOrSignUp).\n☁️ Requires an account and access is based on your plan, e.g. Free, Pro, etc",
+ "contents": "[Start Free GitKraken Trial](command:gitlens.plus.loginOrSignUp)\n\nStart a free 7-day GitKraken trial to use GitKraken Workspaces, or [sign in](command:gitlens.plus.loginOrSignUp).\n☁️ Requires a GitKraken account and access is based on your plan, e.g. Free, Pro, etc",
"when": "!gitlens:plus"
},
{
diff --git a/src/plus/focus/focusService.ts b/src/plus/focus/focusService.ts
index 502b5d6..6b1ef2b 100644
--- a/src/plus/focus/focusService.ts
+++ b/src/plus/focus/focusService.ts
@@ -107,7 +107,7 @@ export class FocusService implements Disposable {
const scope = getLogScope();
try {
- if (!(await ensureAccount('Pinning requires an account', this.container))) {
+ if (!(await ensureAccount('Pinning requires a GitKraken account.', this.container))) {
throw new Error('Unable to pin item: account required');
}
diff --git a/src/plus/webviews/patchDetails/patchDetailsWebview.ts b/src/plus/webviews/patchDetails/patchDetailsWebview.ts
index fba6110..18c301d 100644
--- a/src/plus/webviews/patchDetails/patchDetailsWebview.ts
+++ b/src/plus/webviews/patchDetails/patchDetailsWebview.ts
@@ -311,7 +311,7 @@ export class PatchDetailsWebviewProvider
return;
}
- if (!(await ensureAccount('A GitKraken account is required to apply cloud patches.', this.container))) return;
+ if (!(await ensureAccount('Cloud Patches require a GitKraken account.', this.container))) return;
const changeset = this._context.draft.changesets?.[0];
if (changeset == null) return;
@@ -350,7 +350,7 @@ export class PatchDetailsWebviewProvider
}
private async createDraft({ title, changesets, description }: CreatePatchParams): Promise
✨ Requires a trial or paid plan to use this on privately hosted repos.
- ☁️ Requires an account and access is based on your plan, e.g. Free, Pro, etc
+ ☁️ Requires a GitKraken account and access is based on your plan, e.g. Free, Pro, etc
✨ Requires a trial or paid plan for use on privately hosted repos
- ☁️ Requires an account and access is based on your plan, e.g. Free, Pro, etc
+ ☁️ Requires a GitKraken account and access is based on your plan, e.g. Free, Pro, etc