Move 'Release History' wiki page from GitHub wiki to website

This commit is contained in:
Thomas Jensen 2015-03-17 22:06:12 +01:00
parent c8424e50c7
commit 800479ebc7
5 changed files with 53 additions and 4 deletions

View File

@ -5,10 +5,11 @@ You are considering a contribution to *boxes*? That's fantastic!
All *boxes* development has moved to the GitHub social coding platform: All *boxes* development has moved to the GitHub social coding platform:
- [Sources](https://github.com/{{ site.github }}) - [Sources](https://github.com/{{ site.github }})
- [Building from Source]({{ site.baseurl }}/build.html)
- [Writing Test Cases]({{ site.baseurl }}/testing.html)
- [Bug Reports and Feature Requests](https://github.com/{{ site.github }}/issues) - [Bug Reports and Feature Requests](https://github.com/{{ site.github }}/issues)
- [Development Wiki](https://github.com/{{ site.github }}/wiki)
- [Change Log](https://github.com/{{ site.github }}/commits/master) - [Change Log](https://github.com/{{ site.github }}/commits/master)
- [History of Releases](https://github.com/{{ site.github }}/wiki/Release-History) - [History of Releases]({{ site.baseurl }}/docs/releases.html)
Boxes has been around a long time. It is available for many platforms (in reality for many more than those featured on the [download page]({{ site.baseurl }}/download.html)). Great care has been taken to make the *boxes* source as compatible as possible with all kinds of different platforms. Boxes has been around a long time. It is available for many platforms (in reality for many more than those featured on the [download page]({{ site.baseurl }}/download.html)). Great care has been taken to make the *boxes* source as compatible as possible with all kinds of different platforms.

View File

@ -0,0 +1,15 @@
# Release History
Boxes has been around a long time.
So far, there were these stable releases:
Release | Date | Sources | Binaries
------- | -------------- | --------------------------------------------------------------- | -----------
[1.1.2](https://github.com/{{ site.github }}/releases/tag/v1.1.2) | January 16, 2015 | [link](https://github.com/{{ site.github }}/tree/v1.1.2) | [link](https://github.com/{{ site.github }}/releases/tag/v1.1.2)
[1.1.1](https://github.com/{{ site.github }}/releases/tag/v1.1.1) | October 19, 2012 | [link](https://github.com/{{ site.github }}/tree/release_1.1.1) | [link](https://github.com/{{ site.github }}/releases/tag/v1.1.1)
[1.1](https://github.com/{{ site.github }}/releases/tag/v1.1) | July 23, 2006 | [link](https://github.com/{{ site.github }}/tree/release_1.1) | [link](https://github.com/{{ site.github }}/releases/tag/v1.1)
[1.0.1](https://github.com/{{ site.github }}/releases/tag/v1.0.1) | March 18, 2000 | [link](https://github.com/{{ site.github }}/tree/release_1.0.1) | [link](https://github.com/{{ site.github }}/releases/tag/v1.0.1)
[1.0](https://github.com/{{ site.github }}/releases/tag/v1.0) | August 22, 1999 | [link](https://github.com/{{ site.github }}/tree/release_1.0) | [link](https://github.com/{{ site.github }}/releases/tag/v1.0)
Sources and binaries for these releases are available from the above table.

View File

@ -2,7 +2,7 @@
*Boxes* is free software under the <A TARGET="_blank" HREF="http://www.gnu.org/licenses/gpl-2.0.html#TOC1">GNU General Public License</A> (GNU GPL), version 2. *Boxes* is free software under the <A TARGET="_blank" HREF="http://www.gnu.org/licenses/gpl-2.0.html#TOC1">GNU General Public License</A> (GNU GPL), version 2.
The current release is **version 1.1.2**. For older revisions, feel free to browse the [release history](https://github.com/{{ site.github }}/wiki/Release-History). The current release is **version 1.1.2**. For older revisions, feel free to browse the [release history]({{ site.baseurl }}/docs/releases.html).
## Sources ## Sources
@ -16,7 +16,7 @@ For the (historical) record, the source of the outdated version 1.1 is also on [
## Binaries ## Binaries
The author supports binaries for intel/linux and intel/win32. *Boxes* has been compiled on a very wide variety of platforms, and for older releases, some of these binaries are available via the [release history](https://github.com/{{ site.github }}/wiki/Release-History). If you have binaries for different and/or new platforms, please send them in! The author supports binaries for intel/linux and intel/win32. *Boxes* has been compiled on a very wide variety of platforms, and for older releases, some of these binaries are available via the [release history]({{ site.baseurl }}/docs/releases.html). If you have binaries for different and/or new platforms, please send them in!
**Windows** and **Linux** binary download: **Windows** and **Linux** binary download:
[https://github.com/{{ site.github }}/releases/latest](https://github.com/{{ site.github }}/releases/latest) [https://github.com/{{ site.github }}/releases/latest](https://github.com/{{ site.github }}/releases/latest)

View File

@ -49,6 +49,30 @@ div.footer {
border: 0; border: 0;
background-color: white; background-color: white;
} }
.bxpage table {
border: 0;
border-collapse: collapse;
margin: 1em 0;
}
.bxpage table th, .bxpage table td {
text-align: left;
vertical-align: top;
padding: 0.3em 0.7em;
border-right: 2px solid #F5F5F5;
border-bottom: 3px solid #F5F5F5;
}
.bxpage table th {
font-weight: bold;
background-color: white;
}
.bxpage table tr:nth-child(odd) {
background-color: #eeeeee;
}
.bxpage table tr:nth-child(even) {
background-color: white;
}
p code, li code { /* also outside of bxpages */ p code, li code { /* also outside of bxpages */
color: black; color: black;
background-color: #ffffdc; background-color: #ffffdc;

9
docs/releases.html Normal file
View File

@ -0,0 +1,9 @@
---
layout: default
title: Release History
---
{% capture includedMarkdown %}{% include boxes/docs/releases.md %}{% endcapture %}
<div class="bxpage well">
{{ includedMarkdown | markdownify }}
</div>