Skip to content

Commit 47d6210

Browse files
committed
Adds Focus view section to home view
1 parent 79ccf87 commit 47d6210

File tree

4 files changed

+26
-6
lines changed

4 files changed

+26
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
88

99
### Added
1010

11-
- ✨ Adds an all-new preview of the **Focus view**, a [GitLens+ feature](https://gitkraken.com/gitlens/plus-features) — provides you with a comprehensive list of all your most important work across your connected GitHub repos:
12-
- **My Pull Requests:** shows all GitHub PRs opened by you, assigned to you, or awaiting your review
13-
- **My Issues:** shows all issues created by you, assigned to you, or that mention you
11+
- ✨ Adds a preview of the all-new **Focus View**, a [GitLens+ feature](https://gitkraken.com/gitlens/plus-features) — provides you with a comprehensive list of all your most important work across your connected GitHub repos:
12+
- My Pull Requests: shows all GitHub PRs opened by you, assigned to you, or awaiting your review
13+
- My Issues: shows all issues created by you, assigned to you, or that mention you
14+
- Open it via _GitLens+: Show Focus View_ from the Command Palette
1415
- Adds new _Commit Graph_ features and improvements
1516
- Adds a new experimental minimap of commit activity to the _Commit Graph_
1617
- Adds a new experimental _Changes_ column visualizing commit changes

src/webviews/apps/home/home.html

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,21 @@
242242
</div>
243243
<!-- check for gitlens+ -->
244244
<div id="plus-sections">
245+
<card-section dismissable id="focus-view-preview">
246+
<span slot="heading">Focus View ✨ (preview)</span>
247+
<a title="Open the Focus view" href="command:gitlens.showFocusPage"
248+
><img
249+
src="#{webroot}/media/plus-focus-view-preview.webp"
250+
alt="Focus view Screenshot"
251+
class="plus-section-thumb mb-1"
252+
/></a>
253+
<p class="mb-0">
254+
The
255+
<a title="Open the Focus view" href="command:gitlens.showFocusPage">Focus View</a>
256+
provides you with a comprehensive list of all your most important work across your connected
257+
GitHub repos.
258+
</p>
259+
</card-section>
245260
<card-section dismissable id="commit-graph">
246261
<span slot="heading">Commit Graph ✨</span>
247262
<a
@@ -250,7 +265,7 @@
250265
><img
251266
src="#{webroot}/media/plus-commit-graph-illustrated.webp"
252267
alt="Commit Graph illustration"
253-
class="mb-1"
268+
class="plus-section-thumb mb-1"
254269
/></a>
255270
<p>
256271
The
@@ -275,7 +290,7 @@
275290
><img
276291
src="#{webroot}/media/plus-visual-file-history-illustrated.webp"
277292
alt="Visual File History illustration"
278-
class="mb-1"
293+
class="plus-section-thumb mb-1"
279294
/></a>
280295
<p>
281296
The
@@ -300,7 +315,7 @@
300315
><img
301316
src="#{webroot}/media/plus-worktrees-illustrated.webp"
302317
alt="Worktrees illustration"
303-
class="mb-1"
318+
class="plus-section-thumb mb-1"
304319
/></a>
305320
<p>
306321
<a

src/webviews/apps/home/home.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -609,6 +609,10 @@ vscode-button {
609609
}
610610
}
611611

612+
.plus-section-thumb {
613+
border-radius: 0.6rem;
614+
}
615+
612616
@media (max-width: 280px) {
613617
.not-small {
614618
display: none;
268 KB
Loading

0 commit comments

Comments
 (0)