Skip to content

Commit bb197d8

Browse files
committed
website: re-generate descriptive & permalink names
1 parent 5c0b762 commit bb197d8

5 files changed

+12
-12
lines changed

website/blog/_templates/blog-post-release-part-1-liquid.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22

3-
title: xPack {{packageConfig.longName}} v{{xpackVersion}} released
3+
title: xPack {{packageConfig.descriptiveName}} v{{xpackVersion}} released
44
seo_title: Version {{xpackVersion}} released
55
description: Version {{xpackVersion}} is a TODO new/maintenance release.
66
keywords:
77
- xpack
8-
- {{packageConfig.shortName}}
8+
- {{packageConfig.permalinkName}}
99
- release
1010

1111
date: {{releaseDate}}
@@ -59,10 +59,10 @@ The binary files are available from <a href={frontMatter.download_url}>GitHub Re
5959
The easiest way to install this specific version, is by using **xpm**:
6060

6161
<CodeBlock language="console"> {
62-
`xpm install @xpack-dev-tools/{{packageConfig.shortName}}@${frontMatter.version}.${frontMatter.npm_subversion} -verbose
62+
`xpm install @xpack-dev-tools/{{packageConfig.permalinkName}}@${frontMatter.version}.${frontMatter.npm_subversion} -verbose
6363
`} </CodeBlock>
6464

65-
Comprehensive instructions for installing **xPack {{packageConfig.longName}}** on different platforms
65+
Comprehensive instructions for installing **xPack {{packageConfig.descriptiveName}}** on different platforms
6666
can be found in the [Install Guide](/docs/install/).
6767

6868
## Compliance

website/docs/install/_common/_automatic-install-quick-test.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import TabItem from '@theme/TabItem';
99

1010
### Quick test
1111

12-
To check if the {props.longName} installed by **xpm** starts properly, use something like:
12+
To check if the {props.descriptiveName} installed by **xpm** starts properly, use something like:
1313

1414
<Tabs groupId="operating-systems">
1515

1616
<TabItem value="linux" label="GNU/Linux">
1717

1818
<CodeBlock language="console"> {
19-
`$ ~/.local/xPacks/@xpack-dev-tools/${props.shortName}/10.0.0-1.1/.content/bin/${props.programName} --version
19+
`$ ~/.local/xPacks/@xpack-dev-tools/${props.permalinkName}/10.0.0-1.1/.content/bin/${props.programName} --version
2020
${props.branding}10.0
2121
`} </CodeBlock>
2222

website/docs/install/_common/_manual-install-quick-test.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import TabItem from '@theme/TabItem';
99

1010
### Quick test {#manual-install-quick-test}
1111

12-
To check if the {props.longName} installed manually starts properly, use something like:
12+
To check if the {props.descriptiveName} installed manually starts properly, use something like:
1313

1414
<Tabs groupId="operating-systems">
1515

1616
<TabItem value="linux" label="GNU/Linux">
1717

1818
<CodeBlock language="console"> {
19-
`$ ~/.local/xPacks/${props.shortName}/xpack-${props.shortName}-10.0.0-1/bin/${props.programName} --version
19+
`$ ~/.local/xPacks/${props.permalinkName}/xpack-${props.permalinkName}-10.0.0-1/bin/${props.programName} --version
2020
${props.branding}10.0
2121
`} </CodeBlock>
2222

website/docs/install/_project/_automatic-install-quick-test.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import AutomaticInstallQuickTest from '../_common/_automatic-install-quick-test.
66
{/* ------------------------------------------------------------------------ */}
77

88
<AutomaticInstallQuickTest
9-
longName="WineHQ"
10-
shortName="wine"
9+
descriptiveName="WineHQ"
10+
permalinkName="wine"
1111
programName="wine"
1212
branding="wine-"
1313
/>

website/docs/install/_project/_manual-install-quick-test.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import ManualInstallQuickTest from '../_common/_manual-install-quick-test.mdx';
66
{/* ------------------------------------------------------------------------ */}
77

88
<ManualInstallQuickTest
9-
longName="WineHQ"
10-
shortName="wine"
9+
descriptiveName="WineHQ"
10+
permalinkName="wine"
1111
programName="wine"
1212
branding="wine-"
1313
/>

0 commit comments

Comments
 (0)