Skip to content

Commit

Permalink
openslide-bin 4.0.0.2
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Gilbert <[email protected]>
  • Loading branch information
bgilbert committed Mar 28, 2024
1 parent 3e828a6 commit 42e6317
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
1 change: 1 addition & 0 deletions _data/releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ java:
- {version: 0.6.0, date: 2009-08-17, gz: 1}
- {version: 0.5.0, date: 2009-07-15, gz: 1}
bin:
- {version: 4.0.0.2, date: 2024-03-29}
- {date: 2023-10-11}
- {date: 2023-04-14}
- {date: 2022-12-17}
Expand Down
10 changes: 10 additions & 0 deletions _includes/news.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{% include links.md %}

## Binary build 4.0.0.2, 2024-03-29

[Binary build 4.0.0.2][bin-4.0.0.2] adds Linux and macOS binaries, removes
32-bit Windows binaries, and adds Python binary packages for use with the
upcoming OpenSlide Python 1.4.0. It also updates OpenSlide Java to 0.12.4
and updates various dependencies.

[bin-4.0.0.2]: https://github.com/openslide/openslide-bin/releases/tag/v4.0.0.2


## OpenSlide Java version 0.12.4, 2023-11-07

OpenSlide Java 0.12.4 includes minor build and test improvements.
Expand Down
22 changes: 18 additions & 4 deletions download/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,31 @@ If you're looking for the bleeding edge,
<div class="releases">
<table>
{% for release in site.data.releases.bin %}
{% capture version %}{{ release.date|remove:'-' }}{% endcapture %}
{% if release.version %}
{% assign version = release.version %}
{% else %}
{% capture version %}{{ release.date|remove:'-' }}{% endcapture %}
{% endif %}
<tr class="{% cycle 'bin': 'odd', 'even' %}">
<th>
<a href="https://github.com/openslide/openslide-bin/releases/tag/v{{ version }}">
{{ version }}
</a>
</th>
<td>{{ release.date }}</td>
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ version }}/openslide-winbuild-{{ version }}.zip">Source</a></td>
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ version }}/openslide-win32-{{ version }}.zip">Windows x86</a></td>
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ version }}/openslide-win64-{{ version }}.zip">Windows x64</a></td>
{% if release.version %}
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ version }}/openslide-bin-{{ version }}.tar.gz">Source</a></td>
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ version }}/openslide-bin-{{ version }}-linux-x86_64.tar.xz">Linux x86_64</a></td>
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ version }}/openslide-bin-{{ version }}-macos-arm64-x86_64.tar.xz">macOS</a></td>
<td></td>
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ version }}/openslide-bin-{{ version }}-windows-x64.zip">Windows x64</a></td>
{% else %}
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ version }}/openslide-winbuild-{{ version }}.zip">Source</a></td>
<td></td>
<td></td>
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ version }}/openslide-win32-{{ version }}.zip">Windows x86</a></td>
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ version }}/openslide-win64-{{ version }}.zip">Windows x64</a></td>
{% endif %}
</tr>
{% endfor %}
</table>
Expand Down

0 comments on commit 42e6317

Please sign in to comment.