From 1b52f0753db81d43efee8f112c764230e1c64c56 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 "Installation Medium", 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 "Installation Medium" does. --- content/download.html | 13 ++++++++----- static/js/download.js | 7 +------ 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/content/download.html b/content/download.html index f35c3f78..02e2f469 100644 --- a/content/download.html +++ b/content/download.html @@ -14,12 +14,15 @@

ReactOS {{< reactos-version >}}

-
Download Boot CD
-

Alternatively, you can download LiveCD

+
Download Installation Medium
-

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 the Installation Medium offer?

+

The ReactOS Installation Medium offers you the possibility of either installing ReactOS on your machine, or alternatively, trying ReactOS without the need for installation. +Once you start the Installation Medium, it presents a menu allowing you to select what you want to do: either running the Setup environment, or the Live environment for testing. +Select the Setup environment if you wish to install ReactOS on your machine. You will be directed to the setup program, please follow the instructions given on the screen. +On the other hand, the Live environment is useful if you don't plan to install or 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 at restart. +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 +45,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 0ab3c68b0172ffba1fafce0045364a2deb2eb916 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 02e2f469..71dabb81 100644 --- a/content/download.html +++ b/content/download.html @@ -14,7 +14,7 @@

ReactOS {{< reactos-version >}}

What does the Installation Medium 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) });