Skip to content

Commit c10627e

Browse files
authored
New Crowdin updates
1 parent 56b213d commit c10627e

358 files changed

Lines changed: 3082 additions & 2970 deletions

File tree

Some content is hidden

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

babel.config.js

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
---
2+
sidebar_position: 2
3+
sidebar_label: Linear release note template
4+
---
5+
6+
# Linear release note template
7+
8+
Use this template when asking a Linear agent to draft Unraid OS release notes from a release project, milestone, or issue list.
9+
10+
## Linear agent prompt
11+
12+
Copy this prompt into Linear, then replace the bracketed values before running it.
13+
14+
```markdown
15+
Draft Unraid OS release notes for [VERSION] using the linked Linear issues, pull requests, package diff, and security notes.
16+
17+
Release context:
18+
- Version: [VERSION]
19+
- Release date: [YYYY-MM-DD]
20+
- Previous release: [PREVIOUS_VERSION]
21+
- Release type: [stable / bugfix / security / beta / release candidate]
22+
- Audience: Unraid OS users upgrading from [PREVIOUS_VERSION]
23+
- Source scope: [Linear project, milestone, label, or issue list]
24+
25+
Output only the final release note Markdown. Do not include process notes, issue IDs, internal-only implementation details, or unsupported claims.
26+
27+
Follow this structure:
28+
29+
# Version [VERSION] [YYYY-MM-DD]
30+
31+
[One short summary paragraph. Mention the most important user-facing themes: security, kernel, Docker, storage, WebGUI, virtualization, licensing, hardware support, API, or package updates.]
32+
33+
[Optional recommendation sentence for security or important bugfix releases.]
34+
35+
## Upgrading
36+
37+
For step-by-step instructions, see [Updating Unraid](/unraid-os/updating-unraid/). Questions about your [license](/unraid-os/troubleshooting/licensing-faq/)?
38+
39+
### Known issues
40+
41+
[List release-specific known issues. If there are no new release-specific known issues, refer to the previous relevant release notes.]
42+
43+
### Notes
44+
45+
[Optional operational notes that are important but not bugs, warnings, or rollback blockers.]
46+
47+
### Rolling back
48+
49+
[List rollback warnings and compatibility limits. Include prior-release links when users need to read earlier rollback notes.]
50+
51+
## BREAKING CHANGES
52+
53+
[Include only when the release changes behavior, configuration, compatibility, data format, upgrade safety, rollback safety, or user workflows in a way users must act on.]
54+
55+
## Changes vs. [PREVIOUS_VERSION_LINK_TEXT]([PREVIOUS_VERSION_LINK])
56+
57+
### Security
58+
59+
- Security: [User-facing security fix, CVE coverage, or hardening change.]
60+
61+
### Containers / Docker
62+
63+
- New: [New Docker or container capability.]
64+
- Improvement: [Improved Docker or container behavior.]
65+
- Fix: [Corrected Docker or container issue.]
66+
67+
### Storage
68+
69+
- New: [New storage capability.]
70+
- Improvement: [Improved storage behavior.]
71+
- Fix: [Corrected storage issue.]
72+
73+
### WebGUI / System
74+
75+
- New: [New WebGUI or system capability.]
76+
- Improvement: [Improved WebGUI or system behavior.]
77+
- Fix: [Corrected WebGUI or system issue.]
78+
79+
### File Manager
80+
81+
- Improvement: [Improved File Manager behavior.]
82+
- Fix: [Corrected File Manager issue.]
83+
84+
### Networking / Hardware
85+
86+
- New: [New networking or hardware support.]
87+
- Improvement: [Improved networking or hardware behavior.]
88+
- Fix: [Corrected networking or hardware issue.]
89+
90+
### Virtualization
91+
92+
- New: [New VM capability.]
93+
- Improvement: [Improved VM behavior.]
94+
- Fix: [Corrected VM issue.]
95+
96+
### Unraid API
97+
98+
- Update Unraid API to dynamix.unraid.net [VERSION] - [see changes](https://github.com/unraid/api/releases).
99+
- Fix: [Corrected API issue.]
100+
101+
### Linux kernel
102+
103+
- Linux kernel: update to `[KERNEL_VERSION]-Unraid`.
104+
- Security: [Kernel CVE coverage, when applicable.]
105+
106+
### Base distro updates
107+
108+
#### Removed packages ([COUNT])
109+
110+
- [package]: version [VERSION] removed
111+
112+
#### Downgraded packages ([COUNT])
113+
114+
- [package]: version [OLD_VERSION] -> [NEW_VERSION]
115+
116+
#### Added packages ([COUNT])
117+
118+
- [package]: version [VERSION]
119+
120+
#### Updated packages ([COUNT])
121+
122+
- [package]: version [OLD_VERSION] -> [NEW_VERSION] [(CVE list, when applicable)]
123+
```
124+
125+
## Drafting rules
126+
127+
- Lead with user impact. Convert engineering notes into what changed for users, administrators, or upgrade safety.
128+
- Keep bullets concise and factual. Do not include internal project names, issue IDs, branch names, commit hashes, or implementation details unless they matter to users.
129+
- Use the prefixes `New:`, `Improvement:`, `Fix:`, and `Security:` consistently in change sections.
130+
- Group related items under the most specific heading. Use `WebGUI / System` for broad UI, settings, system-service, licensing-state, and notification changes.
131+
- Include a `BREAKING CHANGES` section only when users must change behavior or when rollback, compatibility, networking, storage, data, or configuration behavior changes.
132+
- Do not invent CVEs, affected packages, package versions, rollback warnings, known issues, or upgrade recommendations. If the source material is unclear, write `[NEEDS CONFIRMATION: ...]`.
133+
- Preserve public source links when they help users verify details, such as upstream release notes, user reports, or related docs.
134+
- Prefer docs links in this format: `/unraid-os/release-notes/[VERSION]/`.
135+
- Use **bold** for UI labels and **_bold italics_** for navigation paths, such as **_Settings → Disk Settings_**.
136+
- Use inline code for package names, commands, config keys, paths, versions, kernel config symbols, and error strings.
137+
- Remove unused optional sections before publishing.
138+
139+
## Release-note checklist
140+
141+
Before publishing, confirm that:
142+
143+
- The heading is `# Version [VERSION] [YYYY-MM-DD]`.
144+
- The summary mentions the most important changes without repeating every section.
145+
- Upgrade, known issue, and rollback notes are accurate for this release.
146+
- Security claims match confirmed advisories or package changelogs.
147+
- Package counts match the package lists.
148+
- Previous-release links point to the correct version.
149+
- Optional sections with placeholders have been removed.

docs/unraid-connect/overview-and-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ When you click **Details** on a server, you will see:
115115

116116
:::tip
117117

118-
For full remote administration, prefer the official [%%Tailscale|tailscale%% integration](../unraid-os/system-administration/secure-your-server/tailscale.mdx). It gives you private remote access to the %%WebGUI|web-gui%% and services without exposing them to the public internet.
118+
For full remote administration, prefer the official [Tailscale integration](../unraid-os/system-administration/secure-your-server/tailscale.mdx). It gives you private remote access to the %%WebGUI|web-gui%% and services without exposing them to the public internet.
119119

120120
:::
121121

docs/unraid-connect/remote-access.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ sidebar_label: Remote access
55

66
# Remote access
77

8-
This page covers **Unraid Connect Remote Access**, which publishes your %%WebGUI|web-gui%% to the internet by using either %%UPnP|upnp%% or a manual port forwarding rule on your router. If you want full remote management without exposing the %%WebGUI|web-gui%% to WAN traffic, prefer the official [%%Tailscale|tailscale%% integration](../unraid-os/system-administration/secure-your-server/tailscale.mdx). For more advanced needs, such as connecting to Docker containers or accessing network drives, a %%VPN Tunnel|vpn-tunnel%% remains the recommended solution.
8+
This page covers **Unraid Connect Remote Access**, which publishes your %%WebGUI|web-gui%% to the internet by using either %%UPnP|upnp%% or a manual port forwarding rule on your router. If you want full remote management without exposing the %%WebGUI|web-gui%% to WAN traffic, prefer the official [Tailscale integration](../unraid-os/system-administration/secure-your-server/tailscale.mdx). For more advanced needs, such as connecting to Docker containers or accessing network drives, a %%VPN Tunnel|vpn-tunnel%% remains the recommended solution.
99

1010
:::important[Security reminder]
1111

12-
Before enabling remote access, ensure your root password is strong and unique. Update it on the **Users** page if required. Additionally, keep your Unraid OS updated to the latest version to protect against security vulnerabilities. [Learn more about updating Unraid here](../unraid-os/system-administration/maintain-and-update/upgrading-unraid.mdx).
12+
Before enabling remote access, ensure your root password is strong and unique. Update it on the **Users** page if required. Additionally, keep your Unraid OS updated to the latest version to protect against security vulnerabilities. [Learn more about updating Unraid here](/unraid-os/updating-unraid/).
1313

1414
:::
1515

@@ -27,7 +27,7 @@ Remote access through Unraid Connect provides:
2727

2828
:::tip[Preferred approach]
2929

30-
For most users, the official [%%Tailscale|tailscale%% integration](../unraid-os/system-administration/secure-your-server/tailscale.mdx) is the better choice for remote administration because it avoids exposing the %%WebGUI|web-gui%% to the public internet. Use Unraid Connect Remote Access only when you specifically need browser access to the public-facing %%WebGUI|web-gui%% URL.
30+
For most users, the official [Tailscale integration](../unraid-os/system-administration/secure-your-server/tailscale.mdx) is the better choice for remote administration because it avoids exposing the %%WebGUI|web-gui%% to the public internet. Use Unraid Connect Remote Access only when you specifically need browser access to the public-facing %%WebGUI|web-gui%% URL.
3131

3232
:::
3333

@@ -56,7 +56,7 @@ In current Unraid 7.2.x releases, the Unraid API settings page exposes these rem
5656

5757
When remote access is set to **Always**, your %%WebGUI|web-gui%% is continuously reachable from the internet on the configured WAN port. Both **Static** and **UPnP** remote access publish the %%WebGUI|web-gui%% to WAN traffic. Use a strong root password, keep Unraid OS updated, and disable remote access when you do not need it.
5858

59-
Dynamic, on-demand remote access is not currently exposed in the Unraid API settings page. If you need remote management without keeping the %%WebGUI|web-gui%% exposed through port forwarding, prefer [%%Tailscale|tailscale%%](../unraid-os/system-administration/secure-your-server/tailscale.mdx) or another %%VPN Tunnel|vpn-tunnel%%.
59+
Dynamic, on-demand remote access is not currently exposed in the Unraid API settings page. If you need remote management without keeping the %%WebGUI|web-gui%% exposed through port forwarding, prefer [Tailscale](../unraid-os/system-administration/secure-your-server/tailscale.mdx) or another %%VPN Tunnel|vpn-tunnel%%.
6060

6161
## Enable remote access
6262

docs/unraid-os/getting-started/set-up-unraid/create-your-bootable-media.mdx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For typical USB installs, that means a quality USB flash drive; licensing depend
1515

1616
:::
1717

18-
## Automated install method
18+
## Automated install method {/* #automated-install-method */}
1919

2020
The automated installation method is the best way to set up Unraid OS. It simplifies the process, reduces errors, and ensures your USB flash drive is ready for most hardware configurations. This method offers the quickest and most reliable path to a successful installation for most users.
2121

@@ -38,17 +38,15 @@ The automated installation method is the best way to set up Unraid OS. It simpli
3838
6. **Boot into Unraid OS:**
3939
Save your BIOS configuration, then exit to boot into Unraid OS.
4040

41-
## Manual install method
41+
## Manual install method {/* #manual-install-method */}
4242

4343
The manual installation method is designed for situations where the USB Flash Creator tool is either unavailable or incompatible with your hardware. This approach provides complete control over the formatting and setup process, making it ideal for advanced users or for troubleshooting specific issues with a USB device.
4444

45-
<a id="choosing-a-usb-flash-drive"></a>
46-
47-
### Choosing a boot device
45+
### Choosing a boot device {/* #choosing-a-usb-flash-drive */}
4846

4947
<FlashDriveGuidance />
5048

51-
### Prepare your USB device
49+
### Prepare your USB device {/* #prepare-your-usb-device */}
5250

5351
1. Plug in the USB drive you are preparing as the boot device.
5452
2. Format it to FAT32 (**not** ex-FAT or NTFS).

docs/unraid-os/system-administration/maintain-and-update/changing-the-flash-device.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,7 @@ A single power outage or incomplete write can sometimes cause minor corruption,
7777

7878
There are two ways to replace your Unraid boot device: the recommended [USB Flash Creator](https://unraid.net/download) tool for Windows or macOS (for USB boot media), or the manual method for advanced users. **Always back up your boot device before starting.**
7979

80-
<a id="backing-up-your-flash-device"></a>
81-
82-
### Backing up your boot device
80+
### Backing up your boot device {/* #backing-up-your-flash-device */}
8381

8482
<Tabs>
8583
<TabItem value="webgui" label="Using the WebGUI" default>

docs/unraid-os/system-administration/secure-your-server/secure-your-boot-drive.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The boot device is essential to your Unraid server, as it stores all configurati
1111

1212
<WebguiBootDeviceLabels />
1313

14-
## Backups
14+
## Backups {/* #backups */}
1515

1616
Having a recent backup of your boot device ensures you can quickly recover from hardware failures, accidental changes, or data corruption. Be sure to create backups in the following situations:
1717

docs/unraid-os/system-administration/secure-your-server/secure-your-outgoing-comms.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ There are three main methods to secure your outgoing communications:
2525

2626
For most users, solutions like [Tailscale](./tailscale.mdx) or [WireGuard](./wireguard.mdx) are preferred for full-system security and privacy. Use Outgoing Proxy Manager when you only need to proxy Unraid's own HTTP requests.
2727

28-
### Setting up a proxy server
28+
### Setting up a proxy server {/* #setting-up-a-proxy-server */}
2929

3030
To set up a proxy server:
3131

@@ -64,7 +64,7 @@ To monitor proxy traffic, go to the **Docker** tab on the proxy host system, sel
6464

6565
For additional information about plugin development and compatibility, visit the [Plugins section of the documentation](../../using-unraid-to/customize-your-experience/plugins.mdx).
6666

67-
## Tailscale exit nodes
67+
## Tailscale exit nodes {/* #tailscale-exit-nodes */}
6868

6969
%%Tailscale|tailscale%% exit nodes offer a secure and modern way to route your Unraid server's outgoing traffic through another device on your %%Tailnet|tailnet%%. This setup provides the security of a %%VPN|vpn-tunnel%% while leveraging %%Tailscale|tailscale%%'s easy-to-use mesh networking, making it ideal for users who want encrypted outgoing traffic without the complexity of traditional %%VPN|vpn-tunnel%%s.
7070

@@ -102,7 +102,7 @@ You can also set up a Docker container to function as a %%Tailscale|tailscale%%
102102
3. **Approve the exit node** in your %%Tailscale|tailscale%% admin console.
103103
4. **Select the container** as an exit node for your other devices on the %%Tailnet|tailnet%%.
104104

105-
## Outgoing VPN connections
105+
## Outgoing VPN connections {/* #outgoing-vpn-connections */}
106106

107107
Unraid supports outgoing WireGuard VPN connections to commercial providers, allowing you to route Docker containers or your entire server’s traffic through a secure tunnel. This is useful for privacy, bypassing geo-restrictions, or securing outbound data. For community insights and troubleshooting, see the [WireGuard VPN tunneled access forum thread](https://forums.unraid.net/topic/84316-wireguard-vpn-tunneled-access/).
108108

docs/unraid-os/system-administration/secure-your-server/securing-your-data.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Encryption increases your data security, but can complicate recovery from hardwa
2424

2525
</details>
2626

27-
## How to encrypt a drive in Unraid
27+
## How to encrypt a drive in Unraid {/* #how-to-encrypt-a-drive-in-unraid */}
2828

2929
:::warning
3030

docs/unraid-os/system-administration/secure-your-server/user-management.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Share users...
6262

6363
---
6464

65-
## Add users
65+
## Add users {/* #add-users */}
6666

6767
To connect to shared files on Unraid from another device, you'll need a username and password. These credentials are separate from the ones you might use for specific applications running in containers, which have their own login information.
6868

@@ -124,7 +124,7 @@ To modify a user account:
124124

125125
---
126126

127-
## Reset your password
127+
## Reset your password {/* #reset-your-password */}
128128

129129
If you've forgotten your %%root|root-user%% password, don't worry! Here are two simple methods to regain access to your Unraid server. You'll need physical access to your **[boot device](../../system-administration/maintain-and-update/changing-the-flash-device.mdx)** (for example the USB drive) and another computer.
130130

0 commit comments

Comments
 (0)