Skip to content

Commit

Permalink
Merge pull request #83 from bgilbert/bin
Browse files Browse the repository at this point in the history
openslide-bin 4.0.0.2
  • Loading branch information
bgilbert authored Mar 28, 2024
2 parents 46ee302 + 42e6317 commit 73e815c
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 7 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
14 changes: 12 additions & 2 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 Expand Up @@ -47,6 +57,8 @@ where available, and updates the Deep Zoom example tools to transform images
to sRGB by default.


{% if page.news_show_extended %}

## New Windows build, 2023-04-14

Windows build 20230414 integrates most dependencies into the OpenSlide
Expand All @@ -64,8 +76,6 @@ OpenSlide Java 0.12.3 adds a Meson build system, deprecates the
Autotools+Ant one, and fixes builds on newer JDKs.


{% if page.news_show_extended %}

## New Windows build, 2022-11-11

Windows build 20221111 updates the versions of many dependencies.
Expand Down
26 changes: 21 additions & 5 deletions download/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,31 @@ If you're looking for the bleeding edge,
<div class="releases">
<table>
{% for release in site.data.releases.bin %}
{% 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{{ release.date|remove:'-' }}">
{{ release.date }}
<a href="https://github.com/openslide/openslide-bin/releases/tag/v{{ version }}">
{{ version }}
</a>
</th>
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ release.date|remove:'-' }}/openslide-winbuild-{{ release.date|remove:'-' }}.zip">Source</a></td>
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ release.date|remove:'-' }}/openslide-win32-{{ release.date|remove:'-' }}.zip">Windows 32-bit</a></td>
<td><a href="https://github.com/openslide/openslide-bin/releases/download/v{{ release.date|remove:'-' }}/openslide-win64-{{ release.date|remove:'-' }}.zip">Windows 64-bit</a></td>
<td>{{ release.date }}</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 73e815c

Please sign in to comment.