From a84a092de1aaec51c0d73e5a9d36210df15c63a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Wed, 29 Apr 2026 20:59:48 +0200 Subject: [PATCH 1/2] Reword the download.html page, removing mentions of deprecated LiveCD (#138) ReactOS commit https://github.com/reactos/reactos/commit/b2e33f26eb3230c1a1535b6ea2833b0bb1ad128b removed the separate livecd artifact, merging it with the bootcd. Rename also "bootcd" to "Release Image", since it's more generic (e.g. the ISO can be flashed onto an USB thumb drive). The text of the download.html page is reworded to explain what the "Release Image" does. --- content/download.html | 17 ++++++++++++----- static/js/download.js | 7 +------ 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/content/download.html b/content/download.html index f35c3f78..f78d2d92 100644 --- a/content/download.html +++ b/content/download.html @@ -14,12 +14,19 @@

ReactOS {{< reactos-version >}}

-
Download Boot CD
-

Alternatively, you can download LiveCD

+
Download Release Image
-

How to choose?

-

If you wish to install ReactOS on your machine, then Boot CD is the right option for you. Boot CD will direct you to a setup environment, please follow the instructions given on the screen. Live CD is useful if you don't plan to keep ReactOS on your computer for a longer period of time. It allows you to explore ReactOS in a temporary environment that will be reset in a restart. Please note, that ReactOS is still in alpha and gives no guarantee of stability, safety of your files or working at all.

+

What does this offer?

+

The ReactOS Release Image offers you the possibility of either installing ReactOS on your machine, or trying ReactOS without the need for installation. +Once you boot from this image, a menu allows you to select what you want to do. + +The Live environment allows you to explore ReactOS in a temporary environment that will be reset at restart, without the need of installation. +It also offers you the possibility of installing ReactOS on your machine. + +Alternatively, choose the Setup environment (Text Mode) if you wish to quickly install ReactOS on your machine. You will be directed to the setup program, please follow the instructions given on the screen. + +Please note that ReactOS is still in alpha state and provides no guarantee of stability, of safety for your files, or that it will work at all on your hardware.

What do I do with this?

ReactOS Wiki is an ideal source of information, it will help you setup ReactOS in your desired environment. "Installing ReactOS" page should help you get started.

@@ -42,7 +49,7 @@ - + diff --git a/static/js/download.js b/static/js/download.js index d5c9bee4..09abf27d 100644 --- a/static/js/download.js +++ b/static/js/download.js @@ -1,12 +1,7 @@ var bootcd = $("#bootcd").attr("href"); -var livecd = $("#livecd").attr("href"); $("#bootcd").removeAttr("href"); -$("#livecd").removeAttr("href"); $(".modalbtn").click(function(e){ $("#bootcdModal").modal("toggle"); url = bootcd; - if (e.target.textContent == "LiveCD") { - url = livecd; - } $('.modal-footer a').attr("href", url) -}); \ No newline at end of file +}); From fc4084491e909258898e74bd5c336bc4e983a85f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Thu, 30 Jul 2026 19:44:55 +0200 Subject: [PATCH 2/2] Fix the Download button, following commit f628d738c8 (PR #142) --- content/download.html | 2 +- static/js/download.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/download.html b/content/download.html index f78d2d92..26ddd358 100644 --- a/content/download.html +++ b/content/download.html @@ -14,7 +14,7 @@

ReactOS {{< reactos-version >}}

What does this offer?

diff --git a/static/js/download.js b/static/js/download.js index 09abf27d..44f0efa1 100644 --- a/static/js/download.js +++ b/static/js/download.js @@ -1,7 +1,7 @@ var bootcd = $("#bootcd").attr("href"); $("#bootcd").removeAttr("href"); $(".modalbtn").click(function(e){ + e.preventDefault(); $("#bootcdModal").modal("toggle"); - url = bootcd; - $('.modal-footer a').attr("href", url) + $('.modal-footer a').attr("href", bootcd) });