This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
mcedit.github.com/downloads.html
2016-08-25 00:03:58 -10:00

68 lines
2.6 KiB
HTML

---
layout: download_page
---
{% raw %}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<script src="/js/moment.min.js"></script>
<script src="/js/ng/dl-control.js"></script>
<div class="page-header">
<h1>Downloads</h1>
</div>
<br>
<h2>Release Versions</h2>
<!--<div class="alert">
Development Versions are released once per day, if there have been any changes to the source code. These versions are
not well-tested and are not recommended for serious use.
</div>-->
<div ng-app="dlApp">
<div ng-controller="DownloadListCtrl">
<table class="download-list">
<tr class="infos" ng-repeat-start="download in downloads">
<td class="rev"><a href="{{download.html_url}}">{{download.tag_name}}</a></td>
<td class="date" title="{{download.published_at | date : 'medium' }}">{{download.published_at | fromNow}}</td>
<td class="description">
<a href="https://github.com/mcedit/mcedit2/commits/{{download.target_commitish}}">{{download.body}}</a>
</td>
</tr>
<tr class="links" ng-repeat-end>
<td></td>
<td colspan="2" >
<a ng-repeat="asset in download.assets"
class="btn btn-default always-ltr"
href="{{asset.browser_download_url}}"
style="margin-right:6px">
<span class="glyphicon glyphicon-download-alt" aria-hidden="true"
style="margin-right:10px"></span>{{asset.name | platform}}</a>
</td>
</tr>
</table>
</div>
</div>
<br><br>
<!--<div align="center" style="margin-top:8em">Content hosting for development versions provided by:<br>
<a href="https://nodecraft.com/">
<img src="/images/community-partner.png" style="margin-top: 0.5em">
</a>
</div>-->
<h2>Legacy Versions</h2>
<div class="alert">
Older versions of MCEdit 1.0 are provided by the MCEdit-Unified team.
<a href="http://khroki.github.io/MCEdit-Unified/">Click here to download MCEdit 1.0</a> (If the website is down, <a href="https://github.com/Khroki/MCEdit-Unified/releases">click here for direct downloads</a>)
</div>
<br><br><br>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- MCEdit Downloads Page ad -->
<ins class="adsbygoogle"
style="display:inline-block;width:336px;height:280px"
data-ad-client="ca-pub-2531273453064153"
data-ad-slot="5459013749"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
{% endraw %}