From cecc9ec3c992b0bfd680bd9086459b481e05c1b9 Mon Sep 17 00:00:00 2001 From: Jerod Fritz Date: Fri, 3 Apr 2026 08:36:50 -0400 Subject: [PATCH 1/3] Link to Klara systems in recent blog --- docs/blog/2026-04-02.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/blog/2026-04-02.md b/docs/blog/2026-04-02.md index ada2136..896c3e2 100644 --- a/docs/blog/2026-04-02.md +++ b/docs/blog/2026-04-02.md @@ -40,7 +40,7 @@ HexOS started with a simple idea: owning a home server shouldn't require an IT b Under the hood, TrueNAS provides the enterprise-grade storage backbone that businesses have trusted for years. HexOS is the orchestration layer on top, bringing that same level of resiliency to every user through proper app configurations, guided storage management, and a polished interface that stays out of your way. -We're also investing in the future of the filesystem itself. Our [sponsorship of ZFS AnyRaid](/blog/2025-05-22), developed by the team at Klara, Inc., is solving one of ZFS's longest-standing limitations: the inability to efficiently mix drives of different sizes. AnyRaid will bring real versatility to the most modern filesystem in the world, and it benefits everyone. HexOS isn't just your software. Through partnerships like these, we're paving the way for the future of data storage. +We're also investing in the future of the filesystem itself. Our [sponsorship of ZFS AnyRaid](/blog/2025-05-22), developed by the team at [Klara Systems](https://klarasystems.com/), is solving one of ZFS's longest-standing limitations: the inability to efficiently mix drives of different sizes. AnyRaid will bring real versatility to the most modern filesystem in the world, zfs, and it benefits everyone. HexOS isn't just your software. Through partnerships like these, we're paving the way for the future of data storage. ## What's Next From 547f8d59197b71e2118d413057e55542666521c9 Mon Sep 17 00:00:00 2001 From: Jerod Fritz Date: Fri, 3 Apr 2026 10:47:34 -0400 Subject: [PATCH 2/3] Add release notes landing page and update sidebar navigation Creates a central landing page for release notes that provides context for both HexOS Command Deck updates and TrueNAS version links. The sidebar is updated to nest specific release notes under this new landing page, and the automation script now dynamically updates the "Latest" release link on the landing page. --- docs/.vitepress/sidebar.ts | 9 ++++- docs/release-notes/index.md | 23 ++++++++++++ scripts/generateReleaseNotesIndex.mjs | 50 ++++++++++++++++++++++++++- 3 files changed, 80 insertions(+), 2 deletions(-) create mode 100644 docs/release-notes/index.md diff --git a/docs/.vitepress/sidebar.ts b/docs/.vitepress/sidebar.ts index 5fc2a88..fdde3be 100644 --- a/docs/.vitepress/sidebar.ts +++ b/docs/.vitepress/sidebar.ts @@ -145,9 +145,14 @@ const sidebar: DefaultTheme.SidebarItem[] = [ }, { text: 'Release Notes', - link: '/release-notes/command-deck/', + link: '/release-notes/', collapsed: true, items: [ + { + text: 'Command Deck', + link: '/release-notes/command-deck/', + collapsed: true, + items: [ // auto-generated-release-notes-start { text: '2026-03-27', link: '/release-notes/command-deck/2026-03-27' }, { text: '2026-03-24', link: '/release-notes/command-deck/2026-03-24' }, @@ -171,6 +176,8 @@ const sidebar: DefaultTheme.SidebarItem[] = [ { text: '2025-01-08', link: '/release-notes/command-deck/2025-01-08' }, { text: '2024-11-29', link: '/release-notes/command-deck/2024-11-29' }, // auto-generated-release-notes-end + ] + }, ] }, { diff --git a/docs/release-notes/index.md b/docs/release-notes/index.md new file mode 100644 index 0000000..3c9bda2 --- /dev/null +++ b/docs/release-notes/index.md @@ -0,0 +1,23 @@ +# Release Notes + +Stay up to date with the latest changes to HexOS and the underlying TrueNAS platform. + +## HexOS Command Deck + +The Command Deck is the HexOS web interface. Updates are automatically deployed — no action needed on your part. + +**[View Command Deck Release Notes →](/release-notes/command-deck/)** + +**Latest:** [2026-03-27 — Hotfix : Apps Newly Curated](/release-notes/command-deck/2026-03-27) + +## TrueNAS + +HexOS is built on TrueNAS. You will be prompted to update as future compatibility with TrueNAS becomes available. + +**[View TrueNAS Version Notes →](https://www.truenas.com/docs/scale/25.10/gettingstarted/versionnotes/)** + +| Train | Version | TrueNAS Docs | +|-------|---------|-------------| +| Goldeye | 25.10 | [Version Notes](https://www.truenas.com/docs/scale/25.10/gettingstarted/versionnotes/) | +| Fangtooth | 25.04 | [Version Notes](https://www.truenas.com/docs/scale/25.04/gettingstarted/versionnotes/) | +| Electric Eel | 24.10 | [Version Notes](https://www.truenas.com/docs/scale/24.10/gettingstarted/versionnotes/) | diff --git a/scripts/generateReleaseNotesIndex.mjs b/scripts/generateReleaseNotesIndex.mjs index cf41344..85bf5a5 100644 --- a/scripts/generateReleaseNotesIndex.mjs +++ b/scripts/generateReleaseNotesIndex.mjs @@ -8,6 +8,7 @@ const DOCS_DIR = process.env.DOCS_DIR || 'docs' const RELEASE_NOTES_DIR = path.resolve(__dirname, '..', DOCS_DIR, 'release-notes/command-deck') const INDEX_MD = path.resolve(RELEASE_NOTES_DIR, 'index.md') +const RELEASE_NOTES_LANDING = path.resolve(__dirname, '..', DOCS_DIR, 'release-notes/index.md') const SIDEBAR_TS = path.resolve(__dirname, '..', DOCS_DIR, '.vitepress/sidebar.ts') // Sidebar automation markers @@ -229,5 +230,52 @@ function updateSidebar() { } } +function updateLandingPage(releases) { + // Sort descending, pick the latest + releases.sort((a, b) => b.sortDate - a.sortDate) + const latest = releases[0] + + const latestLine = latest + ? `**Latest:** [${latest.formattedDate} — ${latest.description}](/release-notes/command-deck/${latest.filename})` + : '' + + const content = `# Release Notes + +Stay up to date with the latest changes to HexOS and the underlying TrueNAS platform. + +## HexOS Command Deck + +The Command Deck is the HexOS web interface. Updates are automatically deployed — no action needed on your part. + +**[View Command Deck Release Notes →](/release-notes/command-deck/)** + +${latestLine} + +## TrueNAS + +HexOS is built on TrueNAS. You will be prompted to update as future compatibility with TrueNAS becomes available. + +**[View TrueNAS Version Notes →](https://www.truenas.com/docs/scale/25.10/gettingstarted/versionnotes/)** + +| Train | Version | TrueNAS Docs | +|-------|---------|-------------| +| Goldeye | 25.10 | [Version Notes](https://www.truenas.com/docs/scale/25.10/gettingstarted/versionnotes/) | +| Fangtooth | 25.04 | [Version Notes](https://www.truenas.com/docs/scale/25.04/gettingstarted/versionnotes/) | +| Electric Eel | 24.10 | [Version Notes](https://www.truenas.com/docs/scale/24.10/gettingstarted/versionnotes/) | +` + + fs.writeFileSync(RELEASE_NOTES_LANDING, content) + console.log('Wrote', RELEASE_NOTES_LANDING) +} + +// Get all releases once, share across functions +const allFiles = fs.readdirSync(RELEASE_NOTES_DIR) + .filter(f => f.endsWith('.md') && f !== 'index.md' && f.match(/^\d{4}-\d{2}-\d{2}\.md$/)) + +const allReleases = allFiles + .map(f => parseReleaseNote(path.join(RELEASE_NOTES_DIR, f))) + .filter(r => r !== null) + updateIndexPage() -updateSidebar() \ No newline at end of file +updateSidebar() +updateLandingPage(allReleases) \ No newline at end of file From 8f01f0bf1d43a6b5c8d201f24d1bb4250463f2a9 Mon Sep 17 00:00:00 2001 From: Jerod Fritz Date: Fri, 3 Apr 2026 10:58:21 -0400 Subject: [PATCH 3/3] Update community links and references from HexOS Hub to Discord Migrates community engagement and support links from the forum (hub.hexos.com) to the official Discord server. This includes updating documentation text, release notes, and script templates, as well as simplifying contributor by-lines by removing forum profile links. --- README.md | 2 +- docs/articles/selectingDrives.md | 2 +- docs/blog/2025-12-26.md | 4 ++-- docs/community/community-guides/ImmichMigrationMove.md | 4 ++-- docs/community/community-guides/ImmichMigrationRsync.md | 2 +- .../community-guides/ReplicatingVirtualMachines.md | 2 +- docs/community/community-guides/SettingUpTailscale.md | 2 +- docs/community/how-to-contribute/index.md | 2 +- docs/community/index.md | 4 ++-- docs/features/apps/articles/index.md | 2 +- docs/getting-started/installation/InstallGuide.md | 6 +++--- docs/getting-started/overview.md | 2 +- docs/getting-started/setup/CompleteSetup.md | 2 +- docs/release-notes/command-deck/2024-11-29.md | 2 +- docs/release-notes/command-deck/2025-11-25.md | 2 +- docs/release-notes/command-deck/2025-12-26.md | 2 +- docs/release-notes/command-deck/2026-03-24.md | 4 ++-- docs/release-notes/command-deck/index.md | 2 +- docs/troubleshooting/common-issues/ClearCache.md | 2 +- docs/troubleshooting/common-issues/index.md | 2 +- docs/troubleshooting/index.md | 4 ++-- scripts/generateReleaseNotesIndex.mjs | 2 +- 22 files changed, 29 insertions(+), 29 deletions(-) diff --git a/README.md b/README.md index ef46b5c..bb032e3 100644 --- a/README.md +++ b/README.md @@ -108,4 +108,4 @@ docs/ ## Get Help - **Found a bug in the docs?** [Open an issue](https://github.com/Eshtek/hexos-docs/issues) -- **Need help with HexOS?** Visit the [HexOS Community](https://hub.hexos.com/) or contact support directly at support@hexos.com +- **Need help with HexOS?** Visit the [HexOS Community](https://discord.gg/fCW2htvYdz) or contact support directly at support@hexos.com diff --git a/docs/articles/selectingDrives.md b/docs/articles/selectingDrives.md index 4275700..4c84e4e 100644 --- a/docs/articles/selectingDrives.md +++ b/docs/articles/selectingDrives.md @@ -48,4 +48,4 @@ If you start with HDDs and add SSDs later, there will be a migration process to ## Need More Help? -If you have more questions regarding storage and drives, please consider [posting in our forums!](https://hub.hexos.com/) +If you have more questions regarding storage and drives, please consider [posting in our Discord!](https://discord.gg/fCW2htvYdz) diff --git a/docs/blog/2025-12-26.md b/docs/blog/2025-12-26.md index 9969a89..64e0e81 100644 --- a/docs/blog/2025-12-26.md +++ b/docs/blog/2025-12-26.md @@ -49,7 +49,7 @@ Each of these apps has been carefully curated with optimized configurations to w One of the most exciting features in this release is automatic GPU detection and configuration. HexOS now intelligently identifies available GPU resources and automatically attaches them to applications that can benefit from hardware acceleration and transcoding. -This means apps like Plex and Jellyfin can immediately take advantage of your GPU for smooth, efficient media transcoding without manual configuration. We're eager to hear your experiences with this feature, so please share your feedback in the [forums](https://hub.hexos.com). +This means apps like Plex and Jellyfin can immediately take advantage of your GPU for smooth, efficient media transcoding without manual configuration. We're eager to hear your experiences with this feature, so please share your feedback in the [Discord](https://discord.gg/fCW2htvYdz). ## Smarter Curation Management @@ -89,7 +89,7 @@ The new Apps platform is available now. Here's what we'd love you to do: **Install a GPU-accelerated app** like Plex or Jellyfin and experience automatic hardware acceleration. Let us know how it performs. -**Share your feedback** with us in the forums at [hub.hexos.com](https://hub.hexos.com). Your input directly shapes the future of HexOS. +**Share your feedback** with us in our [Discord](https://discord.gg/fCW2htvYdz). Your input directly shapes the future of HexOS. **Take advantage of our Holiday Sale** before it ends on December 31st. It's the perfect time to expand your HexOS capabilities. [**HexOS lifetime license**](https://hexos.com/#earlyaccess) diff --git a/docs/community/community-guides/ImmichMigrationMove.md b/docs/community/community-guides/ImmichMigrationMove.md index 36741f3..40bbc6d 100644 --- a/docs/community/community-guides/ImmichMigrationMove.md +++ b/docs/community/community-guides/ImmichMigrationMove.md @@ -1,6 +1,6 @@ # Migrating Immich to New Storage Configuration (Move Method) -*by [@G-M0N3Y-2503](https://hub.hexos.com/profile/29328-g-m0n3y-2503/)* +*by @G-M0N3Y-2503* Just adding what I did to get it working for me. However, I received numerous permission warnings for the moves, but they didn't seem to have any ill effect. @@ -8,7 +8,7 @@ My overall plan was to migrate from the old to the new, where the new is how I a :::info Permission Errors During Migration You may see multiple permission denial errors per dataset during the move operations. They occur because ZFS dataset metadata and snapshot attributes cannot be moved with standard `mv` commands. As long as your actual data (photos, videos, etc.) moves successfully, these errors are harmless. The empty datasets can be cleaned up in step 7 after verifying everything works. -*edit by [csmanel](https://hub.hexos.com/profile/27801-csmanel/)* +*edit by csmanel* ::: ## Storage Layout diff --git a/docs/community/community-guides/ImmichMigrationRsync.md b/docs/community/community-guides/ImmichMigrationRsync.md index 18ee40a..bfda8be 100644 --- a/docs/community/community-guides/ImmichMigrationRsync.md +++ b/docs/community/community-guides/ImmichMigrationRsync.md @@ -1,6 +1,6 @@ # Migrating Immich to New Storage Configuration (Rsync Method) -*by [@forsaken](https://hub.hexos.com/profile/17319-forsaken/)* +*by @forsaken* I fixed it! 😁, but it was a pain to do it because rsync and TrueNAS dataset that have ACL don't like each other. diff --git a/docs/community/community-guides/ReplicatingVirtualMachines.md b/docs/community/community-guides/ReplicatingVirtualMachines.md index 5089c92..f06edc9 100644 --- a/docs/community/community-guides/ReplicatingVirtualMachines.md +++ b/docs/community/community-guides/ReplicatingVirtualMachines.md @@ -1,6 +1,6 @@ # Replicating Virtual Machines from one TrueNAS Server to Another -*by [@ShinobiRen](https://hub.hexos.com/profile/27485-shinobiren/?wr=eyJhcHAiOiJmb3J1bXMiLCJtb2R1bGUiOiJmb3J1bXMtY29tbWVudCIsImlkXzEiOjMwNjMsImlkXzIiOjE4MTk2fQ==)* +*by @ShinobiRen* Hello everyone! diff --git a/docs/community/community-guides/SettingUpTailscale.md b/docs/community/community-guides/SettingUpTailscale.md index 43274f9..824f44b 100644 --- a/docs/community/community-guides/SettingUpTailscale.md +++ b/docs/community/community-guides/SettingUpTailscale.md @@ -1,6 +1,6 @@ # Setting Up Tailscale -*by [@speedking456](https://hub.hexos.com/profile/7605-speedking456/?wr=eyJhcHAiOiJmb3J1bXMiLCJtb2R1bGUiOiJmb3J1bXMtY29tbWVudCIsImlkXzEiOjU1MCwiaWRfMiI6Mjk2NX0=)* +*by @speedking456* As a fellow Tailscale enjoyer, this was my first thought when I heard about HexOS, "But does it support Tailscale?" and I can confirm it does! diff --git a/docs/community/how-to-contribute/index.md b/docs/community/how-to-contribute/index.md index e03795d..09333ca 100644 --- a/docs/community/how-to-contribute/index.md +++ b/docs/community/how-to-contribute/index.md @@ -145,4 +145,4 @@ PullPreview can take a minute or two to build. Be patient! If it's taking longer ## Need Help? -If you have any questions or need assistance, be sure to check out the [HexOS Community forums](https://hub.hexos.com/) where you can get help from other contributors and the HexOS team. +If you have any questions or need assistance, be sure to check out the [HexOS Community Discord](https://discord.gg/fCW2htvYdz) where you can get help from other contributors and the HexOS team. diff --git a/docs/community/index.md b/docs/community/index.md index 21819cd..70d0c55 100644 --- a/docs/community/index.md +++ b/docs/community/index.md @@ -26,7 +26,7 @@ Learn more about how to contribute to the docs repository [here](/community/how- Build our community by helping others: -- Answer questions on the [HexOS Community](https://hub.hexos.com/) +- Answer questions on the [HexOS Community](https://discord.gg/fCW2htvYdz) - Share working configurations - Help debug issues - Welcome newcomers @@ -34,7 +34,7 @@ Build our community by helping others: ## Getting Started New to contributing? Start small: -1. Join the [HexOS Community](https://hub.hexos.com/) +1. Join the [HexOS Community](https://discord.gg/fCW2htvYdz) 2. Look for simple documentation fixes 3. Test existing app scripts and report feedback 4. Share your own setup guides \ No newline at end of file diff --git a/docs/features/apps/articles/index.md b/docs/features/apps/articles/index.md index 050b46d..64b08e0 100644 --- a/docs/features/apps/articles/index.md +++ b/docs/features/apps/articles/index.md @@ -17,7 +17,7 @@ For information about creating your own install scripts or contributing to the c If you're experiencing issues with a curated app: 1. Check if there's a guide for your app above -2. Visit the [HexOS Hub](https://hub.hexos.com/) for community discussions +2. Visit the [HexOS Discord](https://discord.gg/fCW2htvYdz) for community discussions 3. Review the app's official documentation For general app installation and management, see the [Apps overview](/features/apps/). diff --git a/docs/getting-started/installation/InstallGuide.md b/docs/getting-started/installation/InstallGuide.md index 1d384f6..a835830 100644 --- a/docs/getting-started/installation/InstallGuide.md +++ b/docs/getting-started/installation/InstallGuide.md @@ -1,6 +1,6 @@ # Illustrated Installation Guide -*by [@Mawson](https://hub.hexos.com/profile/14-mawson/)* with edits by [@gingerling](https://hub.hexos.com/profile/19534-gingerling/) +*by @Mawson with edits by @gingerling* ## Before you Begin @@ -86,14 +86,14 @@ What you see now will depend on how many drives you have in your server. The dri ### User Account Setup - **Important**: Choose the first option: "Administrative user (truenas_admin)" -- If you accidentally select the wrong option, [see this solution](https://hub.hexos.com/topic/103-illustrated-installation-guide-start-here/#findComment-1958) or restart the installation +- If you accidentally select the wrong option, [see this solution](https://hub.hexos.com/topic/103-illustrated-installation-guide-start-here/#findComment-1958) or restart the installation [![User Account Setup](https://hub.hexos.com/uploads/monthly_2024_11/Capture5.PNG.f7af55f85dc45fff3932704006737410.PNG)](https://hub.hexos.com/uploads/monthly_2024_11/Capture5.PNG.f7af55f85dc45fff3932704006737410.PNG "Enlarge image") ### Set Root Password - Set the root password - **Save this password, you'll need it later** -- **Non-US keyboard users**: Be careful with special characters in the password. The installer uses a [US keyboard layout](https://en.wikipedia.org/wiki/British_and_American_keyboards#/media/File:KB_United_States-NoAltGr.svg). [See details here](https://hub.hexos.com/topic/103-illustrated-installation-guide-start-here/page/2/#findComment-8073) +- **Non-US keyboard users**: Be careful with special characters in the password. The installer uses a [US keyboard layout](https://en.wikipedia.org/wiki/British_and_American_keyboards#/media/File:KB_United_States-NoAltGr.svg). [See details here](https://hub.hexos.com/topic/103-illustrated-installation-guide-start-here/page/2/#findComment-8073) [![Root Password Setup](https://hub.hexos.com/uploads/monthly_2024_11/Capture6.PNG.2757a99cb3d6eff2456fae08f5d8af22.PNG)](https://hub.hexos.com/uploads/monthly_2024_11/Capture6.PNG.2757a99cb3d6eff2456fae08f5d8af22.PNG "Enlarge image") diff --git a/docs/getting-started/overview.md b/docs/getting-started/overview.md index 0ee8867..5c9122e 100644 --- a/docs/getting-started/overview.md +++ b/docs/getting-started/overview.md @@ -31,7 +31,7 @@ Do you have an old PC or gaming rig laying around? Can you get your hands on a d TrueNAS provides a [comprehensive hardware guide](https://www.truenas.com/docs/scale/gettingstarted/scalehardwareguide/) that covers all aspects of selecting hardware including minimum system requirements, storage devices/controllers, etc. However, to build an energy efficient server additional research may be required. -You are welcome to introduce yourself to the HexOS community in [the forum](https://hub.hexos.com/), where you can get further guidance and support on your hardware choices. +You are welcome to introduce yourself to the HexOS community in [Discord](https://discord.gg/fCW2htvYdz), where you can get further guidance and support on your hardware choices. ### Buy Pre-Built diff --git a/docs/getting-started/setup/CompleteSetup.md b/docs/getting-started/setup/CompleteSetup.md index 1c2232f..dcad847 100644 --- a/docs/getting-started/setup/CompleteSetup.md +++ b/docs/getting-started/setup/CompleteSetup.md @@ -99,6 +99,6 @@ This is a good point to check that the install has worked well and that your sys Whenever you go to [deck.hexos.com](https://deck.hexos.com) you will see your HexOS [dashboard](/features/). This is your control center where you can monitor your server, manage storage, install apps, and configure settings. -Try clicking on each item on the Dash now and check the details as they pop out from the right hand side of the screen. There should be no warnings or errors and the pool should match what you chose during setup. If you have any problems [try the forums](https://hub.hexos.com/). +Try clicking on each item on the Dash now and check the details as they pop out from the right hand side of the screen. There should be no warnings or errors and the pool should match what you chose during setup. If you have any problems [try our Discord](https://discord.gg/fCW2htvYdz). Ready to explore? Check out our [Features Guide](/features/) to learn about everything HexOS can do! diff --git a/docs/release-notes/command-deck/2024-11-29.md b/docs/release-notes/command-deck/2024-11-29.md index fc6bd69..5a01cee 100644 --- a/docs/release-notes/command-deck/2024-11-29.md +++ b/docs/release-notes/command-deck/2024-11-29.md @@ -35,7 +35,7 @@ Ready to try HexOS Command Deck? Visit [hexos.com](https://hexos.com) to get sta ## Feedback Welcome -As a beta release, we're actively seeking feedback from the community. Join the conversation at [HexOS Community](https://hub.hexos.com/) to share your experiences, report issues, and help shape the future of HexOS. +As a beta release, we're actively seeking feedback from the community. Join the conversation at [HexOS Community](https://discord.gg/fCW2htvYdz) to share your experiences, report issues, and help shape the future of HexOS. --- diff --git a/docs/release-notes/command-deck/2025-11-25.md b/docs/release-notes/command-deck/2025-11-25.md index afb11a1..6690e06 100644 --- a/docs/release-notes/command-deck/2025-11-25.md +++ b/docs/release-notes/command-deck/2025-11-25.md @@ -4,7 +4,7 @@ We have added 3 highly requested apps to our list of curated apps to enhance you ## Additional Curations -:::tip These apps are currently in Beta. We welcome your feedback at support@hexos.com or on our [HexOS Hub](https://hub.hexos.com/). +:::tip These apps are currently in Beta. We welcome your feedback at support@hexos.com or on our [HexOS Discord](https://discord.gg/fCW2htvYdz). ::: ### Sonarr diff --git a/docs/release-notes/command-deck/2025-12-26.md b/docs/release-notes/command-deck/2025-12-26.md index c2eb3bf..d90ce07 100644 --- a/docs/release-notes/command-deck/2025-12-26.md +++ b/docs/release-notes/command-deck/2025-12-26.md @@ -17,7 +17,7 @@ The apps section has been redesigned along with additional curations. New featur - **[Draw.io](https://www.drawio.com//)** - A whiteboarding / diagramming software application. ## Two-Factor Authentication -You can enable 2FA in your security settings here: [Hub: Security Settings](https://hub.hexos.com/settings/account-security/). +You can enable 2FA in your security settings here: your HexOS account security settings. ## Goldeye Support TrueNAS 25.10.1 support and upgradability from within Deck. This release uses the NVIDIA open GPU kernel, bringing [wider support](https://forums.truenas.com/t/nvidia-compatible-driver-test-for-truenas-25-10-goldeye/53395) to NVIDIA GPUs. diff --git a/docs/release-notes/command-deck/2026-03-24.md b/docs/release-notes/command-deck/2026-03-24.md index 158562f..8242034 100644 --- a/docs/release-notes/command-deck/2026-03-24.md +++ b/docs/release-notes/command-deck/2026-03-24.md @@ -38,8 +38,8 @@ As part of a significant infrastructure effort behind the scenes for [HexOS Loca ### Special Thanks to the the following members of our community - [Anna Morris](https://gingerling.co.uk) - For helping with documentation, guides and general feedback. -- [AeroXuk](https://hub.hexos.com/profile/494-aeroxuk/) - For reporting and determining the cause of a bug with an install script. -- [SimJoSt](https://hub.hexos.com/profile/20928-simjost/) - For creating installation scripts for [Gramps](https://www.grampsweb.org/) & [FileBrowser Quantum](https://filebrowserquantum.com) and implementing AeroXuk's bugfix. +- AeroXuk - For reporting and determining the cause of a bug with an install script. +- SimJoSt - For creating installation scripts for [Gramps](https://www.grampsweb.org/) & [FileBrowser Quantum](https://filebrowserquantum.com) and implementing AeroXuk's bugfix. - [rhjanssen](https://github.com/rhjanssen) - For exploring installation scripts for [OpenCloud](https://opencloud.eu/), [OnlyOffice Document Server](https://www.onlyoffice.com/) & [Collabora Online](https://www.collaboraoffice.com/). diff --git a/docs/release-notes/command-deck/index.md b/docs/release-notes/command-deck/index.md index b57fd9a..4d96cf8 100644 --- a/docs/release-notes/command-deck/index.md +++ b/docs/release-notes/command-deck/index.md @@ -45,4 +45,4 @@ For users who are actively connected during an update, there may be a brief down If you encounter any issues after an update: - Try [clearing your browser cache](/troubleshooting/common-issues/ClearCache) first - Check the [troubleshooting guide](/troubleshooting/) for common solutions -- Visit the [HexOS Community](https://hub.hexos.com/) for additional support +- Visit the [HexOS Community](https://discord.gg/fCW2htvYdz) for additional support diff --git a/docs/troubleshooting/common-issues/ClearCache.md b/docs/troubleshooting/common-issues/ClearCache.md index eaa09c7..fca7342 100644 --- a/docs/troubleshooting/common-issues/ClearCache.md +++ b/docs/troubleshooting/common-issues/ClearCache.md @@ -33,4 +33,4 @@ If you're having trouble logging into the HexOS Deck UI or experiencing session If clearing your cache doesn't resolve the problem: - Try using an incognito/private browsing window - Restart your browser completely -- Check the [HexOS Community](https://hub.hexos.com/) for additional support \ No newline at end of file +- Check the [HexOS Community](https://discord.gg/fCW2htvYdz) for additional support \ No newline at end of file diff --git a/docs/troubleshooting/common-issues/index.md b/docs/troubleshooting/common-issues/index.md index 1009388..38b5d64 100644 --- a/docs/troubleshooting/common-issues/index.md +++ b/docs/troubleshooting/common-issues/index.md @@ -8,5 +8,5 @@ Having trouble with your HexOS setup? Check out these common issues and solution - [**Immich Migration**](./ImmichMigration) - Guide for migrating existing Immich installations to HexOS :::tip Contribute to Documentation -Found a solution that worked? [Learn how to contribute](/community/how-to-contribute/) to improve these docs for everyone, submit corrections through the documentation repository, or share your solutions on the [HexOS Community forum](https://hub.hexos.com/). +Found a solution that worked? [Learn how to contribute](/community/how-to-contribute/) to improve these docs for everyone, submit corrections through the documentation repository, or share your solutions on the [HexOS Community Discord](https://discord.gg/fCW2htvYdz). ::: \ No newline at end of file diff --git a/docs/troubleshooting/index.md b/docs/troubleshooting/index.md index ffc6a6f..c2ca6fb 100644 --- a/docs/troubleshooting/index.md +++ b/docs/troubleshooting/index.md @@ -9,7 +9,7 @@ Check our [Common Issues](./common-issues/) section for frequently encountered p - [Clear Browser Cache](./common-issues/ClearCache) - Fixing login and UI issues - [Avoid USB Drives](./common-issues/AvoidUSBDrives) - Why USB drives cause problems -Visit the [HexOS Community](https://hub.hexos.com/) for additional support from other users. +Visit the [HexOS Community](https://discord.gg/fCW2htvYdz) for additional support from other users. ::: ## Installation Issues @@ -181,7 +181,7 @@ If a task is taking too long or appears stuck in the Activities panel, you can m If your issue isn't covered here: - Check [Common Issues](./common-issues/) for community-reported problems -- Visit the [HexOS Community](https://hub.hexos.com/) for user support +- Visit the [HexOS Community](https://discord.gg/fCW2htvYdz) for user support - Review the [Getting Started Guide](/getting-started/overview) for setup help - Contact HexOS support through the official channels diff --git a/scripts/generateReleaseNotesIndex.mjs b/scripts/generateReleaseNotesIndex.mjs index 85bf5a5..6f5da99 100644 --- a/scripts/generateReleaseNotesIndex.mjs +++ b/scripts/generateReleaseNotesIndex.mjs @@ -114,7 +114,7 @@ ${YEAR_SECTIONS_END} If you encounter any issues after an update: - Try [clearing your browser cache](/troubleshooting/common-issues/ClearCache) first - Check the [troubleshooting guide](/troubleshooting/) for common solutions -- Visit the [HexOS Community](https://hub.hexos.com/) for additional support +- Visit the [HexOS Community](https://discord.gg/fCW2htvYdz) for additional support ` fs.writeFileSync(INDEX_MD, boilerplate) }