Skip to content

Commit dcfecb4

Browse files
committed
Adds description content to the walkthroughs
1 parent 64c2313 commit dcfecb4

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-5
lines changed

images/icons/play-button.svg

Lines changed: 1 addition & 0 deletions
Loading

images/icons/template/mapping.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,6 @@
5151
"repo-fetch": 61744,
5252
"repo-pull": 61745,
5353
"repo-push": 61746,
54-
"provider-jira": 61747
54+
"provider-jira": 61747,
55+
"play-button": 61748
5556
}

package.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9767,6 +9767,13 @@
97679767
"fontPath": "dist/glicons.woff2",
97689768
"fontCharacter": "\\f133"
97699769
}
9770+
},
9771+
"gitlens-play-button": {
9772+
"description": "play-button icon",
9773+
"default": {
9774+
"fontPath": "dist/glicons.woff2",
9775+
"fontCharacter": "\\f134"
9776+
}
97709777
}
97719778
},
97729779
"menus": {
@@ -17817,7 +17824,7 @@
1781717824
{
1781817825
"id": "get-started-community",
1781917826
"title": "Welcome to GitLens | Community vs. Pro",
17820-
"description": "Get Started with GitLens Pro",
17827+
"description": "Thank you for installing GitLens - The #1 most installed Git extension in VS Code.\n\nYou’re using **GitLens Community:** Track code changes and who made them, with features like in-editor blame annotations, hovers, CodeLens, and more for free.\n\n**Unlock powerful workflows with GitLens Pro**\n\n**GitLens Pro:** For professional developers and teams, test out Pro by [signing up](command:gitlens.plus.signUp) to trial features that accelerate PR workflows, provide actionable code visuals, and and streamline collaboration to boost your productivity.\n\n[Get Started with GitLens Pro](command:gitlens.plus.showPlans)\n\n**[Learn more about GitLens Community and Pro](https://www.gitkraken.com/gitlens/pro-features)**",
1782117828
"media": {
1782217829
"markdown": "walkthroughs/welcome/get-started-community.md"
1782317830
},
@@ -17829,7 +17836,7 @@
1782917836
{
1783017837
"id": "visualize-code-history",
1783117838
"title": "Visualize Code History",
17832-
"description": "",
17839+
"description": "$(gitlens-gitlens) **Blame Annotations and Hovers**\n\nSee who changed what and why, without leaving your editor, through in-editor blame annotations, hover, and CodeLens.\n\n[Toggle File Blame](command:gitlens.toggleFileBlame), [Toggle Git CodeLens](command:gitlens.toggleCodeLens)\n\n**Side Bar & Panel Overview**\n\n$(gitlens-gitlens-inspect) **GitLens Inspect**\n\nEfficiently jump through the revision history of files, folders, and selected lines for the contextual info you need. Open [GitLens Inspect](command:workbench.view.extension.gitlensInspect)\n\n$(gitlens-graph) **Visual Commit Graph & Search**\n\nEasily follow complex Git histories, branches and search with the interactive Commit Graph for a clear view of repo changes.\n\n[View your Commit Graph](command:gitlens.showGraph)\n\n$(gitlens-play-button) [Watch a video on Visualize Code History](https://example.com)",
1783317840
"media": {
1783417841
"markdown": "walkthroughs/welcome/visualize-code-history.md"
1783517842
},
@@ -17991,7 +17998,7 @@
1799117998
"build:extension": "webpack --mode development --config-name extension:node",
1799217999
"build:extension:browser": "webpack --mode development --config-name extension:webworker",
1799318000
"build:webviews": "webpack --mode development --config-name webviews",
17994-
"build:icons": "pnpm run icons:svgo && pnpm run fantasticon && pnpm run icons:apply",
18001+
"build:icons": "pnpm run icons:svgo && pnpm fantasticon && pnpm run icons:apply",
1799518002
"build:tests": "node ./scripts/esbuild.tests.mjs --mode development",
1799618003
"generate:docs:telemetry": "node ./scripts/generate-telemetry-docs.mjs",
1799718004
"bundle": "webpack --mode production",

src/webviews/apps/shared/components/code-icon.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,7 @@ const iconMap = Object.freeze({
567567
'gl-repo-pull': '\\f131',
568568
'gl-repo-push': '\\f132',
569569
'gl-provider-jira': '\\f133',
570+
'gl-play-button-jira': '\\f134',
570571
});
571572

572573
@customElement('code-icon')

src/webviews/apps/shared/glicons.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Must be placed at the end of body in the HTML file of any webview that needs it
66
@font-face {
77
font-family: 'glicons';
88
font-display: block;
9-
src: url("#{root}/dist/glicons.woff2?6ae679c0cde70af8c802b5257e2354a4") format("woff2");
9+
src: url("#{root}/dist/glicons.woff2?0499083c405179442dcfdb1b46b6c007") format("woff2");
1010
}
1111
</style>
1212
*/
@@ -218,3 +218,6 @@ Must be placed at the end of body in the HTML file of any webview that needs it
218218
.glicon-provider-jira:before {
219219
content: '\f133';
220220
}
221+
.glicon-play-button:before {
222+
content: '\f134';
223+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<figure align="center">
2+
<a href="https://www.youtube.com/watch?v=UQPb73Zz9qk?utm_source=gitlens-extension&amp;utm_medium=walkthru_welcome" title="Watch the Getting Started tutorial video">
3+
<img src="tutorial.png" alt="GitLens tutorial video" />
4+
</a>
5+
</figure>

0 commit comments

Comments
 (0)