-
Notifications
You must be signed in to change notification settings - Fork 49
Reword the download.html page, removing mentions of deprecated LiveCD #138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -14,12 +14,15 @@ <h1>React<span class="text-ros">OS</span> {{< reactos-version >}}</h1> | |||||||||||||
| </div> | ||||||||||||||
|
|
||||||||||||||
| <div class="text-center"> | ||||||||||||||
| <a id="bootcd" class="buttons" href="https://sourceforge.net/projects/reactos/files/latest/download"><div class="btn btn-primary">Download Boot CD</div></a> | ||||||||||||||
| <p>Alternatively, you can download <a id="livecd" class="modalbtn" href="https://sourceforge.net/projects/reactos/files/ReactOS/0.4.15/ReactOS-{{< reactos-download-version >}}-x86-live.zip/download">LiveCD</a></p> | ||||||||||||||
| <a id="bootcd" class="modalbtn" href="https://sourceforge.net/projects/reactos/files/latest/download"><div class="btn btn-primary">Download Installation Medium</div></a> | ||||||||||||||
| </div> | ||||||||||||||
|
|
||||||||||||||
| <h2>How to choose?</h2> | ||||||||||||||
| <p>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. <span class="text-danger font-weight-bold">Please note, that ReactOS is still in alpha and gives no guarantee of stability, safety of your files or working at all.</span></p> | ||||||||||||||
| <h2>What does the Installation Medium offer?</h2> | ||||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think we need this section anymore now that you don't have to choose between two downloads. |
||||||||||||||
| <p>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. | ||||||||||||||
|
Comment on lines
+20
to
+22
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
| 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. | ||||||||||||||
| <span class="text-danger font-weight-bold">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.</span></p> | ||||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would keep this warning though |
||||||||||||||
|
|
||||||||||||||
| <h2>What do I do with this?</h2> | ||||||||||||||
| <p><a href="/wiki">ReactOS Wiki</a> is an ideal source of information, it will help you setup ReactOS in your desired environment. <a href="https://reactos.org/wiki/Installing_ReactOS">"Installing ReactOS"</a> page should help you get started.</p> | ||||||||||||||
|
|
@@ -42,7 +45,7 @@ <h4 class="modal-title">Help ReactOS to reach Beta by a recurring donation</h4> | |||||||||||||
| <div class="modal-body"> | ||||||||||||||
| {{< paypal >}} | ||||||||||||||
| </div> | ||||||||||||||
| <div class="modal-footer"><a id="download" href="" style="font-size: 16px;">No, thanks. Let's proceed with the download! </a></div> | ||||||||||||||
| <div class="modal-footer"><a id="download" href="" style="font-size: 16px;">No, thanks. Let's proceed with the download!</a></div> | ||||||||||||||
| </div> | ||||||||||||||
| </div> | ||||||||||||||
| </div> | ||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,7 @@ | ||
| var bootcd = $("#bootcd").attr("href"); | ||
| var livecd = $("#livecd").attr("href"); | ||
| $("#bootcd").removeAttr("href"); | ||
| $("#livecd").removeAttr("href"); | ||
| $(".modalbtn").click(function(e){ | ||
| e.preventDefault(); | ||
| $("#bootcdModal").modal("toggle"); | ||
| url = bootcd; | ||
| if (e.target.textContent == "LiveCD") { | ||
| url = livecd; | ||
| } | ||
| $('.modal-footer a').attr("href", url) | ||
| }); | ||
| $('.modal-footer a').attr("href", bootcd) | ||
| }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.