Skip to content

Commit cd9c8f8

Browse files
committed
website: re-generate descriptive & permalink names
1 parent cd6ca19 commit cd9c8f8

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
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}}
@@ -73,10 +73,10 @@ The binary files are available from <a href={frontMatter.download_url}>GitHub Re
7373
The easiest way to install this specific version, is by using **xpm**:
7474

7575
<CodeBlock language="console"> {
76-
`xpm install @xpack-dev-tools/{{packageConfig.shortName}}@${frontMatter.version}.${frontMatter.npm_subversion} -verbose
76+
`xpm install @xpack-dev-tools/{{packageConfig.permalinkName}}@${frontMatter.version}.${frontMatter.npm_subversion} -verbose
7777
`} </CodeBlock>
7878

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

8282
## Compliance

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

Lines changed: 3 additions & 3 deletions
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="macos" label="macOS">
1717

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

@@ -25,7 +25,7 @@ ${props.branding}2.6.4
2525
<TabItem value="linux" label="GNU/Linux">
2626

2727
<CodeBlock language="console"> {
28-
`$ ~/.local/xPacks/@xpack-dev-tools/${props.shortName}/2.6.4-1.1/.content/bin/${props.programName} --version
28+
`$ ~/.local/xPacks/@xpack-dev-tools/${props.permalinkName}/2.6.4-1.1/.content/bin/${props.programName} --version
2929
${props.branding}2.6.4
3030
`} </CodeBlock>
3131

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

Lines changed: 3 additions & 3 deletions
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="macos" label="macOS">
1717

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

@@ -25,7 +25,7 @@ ${props.branding}2.6.4
2525
<TabItem value="linux" label="GNU/Linux">
2626

2727
<CodeBlock language="console"> {
28-
`$ ~/.local/xPacks/${props.shortName}/xpack-${props.shortName}-2.6.4-1/bin/${props.programName} --version
28+
`$ ~/.local/xPacks/${props.permalinkName}/xpack-${props.permalinkName}-2.6.4-1/bin/${props.programName} --version
2929
${props.branding}2.6.4
3030
`} </CodeBlock>
3131

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

Lines changed: 2 additions & 2 deletions
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="flex"
10-
shortName="flex"
9+
descriptiveName="flex"
10+
permalinkName="flex"
1111
programName="flex"
1212
branding="flex "
1313
/>

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

Lines changed: 2 additions & 2 deletions
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="flex"
10-
shortName="flex"
9+
descriptiveName="flex"
10+
permalinkName="flex"
1111
programName="flex"
1212
branding="flex "
1313
/>

0 commit comments

Comments
 (0)