Ver código fonte

Changes to Focus for consistency

main
Eric Amodio 1 ano atrás
pai
commit
7bdf86d32a
6 arquivos alterados com 20 adições e 20 exclusões
  1. +4
    -4
      CHANGELOG.md
  2. +2
    -2
      README.md
  3. +5
    -5
      package.json
  4. +1
    -1
      src/plus/webviews/focus/registration.ts
  5. +5
    -5
      src/webviews/apps/plus/focus/components/focus-app.ts
  6. +3
    -3
      src/webviews/apps/welcome/welcome.html

+ 4
- 4
CHANGELOG.md Ver arquivo

@ -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

+ 2
- 2
README.md Ver arquivo

@ -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.
<figure align="center">
<img src="https://raw.githubusercontent.com/gitkraken/vscode-gitlens/main/images/docs/focus-view.png" alt="Focus View" />
<img src="https://raw.githubusercontent.com/gitkraken/vscode-gitlens/main/images/docs/focus-view.png" alt="Focus view" />
</figure>
## Visual File History ✨

+ 5
- 5
package.json Ver arquivo

@ -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"

+ 1
- 1
src/plus/webviews/focus/registration.ts Ver arquivo

@ -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,

+ 5
- 5
src/webviews/apps/plus/focus/components/focus-app.ts Ver arquivo

@ -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"
><code-icon icon="feedback"></code-icon
></gk-button>
</div>
@ -329,9 +329,9 @@ export class GlFocusApp extends LitElement {
<gk-feature-gate .visible=${this.showConnectionGate} id="connection-gate" class="scrollable">
<h3>No GitHub remotes are connected</h3>
<p>
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.
</p>
<gl-button appearance="alert" href="command:gitlens.connectRemoteProvider"
>Connect to GitHub</gl-button

+ 3
- 3
src/webviews/apps/welcome/welcome.html Ver arquivo

@ -272,9 +272,9 @@
<gk-workspaces-svg></gk-workspaces-svg>
<p>
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.
</p>
<gk-focus-svg></gk-focus-svg>

Carregando…
Cancelar
Salvar