diff --git a/CHANGELOG.md b/CHANGELOG.md
index 30c2ffe..630a9a6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -145,7 +145,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
-- Fixes [#2744](https://github.com/gitkraken/vscode-gitlens/issues/2744) - GH enterprise access with focus view
+- Fixes [#2744](https://github.com/gitkraken/vscode-gitlens/issues/2744) - GH enterprise access with _Focus_
- Fixes deeplink comparison ordering for a better experience
- Fixes deeplinks to comparisons with working tree not resolving
@@ -361,7 +361,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Adds tooltips to work-in-progress (WIP) and stash nodes
- Adds a "Publish Branch" context menu action to local branches without an upstream branch — closes [#2619](https://github.com/gitkraken/vscode-gitlens/pull/2619)
- Lowers the minimum width of the "Branch / Tag" column
-- Adds actions to _Focus View_ Pull Requests
+- Adds actions to _Focus_ Pull Requests
- Switch to or create a local branch
- Create or open a worktree from the branch
- Adds a _Generate Commit Message (Experimental)..._ command to the SCM context menus
@@ -446,10 +446,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Added
-- ✨ Adds a preview of the all-new **Focus View**, a [GitLens+ feature](https://gitkraken.com/gitlens/pro-features) — provides you with a comprehensive list of all your most important work across your connected GitHub repos:
+- ✨ Adds a preview of the all-new **Focus**, a [GitLens+ feature](https://gitkraken.com/gitlens/pro-features) — provides you with a comprehensive list of all your most important work across your connected GitHub repos:
- My Pull Requests: shows all GitHub PRs opened by you, assigned to you, or awaiting your review
- My Issues: shows all issues created by you, assigned to you, or that mention you
- - Open it via _GitLens+: Show Focus View_ from the Command Palette
+ - Open it via _GitLens+: Show Focus_ from the Command Palette
- Adds new _Commit Graph_ features and improvements
- Adds a new experimental minimap of commit activity to the _Commit Graph_
- Adds a new experimental _Changes_ column visualizing commit changes
diff --git a/README.md b/README.md
index 7f7a05b..b718ac1 100644
--- a/README.md
+++ b/README.md
@@ -179,10 +179,10 @@ Use the rich commit search to find exactly what you're looking for. Its powerful
GitKraken Workspaces allow you to easily group and manage multiple repositories together, accessible from anywhere, streamlining your workflow. Create workspaces just for yourself or share (coming soon in GitLens) them with your team for faster onboarding and better collaboration.
-The Focus view brings all of your GitHub pull requests and issues into a unified actionable view to help to you more easily juggle work in progress, pending work, reviews, and more. Quickly see if anything requires your attention while keeping you focused.
+Focus brings all of your GitHub pull requests and issues into a unified actionable view to help to you more easily juggle work in progress, pending work, reviews, and more. Quickly see if anything requires your attention while keeping you focused.
## Visual File History ✨
diff --git a/package.json b/package.json
index 45bc9ce..e864a78 100644
--- a/package.json
+++ b/package.json
@@ -2688,13 +2688,13 @@
},
{
"id": "focus",
- "title": "Focus View",
+ "title": "Focus",
"order": 106,
"properties": {
"gitlens.focus.allowMultiple": {
"type": "boolean",
"default": true,
- "markdownDescription": "Specifies whether to allow opening multiple instances of the _Focus View_",
+ "markdownDescription": "Specifies whether to allow opening multiple instances of the _Focus_",
"scope": "window",
"order": 10
}
@@ -4967,13 +4967,13 @@
},
{
"command": "gitlens.showFocusPage",
- "title": "Show Focus View",
+ "title": "Show Focus",
"category": "GitLens",
"icon": "$(layers)"
},
{
"command": "gitlens.focus.split",
- "title": "Split Focus View",
+ "title": "Split Focus",
"category": "GitLens",
"icon": "$(split-horizontal)"
},
@@ -15231,7 +15231,7 @@
{
"id": "gitlens.welcome.workspaces",
"title": "Work smarter with GitKraken Workspaces ☁️ and Focus ✨",
- "description": "GitKraken Workspaces allow you to easily group and manage multiple repositories together, accessible from anywhere, streamlining your workflow.\nCreate workspaces just for yourself or share (coming soon in GitLens) them with your team for faster onboarding and better collaboration.\n\n[Open Workspaces](command:gitlens.showWorkspacesView)\n\nThe Focus view brings all of your GitHub pull requests and issues into a unified actionable view to help to you more easily juggle work in progress, pending work, reviews, and more.\nQuickly see if anything requires your attention while keeping you focused.\n\n[Open Focus](command:gitlens.showFocusPage)",
+ "description": "GitKraken Workspaces allow you to easily group and manage multiple repositories together, accessible from anywhere, streamlining your workflow.\nCreate workspaces just for yourself or share (coming soon in GitLens) them with your team for faster onboarding and better collaboration.\n\n[Open Workspaces](command:gitlens.showWorkspacesView)\n\nFocus brings all of your GitHub pull requests and issues into a unified actionable view to help to you more easily juggle work in progress, pending work, reviews, and more.\nQuickly see if anything requires your attention while keeping you focused.\n\n[Open Focus](command:gitlens.showFocusPage)",
"media": {
"altText": "Illustrations of Focus and Workspaces view",
"svg": "walkthroughs/welcome/workspaces-focus.svg"
diff --git a/src/plus/webviews/focus/registration.ts b/src/plus/webviews/focus/registration.ts
index 79716e5..a8dda9f 100644
--- a/src/plus/webviews/focus/registration.ts
+++ b/src/plus/webviews/focus/registration.ts
@@ -12,7 +12,7 @@ export function registerFocusWebviewPanel(controller: WebviewsController) {
id: 'gitlens.focus',
fileName: 'focus.html',
iconPath: 'images/gitlens-icon.png',
- title: 'Focus View',
+ title: 'Focus',
contextKeyPrefix: `gitlens:webview:focus`,
trackingFeature: 'focusWebview',
plusFeature: true,
diff --git a/src/webviews/apps/plus/focus/components/focus-app.ts b/src/webviews/apps/plus/focus/components/focus-app.ts
index 701661f..4bad259 100644
--- a/src/webviews/apps/plus/focus/components/focus-app.ts
+++ b/src/webviews/apps/plus/focus/components/focus-app.ts
@@ -308,8 +308,8 @@ export class GlFocusApp extends LitElement {
class="feedback"
appearance="toolbar"
href="https://github.com/gitkraken/vscode-gitlens/discussions/2535"
- title="Focus View Feedback"
- aria-label="Focus View Feedback"
+ title="Focus Feedback"
+ aria-label="Focus Feedback"
>
@@ -329,9 +329,9 @@ export class GlFocusApp extends LitElement {
No GitHub remotes are connected
- This enables access to Pull Requests and Issues in the Focus View as well as provide
- additional information inside hovers and the Commit Details view, such as auto-linked issues
- and pull requests and avatars.
+ This enables access to Pull Requests and Issues as well as provide additional information
+ inside hovers and the Commit Details view, such as auto-linked issues and pull requests and
+ avatars.
Connect to GitHub
- Use the Focus view to bring all of your GitHub pull requests and issues into a unified actionable to
- help to you more easily juggle work in progress, pending work, reviews, and more. Quickly see if
- anything requires your attention while keeping you focused.
+ Use Focus to bring all of your GitHub pull requests and issues into a unified actionable to help to
+ you more easily juggle work in progress, pending work, reviews, and more. Quickly see if anything
+ requires your attention while keeping you focused.