Skip to content

Commit 835c329

Browse files
committed
regenerate website commons
1 parent a3a230c commit 835c329

File tree

121 files changed

+4708
-4158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+4708
-4158
lines changed

website/blog/_common/_deprecation-notices-glib-2.27.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Support for RedHat 7 was dropped in 2022.
1313

1414
### 32-bit support
1515

16-
Support for 32-bit x86 GNU/Linux and x86 Windows was
16+
Support for 32-bit x64 GNU/Linux and x64 Windows was
1717
dropped in 2022.
1818

1919
### Pre-deprecation notice for 32-bit Arm GNU/Linux

website/blog/_common/_deprecation-notices-glib-2.28.mdx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,16 @@ Support for Ubuntu 18 was dropped in 2025.
1414

1515
### 32-bit support
1616

17-
Support for 32-bit x86 GNU/Linux and x86 Windows was
17+
Support for 32-bit x64 GNU/Linux and x64 Windows was
1818
dropped in 2022 and for 32-bit Arm GNU/Linux in 2025.
19+
20+
### Pre-deprecation notice for x64 macOS
21+
22+
Apple has discontinued support for the x64 (Intel) architecture.
23+
GitHub will no longer support this architecture on macOS after the
24+
macOS 15 runner image is retired in **November 2027**; building
25+
and testing x64 macOS binaries will become more difficult, requiring
26+
a self-hosted runner, and cannot be guaranteed in the long term.
27+
28+
You should begin migrating your projects to arm64-based (Apple Silicon)
29+
binaries to prepare for this possible deprecation.

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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ import {PageMetadata} from '@docusaurus/theme-common';
3434
import Image from '@theme/IdealImage';
3535
import CodeBlock from '@theme/CodeBlock';
3636

37-
import Prerequisites from './_common/_prerequisites-glib-2.27.mdx';
38-
import DeprecationNotices from './_common/_deprecation-notices-glib-2.27.mdx';
37+
import Prerequisites from './_common/_prerequisites-glib-2.28.mdx';
38+
import DeprecationNotices from './_common/_deprecation-notices-glib-2.28.mdx';
3939
import DownloadAnalytics from './_common/_download-analytics.mdx';
4040

4141
TODO: select one summary
@@ -54,13 +54,13 @@ is a standalone cross-platform binary distribution of
5454

5555
There are separate binaries for **Windows** (x64),
5656
**macOS** (x64 and arm64)
57-
and **GNU/Linux** (x64, arm64 and arm).
57+
and **GNU/Linux** (x64 and arm64).
5858

5959
:::note Raspberry Pi
6060

6161
The main targets for the GNU/Linux Arm
62-
binaries are the **Raspberry Pi** class devices (armv7l and aarch64;
63-
armv6 is not supported).
62+
binaries are the **Raspberry Pi** class devices (aarch64;
63+
armv6 and armv7l are not supported).
6464

6565
:::
6666

@@ -157,7 +157,6 @@ Before publishing, a set of simple tests were performed on an exhaustive
157157
set of platforms. The results are available from:
158158

159159
- [GitHub Actions](https://github.com/xpack-dev-tools/meson-build-xpack/actions/)
160-
- [Travis CI](https://app.travis-ci.com/github/xpack-dev-tools/meson-build-xpack/builds/)
161160

162161
## Checksums
163162

website/docs/_common/_branches-details.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
<details>
77
<summary>Branches</summary>
88

9-
The project uses multiple branches:
9+
This project utilises multiple branches:
1010

1111
- `master`, not actively used
12-
- `xpack`, with the latest stable version (default)
13-
- `xpack-development`, with the current development version
14-
- `website`, with the current content of the website; pushes to this branch automatically trigger publishes the main website
15-
- `development`, with the current content of the preview website; pushes to this branch automatically trigger publishes the preview website
12+
- `xpack`, containing the latest stable version (default)
13+
- `xpack-development`, containing the current development version
14+
- `website`, containing the current website content; pushes to this branch automatically trigger publication of the main website
15+
- `development`, containing the current preview website content; pushes to this branch automatically trigger publication of the preview website
1616

17-
All development is done in the `xpack-development` branch, and contributions via
17+
All development is conducted in the `xpack-development` branch, and contributions via
1818
Pull Requests should be directed to this branch.
1919

2020
When new releases are published, the `xpack-development` branch is merged

website/docs/_common/_build-website-locally.mdx

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

66
### Build the static website locally
77

8-
Validate the website content in a local build via the npm **build** script:
8+
Validate the website content by performing a local build using the npm **build** script:
99

1010
```sh
1111
npm run build -C website
1212
```
1313

14-
Fix any broken links, if any.
14+
Resolve any broken links that may be identified during the build process.

website/docs/_common/_code-formatting.mdx

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

66
## Code formatting
77

8-
As formatting style, the library uses a
8+
For formatting style, the library employs a
99
[.clang-format](https://clang.llvm.org/docs/ClangFormat.html)
1010
configuration file based on the GNU style.
1111

12-
Code formatting is done using `clang-format --style=file`, either manually
13-
from a script, or automatically from Visual Studio Code, or the Eclipse
12+
Code formatting is performed using `clang-format --style=file`, either manually
13+
via a script, or automatically through Visual Studio Code, or the Eclipse
1414
CppStyle plug-in.
1515

1616
:::info
1717

18-
Visual Studio Code can directly utilise the `.clang-format` file in the
18+
Visual Studio Code can directly utilise the `.clang-format` file within the
1919
**Format Document** command.
2020

2121
:::
2222

2323
:::tip
2424

25-
Always reformat the source files that were changed before committing
25+
Always reformat the source files that have been modified before committing
2626
them to the repository.
2727

2828
:::

website/docs/_common/_continuous-integration.mdx

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33

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

6-
The library is
7-
CI tested on every push via
8-
[GitHub Actions](https://github.com/xpack-dev-tools/meson-build-xpack/actions),
9-
on Ubuntu, macOS, and Windows.
6+
The library is subject to continuous integration (CI) testing with every
7+
push utilising [GitHub Actions](https://github.com/xpack-dev-tools/meson-build-xpack/actions).
8+
This ensures compatibility and stability across Ubuntu, macOS, and Windows
9+
operating systems.
1010

11-
The tests run on 32 and 64-bit bare-metal platforms (Arm Cortex-M0,
12-
Cortex-M3, Cortex-M4F, Cortex-M7F, Cortex-A15, Cortex-A72, RISC-V RV32IMAC,
13-
RV64IMAFDC), and natively, with GCC and LLVM/clang.
11+
Testing is conducted on both 32-bit and 64-bit bare-metal platforms,
12+
including Arm Cortex-M0, Cortex-M3, Cortex-M4F, Cortex-M7F, Cortex-A15,
13+
Cortex-A72, RISC-V RV32IMAC, and RV64IMAFDC. Additionally, native
14+
testing is performed utilising GCC and LLVM/clang compilers, ensuring
15+
comprehensive validation across various environments.

website/docs/_common/_generate-top-commons.mdx

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

66
### Generate the top commons
77

8-
Run the top **generate-top-commons** npm script to update the
8+
Execute the top **generate-top-commons** npm script to update the
99
`build-assets/package.json` and the GitHub workflow files.
1010

1111
```sh
@@ -14,5 +14,5 @@ Run the top **generate-top-commons** npm script to update the
1414

1515
### Commit the top changes
1616

17-
- stage GitHub workflows and `package.json` files (top and from `build-assets`)
18-
- **commit** with the message _**re-generate top commons to bump deps**_
17+
- Stage GitHub workflows and `package.json` files (top and from `build-assets`)
18+
- **Commit** with the message _**re-generate top commons to bump deps**_

website/docs/_common/_generate-website-commons.mdx

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

66
### Update the website commons
77

8-
Run the **generate-website-commons** npm script from `website/package.json`
9-
in the project folder.
8+
Execute the **generate-website-commons** npm script from `website/package.json`
9+
within the project folder.
1010

1111
```sh
1212
npm run generate-website-commons -C website

website/docs/_common/_get-helper-sources-details.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import CodeBlock from '@theme/CodeBlock';
66
{/* ------------------------------------------------------------------------ */}
77

88
<details>
9-
<summary>Get the writable helper sources (optional, for development purposes)</summary>
9+
<summary>Obtain the writable helper sources (optional, for development purposes)</summary>
1010

11-
The project has a dependency to a common helper, that is normally installed
12-
as a read-only dependency; for development purposes, to be able to make
13-
changes to the scripts located inside the helper, clone the
11+
The project has a dependency on a common helper, which is normally installed
12+
as a read-only dependency; for development purposes, to enable modifications
13+
to the scripts located within the helper, clone the
1414
<code>{props.helperBranchName}</code> branch and link it to the
1515
user's global xPacks store:
1616

@@ -23,13 +23,13 @@ git clone \\
2323
\ ~/Work/${props.helperOrganizationName}/${props.helperProjectName}.git \
2424
`} </CodeBlock>
2525

26-
Or, if the repo was already cloned:
26+
Alternatively, if the repository has already been cloned:
2727

2828
<CodeBlock language="sh"> {
2929
`git -C ~/Work/${props.helperOrganizationName}/${props.helperProjectName}.git pull
3030
`} </CodeBlock>
3131

32-
If a writable instance of this library is needed in another project,
32+
If a writable instance of this library is required in another project,
3333
add a link from the user's global xPacks store to it:
3434

3535
<CodeBlock language="sh"> {

0 commit comments

Comments
 (0)