Skip to content

Commit d54e403

Browse files
committed
website: updates
1 parent aa419e3 commit d54e403

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

website/docs/about/_common/_history-xbb-v5.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
The project received a significant update by transitioning the build
77
scripts from the cumbersome monolithic XBB Docker images to the more
8-
flexible and modular xPacks. XBB version
8+
flexible and modular **xpm** packages. XBB version
99
[5.0.0](https://xpack.github.io/blog/2023/02/07/xbb-v5.0.0-released/)
1010
marked a major milestone for the xPack project, as it was the first
1111
self-sustained release. This version enabled the creation of new
12-
binary xPacks using existing binary xPacks, eliminating the need for
12+
binary packages using existing binary packages, eliminating the need for
1313
custom Docker images or other compiled tools.

website/docs/about/_common/_website-docusaurus-template.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
{/* ------------------------------------------------------------------------ */}
55

6-
In **{props.date}** the website content was added in the `website` folder,
6+
In **{props.date || 'DATE'}** the website content was added in the `website` folder,
77
as an instance of the Docusaurus template. Additionally a GitHub Action
88
was added to automatically publish the site upon any pushes to the
99
`website` Git branch.

website/docs/getting-started/index.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,20 +84,20 @@ same repositories as **npm**, whether public or private.
8484
The packages (usually regular archives, but also git repositories),
8585
are extracted into separate folders within the project.
8686

87-
Based on the content, there are two types of packets:
87+
Based on the content, there are two types of packages:
8888

89-
- **source xPacks** (that install source files, usually libraries) and
90-
- **binary xPacks** (that install executables/binary files, usually tools).
89+
- **source packages** (that install source files, usually libraries) and
90+
- **binary packages** (that install executables/binary files, usually tools).
9191

92-
The binary xPacks include references to archives with the platform specific
92+
Binary packages include references to archives with the platform specific
9393
binaries (such as `.tar.gz` for Unix or `.zip` for Windows).
9494

9595
These archives are also expanded along the package metadata. Since they
9696
include executables, links/forwarders to
9797
these executables are created in a `.bin` folder,
9898
eliminating the need to add multiple folders to the `PATH`.
9999

100-
Given that some binary xPacks, such as toolchains, can have very large
100+
Given that some binary packages, such as toolchains, can have very large
101101
archives, the packages are extracted only once into a user global location to
102102
conserve space. In projects, instead of duplicating the content of these
103103
archives, symbolic links are created.
@@ -128,7 +128,7 @@ feasible.
128128
</details>
129129

130130
Similarly to [flatpacks](https://flatpak.org) or [snap](https://snapcraft.io),
131-
but significantly simpler, xPacks include all dependent shared libraries
131+
but significantly simpler, xpm packages include all dependent shared libraries
132132
within the distributed archives, making the binaries independent of
133133
any similar libraries installed on the system. This ensures they
134134
can run on any system without needing specific libraries to be

website/src/pages/index.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,20 @@ import React from 'react';
1616
import clsx from 'clsx';
1717
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
1818
import Layout from '@theme/Layout';
19+
import HeadTitle from '@site/src/components/HeadTitle';
1920

2021
import styles from './index.module.css';
2122
import HomepageFeatures from '@site/src/components/HomepageFeatures';
23+
2224
import HomepageTools from '@site/src/components/HomepageTools';
25+
2326
import InstallWithCopy from '@site/src/components/InstallWithCopy';
2427

2528
function HomepageHeader() {
2629
const {siteConfig} = useDocusaurusContext();
2730
return (
2831
<header className={clsx('hero hero--primary', styles.heroBanner)}>
32+
<HeadTitle title="Welcome to the xPack Binary Development Tools!" />
2933
<div className="container">
3034
<h1 className="hero__title">{siteConfig.title}</h1>
3135
<p className="hero__subtitle">{siteConfig.tagline}</p>

website/tools.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
*/
1111

1212
const tools = {
13-
/* When updated, don't forget to add sitemap to robots.txt! */
1413
mainTools: [
1514
{
1615
appName: 'GNU AArch64 Embedded GCC',

0 commit comments

Comments
 (0)