|
1 | 1 | {% raw %} |
| 2 | +
|
| 3 | +<style> |
| 4 | +table.download { |
| 5 | + font-size: 1rem; |
| 6 | + width: auto; |
| 7 | + display: inline-block; |
| 8 | + vertical-align: top; |
| 9 | +} |
| 10 | +table.download tr.header th { |
| 11 | + font-weight: bolder; |
| 12 | + background: #65a4e3; |
| 13 | + color: #fff; |
| 14 | + padding: 0.7em; |
| 15 | +} |
| 16 | +table.download th { |
| 17 | + text-align: center; |
| 18 | + text-wrap: nowrap; |
| 19 | + line-height: 1em; |
| 20 | + vertical-align: middle; |
| 21 | + padding: 0.4em; |
| 22 | + font-variant: small-caps; |
| 23 | +} |
| 24 | +table.download td { |
| 25 | + font-size: 0.8rem; |
| 26 | + text-align: center; |
| 27 | +} |
| 28 | +@media (min-width: 350px) { |
| 29 | + table.download td { |
| 30 | + padding-left: 1em; |
| 31 | + padding-right: 1em; |
| 32 | + } |
| 33 | +} |
| 34 | +table.download button { |
| 35 | + font-size: 0.7rem; |
| 36 | + padding: 0 0.5em 0 0.3em; |
| 37 | + margin: 0.1em; |
| 38 | +} |
| 39 | +table.download tr.new-section { |
| 40 | + border-top: 1px solid gray; |
| 41 | +} |
| 42 | +</style> |
2 | 43 | <div> |
3 | | -<table> |
| 44 | +<table class="download"> |
4 | 45 | <tbody> |
| 46 | + <tr class="header"><th colspan=5>Latest Downloads</th></tr> |
5 | 47 | <tr> |
6 | 48 | <th> </th> |
7 | | - <th>Operating system</th> |
8 | | - <th>Download links</th> |
| 49 | + <th>OS</th> |
| 50 | + <th>Arch</th> |
| 51 | + <th>Java</th> |
| 52 | + <th>Download</th> |
9 | 53 | </tr> |
10 | 54 |
|
| 55 | + <!-- Linux x86-64 --> |
| 56 | + <tr class="new-section"> |
| 57 | + <td rowspan=4><img alt="Linux" src="/media/icons/linux.svg" width="24" height="24"></td> |
| 58 | + <td rowspan=4>Linux</td> |
| 59 | + <td rowspan=2>x86-64</td> |
| 60 | + <td>JDK</td> |
| 61 | + <td> |
| 62 | + <a href="https://downloads.imagej.net/fiji/latest/fiji-latest-linux-x64-jdk.zip"><button class="download" title="Download fiji-latest-linux-x64-jdk from US server"><b>⤓</b> US</button></a> |
| 63 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-latest-linux-x64-jdk.zip"><button class="download" title="Download fiji-latest-linux-x64-jdk from UK server"><b>⤓</b> UK</button></a> --> |
| 64 | + </td> |
| 65 | + </tr> |
11 | 66 | <tr> |
12 | | - <th><img alt="Linux" src="/media/icons/linux.svg" width="24" height="24"></th> |
13 | | - <td>Linux (64-bit)</td> |
| 67 | + <td>JRE</td> |
14 | 68 | <td> |
15 | | - <a style="text-decoration: underline;" href="https://downloads.imagej.net/fiji/latest/fiji-linux64.zip">imagej.net (USA)</a> |
16 | | - | <a style="text-decoration: underline;" href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-linux64.zip">micron.ox.ac.uk (Europe)</a> |
| 69 | + <a href="https://downloads.imagej.net/fiji/latest/fiji-latest-linux-x64-jre.zip"><button class="download" title="Download fiji-latest-linux-x64-jre from US server"><b>⤓</b> US</button></a> |
| 70 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-latest-linux-x64-jre.zip"><button class="download" title="Download fiji-latest-linux-x64-jre from UK server"><b>⤓</b> UK</button></a> --> |
17 | 71 | </td> |
18 | 72 | </tr> |
19 | 73 |
|
| 74 | + <!-- Linux arm64 --> |
| 75 | + <tr class="new-section"> |
| 76 | + <td rowspan=2>arm64</td> |
| 77 | + <td>JDK</td> |
| 78 | + <td> |
| 79 | + <a href="https://downloads.imagej.net/fiji/latest/fiji-latest-linux-arm64-jdk.zip"><button class="download" title="Download fiji-latest-linux-arm64-jdk from US server"><b>⤓</b> US</button></a> |
| 80 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-latest-linux-arm64-jdk.zip"><button class="download" title="Download fiji-latest-linux-arm64-jdk from UK server"><b>⤓</b> UK</button></a> --> |
| 81 | + </td> |
| 82 | + </tr> |
| 83 | + <tr> |
| 84 | + <td>JRE</td> |
| 85 | + <td> |
| 86 | + <a href="https://downloads.imagej.net/fiji/latest/fiji-latest-linux-arm64-jre.zip"><button class="download" title="Download fiji-latest-linux-arm64-jre from US server"><b>⤓</b> US</button></a> |
| 87 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-latest-linux-arm64-jre.zip"><button class="download" title="Download fiji-latest-linux-arm64-jre from UK server"><b>⤓</b> UK</button></a> --> |
| 88 | + </td> |
| 89 | + </tr> |
| 90 | +
|
| 91 | + <!-- macOS x86-64 --> |
| 92 | + <tr class="new-section"> |
| 93 | + <td rowspan=4><img alt="macOS" src="/media/icons/macos.png" width="24" height="24"></td> |
| 94 | + <td rowspan=4>macOS</td> |
| 95 | + <td rowspan=2>x86-64</td> |
| 96 | + <td>JDK</td> |
| 97 | + <td> |
| 98 | + <a href="https://downloads.imagej.net/fiji/latest/fiji-latest-macos-x64-jdk.zip"><button class="download" title="Download fiji-latest-macos-x64-jdk from US server"><b>⤓</b> US</button></a> |
| 99 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-latest-macos-x64-jdk.zip"><button class="download" title="Download fiji-latest-macos-x64-jdk from UK server"><b>⤓</b> UK</button></a> --> |
| 100 | + </td> |
| 101 | + </tr> |
| 102 | + <tr> |
| 103 | + <td>JRE</td> |
| 104 | + <td> |
| 105 | + <a href="https://downloads.imagej.net/fiji/latest/fiji-latest-macos-x64-jre.zip"><button class="download" title="Download fiji-latest-macos-x64-jre from US server"><b>⤓</b> US</button></a> |
| 106 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-latest-macos-x64-jre.zip"><button class="download" title="Download fiji-latest-macos-x64-jre from UK server"><b>⤓</b> UK</button></a> --> |
| 107 | + </td> |
| 108 | + </tr> |
| 109 | +
|
| 110 | + <!-- macOS arm64 --> |
| 111 | + <tr class="new-section"> |
| 112 | + <td rowspan=2>arm64</td> |
| 113 | + <td>JDK</td> |
| 114 | + <td> |
| 115 | + <a href="https://downloads.imagej.net/fiji/latest/fiji-latest-macos-arm64-jdk.zip"><button class="download" title="Download fiji-macos-arm64-jdk from US server"><b>⤓</b> US</button></a> |
| 116 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-latest-macos-arm64-jdk.zip"><button class="download" title="Download fiji-latest-macos-arm64-jdk from UK server"><b>⤓</b> UK</button></a> --> |
| 117 | + </td> |
| 118 | + </tr> |
| 119 | + <tr> |
| 120 | + <td>JRE</td> |
| 121 | + <td> |
| 122 | + <a href="https://downloads.imagej.net/fiji/latest/fiji-latest-macos-arm64-jre.zip"><button class="download" title="Download fiji-macos-arm64-jre from US server"><b>⤓</b> US</button></a> |
| 123 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-latest-macos-arm64-jre.zip"><button class="download" title="Download fiji-latest-macos-arm64-jre from UK server"><b>⤓</b> UK</button></a> --> |
| 124 | + </td> |
| 125 | + </tr> |
| 126 | +
|
| 127 | + <!-- Windows x86-64 --> |
| 128 | + <tr class="new-section"> |
| 129 | + <td rowspan=2><img alt="Windows" src="/media/icons/windows.svg" width="24" height="24"></td> |
| 130 | + <td rowspan=2>Windows</td> |
| 131 | + <td rowspan=2>x86-64</td> |
| 132 | + <td>JDK</td> |
| 133 | + <td> |
| 134 | + <a href="https://downloads.imagej.net/fiji/latest/fiji-latest-windows-x64-jdk.zip"><button class="download" title="Download fiji-latest-windows-x64-jdk from US server"><b>⤓</b> US</button></a> |
| 135 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-latest-windows-x64-jdk.zip"><button class="download" title="Download fiji-latest-windows-x64-jdk from UK server"><b>⤓</b> UK</button></a> --> |
| 136 | + </td> |
| 137 | + </tr> |
20 | 138 | <tr> |
21 | | - <th><img alt="macOS" src="/media/icons/macos.png" width="24" height="24"></th> |
22 | | - <td>macOS (Apple silicon)</td> |
| 139 | + <td>JRE</td> |
23 | 140 | <td> |
24 | | - <a style="text-decoration: underline;" href="https://downloads.imagej.net/fiji/future/fiji-future-macos-arm64.zip">imagej.net (USA)</a> |
| 141 | + <a href="https://downloads.imagej.net/fiji/latest/fiji-latest-windows-x64-jre.zip"><button class="download" title="Download fiji-windows-x64-jre from US server"><b>⤓</b> US</button></a> |
| 142 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-latest-windows-x64-jre.zip"><button class="download" title="Download fiji-latest-windows-x64-jre from UK server"><b>⤓</b> UK</button></a> --> |
| 143 | + </td> |
| 144 | + </tr> |
| 145 | +
|
| 146 | + <!-- Portable --> |
| 147 | + <tr class="new-section"> |
| 148 | + <td><img alt="Portable" src="/media/icons/fiji.png" width="24" height="24"></td> |
| 149 | + <td colspan=2>Portable</td> |
| 150 | + <td>None</td> |
| 151 | + <td colspan=2> |
| 152 | + <a href="https://downloads.imagej.net/fiji/latest/fiji-latest-portable-nojava.zip"><button class="download" title="Download fiji-latest-portable-nojava from US server"><b>⤓</b> US</button></a> |
| 153 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-latest-portable-nojava.zip"><button class="download" title="Download fiji-latest-portable-nojava from UK server"><b>⤓</b> UK</button></a> --> |
25 | 154 | </td> |
26 | 155 | </tr> |
| 156 | +</tbody> |
| 157 | +</table> |
27 | 158 |
|
| 159 | +<table class="download"> |
| 160 | +<tbody> |
| 161 | + <tr class="header"><th colspan=5>Stable Downloads</th></tr> |
| 162 | + <tr> |
| 163 | + <th> </th> |
| 164 | + <th>OS</th> |
| 165 | + <th>Arch</th> |
| 166 | + <th>Java</th> |
| 167 | + <th>Download</th> |
| 168 | + </tr> |
| 169 | +
|
| 170 | + <!-- Linux x86-64 --> |
| 171 | + <tr class="new-section"> |
| 172 | + <td rowspan=2><img alt="Linux" src="/media/icons/linux.svg" width="24" height="24"></td> |
| 173 | + <td rowspan=2>Linux</td> |
| 174 | + <td rowspan=2>x86-64</td> |
| 175 | + <td>JDK</td> |
| 176 | + <td> |
| 177 | + <a href="https://downloads.imagej.net/fiji/stable/fiji-stable-linux64-jdk.zip"><button class="download" title="Download fiji-stable-linux64-jdk from US server"><b>⤓</b> US</button></a> |
| 178 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-stable/fiji-stable-linux64-jdk.zip"><button class="download" title="Download fiji-stable-linux64-jdk from UK server"><b>⤓</b> UK</button></a> --> |
| 179 | + </td> |
| 180 | + </tr> |
28 | 181 | <tr> |
29 | | - <th><img alt="macOS" src="/media/icons/macos.png" width="24" height="24"></th> |
30 | | - <td>macOS (Intel)</td> |
| 182 | + <td>JRE</td> |
31 | 183 | <td> |
32 | | - <a style="text-decoration: underline;" href="https://downloads.imagej.net/fiji/latest/fiji-macosx.zip">imagej.net (USA)</a> |
33 | | - | <a style="text-decoration: underline;" href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-macosx.zip">micron.ox.ac.uk (Europe)</a> |
| 184 | + <a href="https://downloads.imagej.net/fiji/stable/fiji-stable-linux64-jre.zip"><button class="download" title="Download fiji-stable-linux64-jre from US server"><b>⤓</b> US</button></a> |
| 185 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-stable/fiji-stable-linux64-jre.zip"><button class="download" title="Download fiji-stable-linux64-jre from UK server"><b>⤓</b> UK</button></a> --> |
34 | 186 | </td> |
35 | 187 | </tr> |
36 | 188 |
|
| 189 | + <!-- macOS x86-64 --> |
| 190 | + <tr class="new-section"> |
| 191 | + <td rowspan=2><img alt="macOS" src="/media/icons/macos.png" width="24" height="24"></td> |
| 192 | + <td rowspan=2>macOS</td> |
| 193 | + <td rowspan=2>x86-64</td> |
| 194 | + <td>JDK</td> |
| 195 | + <td> |
| 196 | + <a href="https://downloads.imagej.net/fiji/stable/fiji-stable-macosx-jdk.zip"><button class="download" title="Download fiji-stable-macosx-jdk from US server"><b>⤓</b> US</button></a> |
| 197 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-stable/fiji-stable-macosx-jdk.zip"><button class="download" title="Download fiji-stable-macosx-jdk from UK server"><b>⤓</b> UK</button></a> --> |
| 198 | + </td> |
| 199 | + </tr> |
37 | 200 | <tr> |
38 | | - <th><img alt="Windows" src="/media/icons/windows.svg" width="24" height="24"></th> |
39 | | - <td>Windows (64-bit)</td> |
| 201 | + <td>JRE</td> |
| 202 | + <td> |
| 203 | + <a href="https://downloads.imagej.net/fiji/stable/fiji-stable-macosx-jre.zip"><button class="download" title="Download fiji-stable-macosx-jre from US server"><b>⤓</b> US</button></a> |
| 204 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-stable/fiji-stable-macosx-jre.zip"><button class="download" title="Download fiji-stable-macosx-jre from UK server"><b>⤓</b> UK</button></a> --> |
| 205 | + </td> |
| 206 | + </tr> |
| 207 | +
|
| 208 | + <!-- Windows x86-64 --> |
| 209 | + <tr class="new-section"> |
| 210 | + <td rowspan=4><img alt="Windows" src="/media/icons/windows.svg" width="24" height="24"></td> |
| 211 | + <td rowspan=4>Windows</td> |
| 212 | + <td rowspan=2>x86-64</td> |
| 213 | + <td>JDK</td> |
40 | 214 | <td> |
41 | | - <a style="text-decoration: underline;" href="https://downloads.imagej.net/fiji/latest/fiji-win64.zip">imagej.net (USA)</a> |
42 | | - | <a style="text-decoration: underline;" href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-win64.zip">micron.ox.ac.uk (Europe)</a> |
| 215 | + <a href="https://downloads.imagej.net/fiji/stable/fiji-stable-win64-jdk.zip"><button class="download" title="Download fiji-stable-win64-jdk from US server"><b>⤓</b> US</button></a> |
| 216 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-stable/fiji-stable-win64-jdk.zip"><button class="download" title="Download fiji-stable-win64-jdk from UK server"><b>⤓</b> UK</button></a> --> |
43 | 217 | </td> |
44 | 218 | </tr> |
45 | 219 | <tr> |
46 | | - <th><img alt="Windows" src="/media/icons/windows.svg" width="24" height="24"></th> |
47 | | - <td>Windows (32-bit)</td> |
| 220 | + <td>JRE</td> |
48 | 221 | <td> |
49 | | - <a style="text-decoration: underline;" href="https://downloads.imagej.net/fiji/latest/fiji-win32.zip">imagej.net (USA)</a> |
50 | | - | <a style="text-decoration: underline;" href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-win32.zip">micron.ox.ac.uk (Europe)</a> |
| 222 | + <a href="https://downloads.imagej.net/fiji/stable/fiji-stable-win64-jre.zip"><button class="download" title="Download fiji-stable-win64-jre from US server"><b>⤓</b> US</button></a> |
| 223 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-stable/fiji-stable-win64-jre.zip"><button class="download" title="Download fiji-stable-win64-jre from UK server"><b>⤓</b> UK</button></a> --> |
51 | 224 | </td> |
52 | 225 | </tr> |
53 | 226 |
|
| 227 | + <!-- Windows x86-32 --> |
| 228 | + <tr class="new-section"> |
| 229 | + <td rowspan=2>x86-32</td> |
| 230 | + <td>JDK</td> |
| 231 | + <td> |
| 232 | + <a href="https://downloads.imagej.net/fiji/stable/fiji-stable-win32-jdk.zip"><button class="download" title="Download fiji-stable-win32-jdk from US server"><b>⤓</b> US</button></a> |
| 233 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-stable/fiji-stable-win32-jdk.zip"><button class="download" title="Download fiji-stable-win32-jdk from UK server"><b>⤓</b> UK</button></a> --> |
| 234 | + </td> |
| 235 | + </tr> |
54 | 236 | <tr> |
55 | | - <th><img alt="no-JRE" src="/media/icons/fiji.png" width="24" height="24"></th> |
56 | | - <td>No JRE</td> |
| 237 | + <td>JRE</td> |
57 | 238 | <td> |
58 | | - <a style="text-decoration: underline;" href="https://downloads.imagej.net/fiji/latest/fiji-nojre.zip">imagej.net (USA)</a> |
59 | | - | <a style="text-decoration: underline;" href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-latest/fiji-nojre.zip">micron.ox.ac.uk (Europe)</a> |
| 239 | + <a href="https://downloads.imagej.net/fiji/stable/fiji-stable-win32-jre.zip"><button class="download" title="Download fiji-stable-win32-jre from US server"><b>⤓</b> US</button></a> |
| 240 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-stable/fiji-stable-win32-jre.zip"><button class="download" title="Download fiji-stable-win32-jre from UK server"><b>⤓</b> UK</button></a> --> |
| 241 | + </td> |
| 242 | + </tr> |
| 243 | +
|
| 244 | + <!-- Portable --> |
| 245 | + <tr class="new-section"> |
| 246 | + <td><img alt="Portable" src="/media/icons/fiji.png" width="24" height="24"></td> |
| 247 | + <td colspan=2>Portable</td> |
| 248 | + <td>None</td> |
| 249 | + <td colspan=2> |
| 250 | + <a href="https://downloads.imagej.net/fiji/stable/fiji-stable-portable-nojava.zip"><button class="download" title="Download fiji-stable-portable-nojava from US server"><b>⤓</b> US</button></a> |
| 251 | + <!-- <a href="https://downloads.micron.ox.ac.uk/fiji_update/mirrors/fiji-stable/fiji-stable-portable-nojava.zip"><button class="download" title="Download fiji-stable-portable-nojava from UK server"><b>⤓</b> UK</button></a> --> |
60 | 252 | </td> |
61 | 253 | </tr> |
62 | 254 | </tbody> |
63 | 255 | </table> |
| 256 | +
|
64 | 257 | </div> |
65 | 258 | {% endraw %} |
66 | 259 |
|
|
0 commit comments