mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
69 lines
2.7 KiB
HTML
69 lines
2.7 KiB
HTML
---
|
|
title: Download
|
|
permalink: /download
|
|
---
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('[data-toggle="tooltip"]').tooltip({
|
|
'container': 'body'
|
|
});
|
|
});
|
|
</script>
|
|
{% for release in site.github.releases %}
|
|
{% if release.draft == false and release.prerelease == false and stableRelease == nil %}
|
|
{% assign stableRelease = release %}
|
|
{% endif %}
|
|
{% if release.draft == false and release.prerelease == true and preRelease == nil %}
|
|
{% assign preRelease = release %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
<div class='row well text-center'>
|
|
<div class='col-md-6'>
|
|
<h2>Stable <small>{{ stableRelease.tag_name }}</small></h2>
|
|
<h4>{{ stableRelease.published_at | date: '%a, %b %d, %Y' }}</h4>
|
|
<div>
|
|
{% for asset in stableRelease.assets %}
|
|
{% if asset.state == 'uploaded' %}
|
|
<a href='{{ asset.browser_download_url }}' class='btn btn-success' data-toggle='tooltip' data-placement='bottom' title='{{ asset.size | divided_by: 1048576.0 | round: 2 }} MiB'>
|
|
{% if asset.content_type == 'application/x-msdownload' %}MSI{% elsif asset.content_type == 'application/x-zip-compressed' %}ZIP{% endif %}
|
|
</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
<a href='{{ stableRelease.html_url }}'>Changelog</a>
|
|
</div>
|
|
<div class='col-md-6'>
|
|
<h2>Prerelease <small>{{ preRelease.tag_name }}</small></h2>
|
|
<h4>{{ preRelease.published_at | date: '%a, %b %d, %Y' }}</h4>
|
|
<div>
|
|
{% for asset in preRelease.assets %}
|
|
{% if asset.state == 'uploaded' %}
|
|
<a href='{{ asset.browser_download_url }}' class='btn btn-warning' data-toggle='tooltip' data-placement='bottom' title='{{ asset.size | divided_by: 1048576.0 | round: 2 }} MiB'>
|
|
{% if asset.content_type == 'application/x-msdownload' %}MSI{% elsif asset.content_type == 'application/x-zip-compressed' %}ZIP{% endif %}
|
|
</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
<a href='{{ preRelease.html_url }}'>Changelog</a>
|
|
</div>
|
|
</div>
|
|
<p>You can view all releases (including pre-releases) by going <a href='{{ site.github.releases_url }}'>here</a></p>
|
|
<p>View installation requirements at the <a href='{{ site.github.wiki_url }}/Prerequisites'>Wiki</a></p>
|
|
<h2>Languages <small><a href='{{ site.github.wiki_url }}/How to Help Translating mRemoteNG'>Help us translate!</a></small></h2>
|
|
<ul class='list-inline'>
|
|
<li>English</li>
|
|
<li>中文</li>
|
|
<li>Nederlands</li>
|
|
<li>Français</li>
|
|
<li>Deutsch</li>
|
|
<li>Ελληνικά</li>
|
|
<li>Magyar</li>
|
|
<li>Italiano</li>
|
|
<li>Norsk</li>
|
|
<li>Polski</li>
|
|
<li>Português</li>
|
|
<li>Русский</li>
|
|
<li>Español</li>
|
|
<li>Українська</li>
|
|
</ul>
|