Skip to content

Commit 10f9c14

Browse files
authored
Cleanup downloads page further. (#2408)
* Cleanup downloads page further. Fix #873 * Add stable and lts versions to the support page * update * fix --------- Co-authored-by: Viral B. Shah <[email protected]>
1 parent 494a996 commit 10f9c14

File tree

3 files changed

+46
-27
lines changed

3 files changed

+46
-27
lines changed

downloads/index.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,12 @@
44

55
~~~
66
<div id="windows-instructions" style="display: none;">
7-
Install Julia using the <a href="https://install.julialang.org/Julia.appinstaller">MSIX App Installer</a>. Alternatively, if you have access to the <a href="https://www.microsoft.com/store/apps/9NJNWW8PVKMN">Microsoft Store</a>, you can install Julia by running the following in the command prompt:<br><br>
7+
It appears that you are using Windows. Install Julia using the <a href="https://install.julialang.org/Julia.appinstaller">MSIX App Installer</a>. Alternatively, if you have access to the <a href="https://www.microsoft.com/store/apps/9NJNWW8PVKMN">Microsoft Store</a>, you can install Julia by running the following in the command prompt. In case you are not using Windows, please follow the <a onclick="showUNIX()" href="javascript:void(0);">Linux and macOS instructions</a>.<br><br>
88
<pre><code class="language-plaintext cmdprompt-block">winget install --name Julia --id 9NJNWW8PVKMN -e -s msstore</code></pre>
9-
<div class="install-platform-note"><span id="platform-subnote-windows">It looks like you are using Windows. </span>
10-
For Linux and MacOS instructions <a onclick="showUNIX()" href="javascript:void(0);">click here</a>.</div>
119
</div>
1210
<div id="unix-instructions" style="display: none;">
13-
Install Julia by running the following in your terminal:<br><br>
11+
It appears that you are using macOS or Linux. Install Julia by running the following in your terminal. In case you are using Windows, please follow these <a onclick="showWindows()" href="javascript:void(0);">instructions for Windows</a>.<br><br>
1412
<pre><code class="language-plaintext bash-block">curl -fsSL https://install.julialang.org | sh</code></pre>
15-
<div class="install-platform-note"><span id="platform-subnote-unix">It looks like you are using a Unix-type system. </span>
16-
For Windows instructions <a onclick="showWindows()" href="javascript:void(0);">click here</a>.</div>
1713
</div>
1814
<script>
1915
function showWindows() {
@@ -26,10 +22,8 @@
2622
}
2723
var isWindows = navigator.platform.indexOf('Win') > -1;
2824
if (isWindows) {
29-
document.getElementById('platform-subnote-unix').style.display = 'none';
3025
showWindows();
3126
} else {
32-
document.getElementById('platform-subnote-windows').style.display = 'none';
3327
showUNIX();
3428
}
3529
</script>
@@ -39,7 +33,14 @@ This will install the latest stable version of Julia, as well as the `juliaup` t
3933

4034
## Next steps
4135

42-
Join the [community](/community). Check out the [learning resources](/learning). Do star us on [GitHub](https://github.com/JuliaLang/julia). If you use Julia in your research, please [cite us](/research/). If possible, do consider [sponsoring](https://github.com/sponsors/julialang) us.
36+
@@tight-list
37+
* Join the [community](/community).
38+
* Check out the [learning resources](/learning).
39+
* Set up an [editor](/#editors).
40+
* Do star us on [GitHub](https://github.com/JuliaLang/julia).
41+
* If you use Julia in your research, please [cite us](/research/).
42+
* Do consider [sponsoring](https://github.com/sponsors/julialang) us.
43+
@@
4344

4445
## About juliaup
4546

downloads/support.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
1-
# Supported platforms
1+
## Supported Julia versions
2+
3+
@@row @@col-8
4+
~~~
5+
<table class="downloads table table-hover table-bordered">
6+
<tbody>
7+
<tr>
8+
<th> Release</th>
9+
<th> Version</th>
10+
<th> Latest version </th>
11+
</tr>
12+
<tr>
13+
<td> Stable </td>
14+
<td> {{stable_release_short}} </td>
15+
<td> {{stable_release}} </td>
16+
</tr>
17+
<tr>
18+
<td> Long Term Stable (LTS) </td>
19+
<td> {{lts_release_short}}</td>
20+
<td> {{lts_release}} </td>
21+
</tr>
22+
</tbody>
23+
</table>
24+
~~~
25+
@@ @@
26+
27+
## Supported platforms
228

329
Julia supports all the major operating systems. Different OSes and architectures have varying [tiers of support](/downloads/support#support_tiers).
430

index.html

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,8 @@ <h2 class="lead secondary-heading"><a href="/packages/">Packages</a></h2>
368368

369369
<br>
370370

371-
<p>Julia has been downloaded over 45 million times and the Julia community has registered <a href="https://juliahub.com/ui/Packages">over 10,000 Julia packages</a> for community use.
372-
These include various mathematical libraries, data manipulation tools, and packages for general purpose computing. In addition to these, you can easily use libraries from <a href="https://github.com/JuliaPy/PyCall.jl">Python</a>, <a href="https://github.com/JuliaInterop/RCall.jl">R</a>, <a href="https://docs.julialang.org/en/v1/manual/calling-c-and-fortran-code/#Calling-C-and-Fortran-Code-1">C/Fortran</a>, and <a href="https://github.com/JuliaInterop/CxxWrap.jl">C++</a>, and <a href="https://github.com/JuliaInterop/JavaCall.jl">Java</a>.
371+
<p>Julia has been downloaded over 100 million times and the Julia community has registered <a href="https://juliahub.com/ui/Packages">over 12,000 Julia packages</a> for community use.
372+
These include various mathematical libraries, data manipulation tools, and packages for general purpose computing. In addition to these, you can easily use libraries from <a href="https://github.com/JuliaPy/PythonCall.jl">Python</a>, <a href="https://github.com/JuliaInterop/RCall.jl">R</a>, <a href="https://docs.julialang.org/en/v1/manual/calling-c-and-fortran-code/#Calling-C-and-Fortran-Code-1">C/Fortran</a>, and <a href="https://github.com/JuliaInterop/CxxWrap.jl">C++</a>, and <a href="https://github.com/JuliaInterop/JavaCall.jl">Java</a>.
373373
If you do not find what you are looking for, ask on <a href="https://discourse.julialang.org">Discourse</a>, or even better, <a href="https://julialang.github.io/Pkg.jl/v1/">contribute one</a>!</p>
374374

375375
<br><br>
@@ -395,7 +395,7 @@ <h2 class="lead secondary-heading"><a href="/packages/">Packages</a></h2>
395395
<div class="row">
396396
<div class="col-lg-4 col-md-3 language-features "><hr/></div>
397397
<div class="col-lg-4 col-md-6 language-features section-heading">
398-
<h2 class="lead secondary-heading">Recent Blog Posts</h2>
398+
<h2 class="lead secondary-heading"><a href="/blog">Recent Blog Posts</a></h2>
399399
</div>
400400
<div class="col-lg-4 col-md-3 language-features"><hr/></div>
401401
</div>
@@ -430,7 +430,7 @@ <h2 class="lead secondary-heading">Recent Blog Posts</h2>
430430
<br><br>
431431

432432
<!-- Talk to us -->
433-
<div class="container" style="max-width:1140px;">
433+
<div class="container" style="max-width:1140px;">
434434
<div class="row">
435435
<div class="col-lg-4 col-md-3 ecosystem"><hr/></div>
436436
<div class="col-lg-4 col-md-6 ecosystem section-heading">
@@ -504,14 +504,6 @@ <h4 class="outer-link">
504504
<a class="link extra-link" href="https://www.linkedin.com/company/the-julia-language" target="_blank">LinkedIn</a>
505505
</h4>
506506
</div>
507-
<div class="col-lg-3 col-md-6" style="text-align:center">
508-
<h3>Twitch</h3>
509-
<a href="https://www.twitch.tv/JuliaLanguage" target="_blank">
510-
<img src="/assets/infra/twitch.png" height="85" width="85" alt="Twitch Logo" /></a>
511-
<h4 class="outer-link">
512-
<a class="link extra-link" href="https://www.twitch.tv/JuliaLanguage" target="_blank">Twitch</a>
513-
</h4>
514-
</div>
515507
</div>
516508

517509

@@ -528,7 +520,7 @@ <h4 class="outer-link">
528520
<div class="row">
529521
<div class="col-lg-3 col-md-2 language-features"><hr/></div>
530522
<div class="col-lg-6 col-md-8 language-features section-heading">
531-
<h2 class="lead secondary-heading">Editors and IDEs</h2>
523+
<h2 class="lead secondary-heading"><a href="/#editors">Editors and IDEs</a></h2>
532524
</div>
533525
<div class="col-lg-3 col-md-2 language-features"><hr/></div>
534526
</div>
@@ -594,11 +586,11 @@ <h4 class="outer-link">
594586
<br><br>
595587

596588
<div class="row">
597-
<div class="col-lg-3 col-md-2 language-features"><hr/></div>
598-
<div class="col-lg-6 col-md-8 language-features section-heading">
599-
<h2 class="lead secondary-heading">Essential Tools</h2>
589+
<div class="col-lg-3 col-md-2 ecosystem"><hr/></div>
590+
<div class="col-lg-6 col-md-8 ecosystem section-heading">
591+
<h2 class="lead secondary-heading"><a href="/#tools">Essential Tools</a></h2>
600592
</div>
601-
<div class="col-lg-3 col-md-2 language-features"><hr/></div>
593+
<div class="col-lg-3 col-md-2 ecosystem"><hr/></div>
602594
</div>
603595

604596
<br>

0 commit comments

Comments
 (0)