File tree Expand file tree Collapse file tree 5 files changed +16
-16
lines changed Expand file tree Collapse file tree 5 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 11---
22
3- title : xPack {{packageConfig.longName }} v{{xpackVersion}} released
3+ title : xPack {{packageConfig.descriptiveName }} v{{xpackVersion}} released
44seo_title : Version {{xpackVersion}} released
55description : Version {{xpackVersion}} is a TODO new/maintenance release.
66keywords :
77 - xpack
8- - {{packageConfig.shortName }}
8+ - {{packageConfig.permalinkName }}
99 - release
1010
1111date : {{releaseDate}}
@@ -73,10 +73,10 @@ The binary files are available from <a href={frontMatter.download_url}>GitHub Re
7373The 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
8080can be found in the [ Install Guide] ( /docs/install/ ) .
8181
8282## Compliance
Original file line number Diff line number Diff 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 = " windows" label = " Windows" default >
1717
1818<CodeBlock language = " console" > {
19- ` C:\\ > %USERPROFILE%\\ AppData\\ Roaming\\ xPacks\\ @xpack-dev-tools\\ ${props .shortName }\\ 8.2.6-1.1\\ .content\\ bin\\ ${props .programName }.exe --version
19+ ` C:\\ > %USERPROFILE%\\ AppData\\ Roaming\\ xPacks\\ @xpack-dev-tools\\ ${props .permalinkName }\\ 8.2.6-1.1\\ .content\\ bin\\ ${props .programName }.exe --version
2020${props .branding }8.2.6
2121` } </CodeBlock >
2222
@@ -25,7 +25,7 @@ ${props.branding}8.2.6
2525<TabItem value = " macos" label = " macOS" >
2626
2727<CodeBlock language = " console" > {
28- ` % ~/Library/xPacks/@xpack-dev-tools/${props .shortName }/8.2.6-1.1/.content/bin/${props .programName } --version
28+ ` % ~/Library/xPacks/@xpack-dev-tools/${props .permalinkName }/8.2.6-1.1/.content/bin/${props .programName } --version
2929${props .branding }8.2.6
3030` } </CodeBlock >
3131
@@ -34,7 +34,7 @@ ${props.branding}8.2.6
3434<TabItem value = " linux" label = " GNU/Linux" >
3535
3636<CodeBlock language = " console" > {
37- ` $ ~/.local/xPacks/@xpack-dev-tools/${props .shortName }/8.2.6-1.1/.content/bin/${props .programName } --version
37+ ` $ ~/.local/xPacks/@xpack-dev-tools/${props .permalinkName }/8.2.6-1.1/.content/bin/${props .programName } --version
3838${props .branding }8.2.6
3939` } </CodeBlock >
4040
Original file line number Diff line number Diff 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 = " windows" label = " Windows" default >
1717
1818<CodeBlock language = " console" > {
19- ` C:\\ > %USERPROFILE%\\ AppData\\ Roaming\\ xPacks\\ ${props .shortName }\\ xpack-${props .shortName }-8.2.6-1\\ bin\\ ${props .programName }.exe --version
19+ ` C:\\ > %USERPROFILE%\\ AppData\\ Roaming\\ xPacks\\ ${props .permalinkName }\\ xpack-${props .permalinkName }-8.2.6-1\\ bin\\ ${props .programName }.exe --version
2020${props .branding }8.2.6
2121` } </CodeBlock >
2222
@@ -25,7 +25,7 @@ ${props.branding}8.2.6
2525<TabItem value = " macos" label = " macOS" >
2626
2727<CodeBlock language = " console" > {
28- ` % ~/Library/xPacks/${props .shortName }/xpack-${props .shortName }-8.2.6-1/bin/${props .programName } --version
28+ ` % ~/Library/xPacks/${props .permalinkName }/xpack-${props .permalinkName }-8.2.6-1/bin/${props .programName } --version
2929${props .branding }8.2.6
3030` } </CodeBlock >
3131
@@ -34,7 +34,7 @@ ${props.branding}8.2.6
3434<TabItem value = " linux" label = " GNU/Linux" >
3535
3636<CodeBlock language = " console" > {
37- ` $ ~/.local/xPacks/${props .shortName }/xpack-${props .shortName }-8.2.6-1/bin/${props .programName } --version
37+ ` $ ~/.local/xPacks/${props .permalinkName }/xpack-${props .permalinkName }-8.2.6-1/bin/${props .programName } --version
3838${props .branding }8.2.6
3939` } </CodeBlock >
4040
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ import AutomaticInstallQuickTest from '../_common/_automatic-install-quick-test.
66{ /* ------------------------------------------------------------------------ */ }
77
88<AutomaticInstallQuickTest
9- longName = " QEMU RISC-V"
10- shortName = " qemu-riscv"
9+ descriptiveName = " QEMU RISC-V"
10+ permalinkName = " qemu-riscv"
1111 programName = " qemu-system-riscv32"
1212 branding = " xPack QEMU emulator version "
1313/>
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ import ManualInstallQuickTest from '../_common/_manual-install-quick-test.mdx';
66{ /* ------------------------------------------------------------------------ */ }
77
88<ManualInstallQuickTest
9- longName = " QEMU RISC-V"
10- shortName = " qemu-riscv"
9+ descriptiveName = " QEMU RISC-V"
10+ permalinkName = " qemu-riscv"
1111 programName = " qemu-system-riscv32"
1212 branding = " xPack QEMU emulator version "
1313/>
You can’t perform that action at this time.
0 commit comments