Skip to content

Commit

Permalink
Update to release 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
x8x committed Feb 11, 2019
1 parent 981d8d3 commit c7bf975
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 41 deletions.
50 changes: 31 additions & 19 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h1><img src="static/red-logo.png" alt="Square"/>&nbsp;Red</h1>
<div class="span7">
<menu>
<ul>
<li><a href="#download" class="menu download">Download v0.6.3</a></li>
<li><a href="#download" class="menu download">Download v0.6.4</a></li>
<li><a href="https://github.com/red/red" data-title="View GitHub Project" class="menu github"><img src="static/icon-github.png" alt="GitHub"/></a></li>
<li><a href="https://www.red-lang.org/" data-title="Offical Blog" class="menu square"><img src="static/icon-square.png" alt="Blog"/></a></li>
<li><a href="index_CN.html" class="menu">中文</a>|<a href="index_TR.html" class="menu">TR</a>|<a href="index.html" class="menu">EN</a></li>
Expand Down Expand Up @@ -105,31 +105,43 @@ <h4>Making a Red "Hello World"</h4>
</ol>

<h3 id="download">Download</h3>
<h4>Last stable (v0.6.3)</h4>
<p><a href="https://static.red-lang.org/dl/win/red-063.exe" class="dl version-href">&darr; Windows</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/linux/red-063" class="dl version-href">&darr; GNU/Linux</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/mac/red-063" class="dl version-href">&darr; Mac OS X</a></p>
<h4>Last stable (v0.6.4)</h4>
<p><a href="https://static.red-lang.org/dl/win/red-064.exe" class="dl version-href">&darr; Windows</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/linux/red-064" class="dl version-href">&darr; GNU/Linux</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/mac/red-064" class="dl version-href">&darr; Mac OS X</a></p>
<div class="alternative">
<strong>稳定版 v0.6.3(中国镜像)</strong>
<a href="http://red-lang.qiniudn.com/dl/win/red-063.exe">&darr; Windows</a>&nbsp;&nbsp;
<a href="http://red-lang.qiniudn.com/dl/linux/red-063">&darr; GNU/Linux</a>&nbsp;&nbsp;
<a href="http://red-lang.qiniudn.com/dl/mac/red-063">&darr; Mac OS X</a>
<strong>稳定版 v0.6.4(中国镜像)</strong>
<a href="http://red-lang.qiniudn.com/dl/win/red-064.exe">&darr; Windows</a>&nbsp;&nbsp;
<a href="http://red-lang.qiniudn.com/dl/linux/red-064">&darr; GNU/Linux</a>&nbsp;&nbsp;
<a href="http://red-lang.qiniudn.com/dl/mac/red-064">&darr; Mac OS X</a>
</div>
<h4>Automated builds, master branch</h4>
<p><a href="https://static.red-lang.org/dl/auto/win/red-latest.exe" class="dl version-href">&darr; Windows</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/auto/linux/red-latest" class="dl version-href">&darr; GNU/Linux</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/auto/mac/red-latest" class="dl version-href">&darr; Mac OS X</a></p>
<h4>Note for Linux</h4>
<p>For Linux 64-bit distros, you need to install 32-bit supporting libraries. So, for Debian-based distros, install them using:</p>
<pre><code>$ sudo apt-get install ia32-libs libc6-i386 libcurl3-i386</code></pre>
<p>If you are using a Debian 7+ or Ubuntu 13.10+ version, you should use the multiarch way:</p>
<pre><code>$ dpkg --add-architecture i386
$ apt-get update
$ apt-get install libc6:i386 libcurl3:i386</code></pre>
<p>for CentOS distros, install them using:</p>
<pre><code>$ sudo yum install glibc.i686
$ sudo yum install libcurl.i686</code></pre>

<p>For Linux 64-bit distros, you need to install 32-bit supporting libraries.</p>
<p>If you are using a Debian 7+ or Ubuntu 13.10+ version, you should use libcurl3 with multiarch:</p>
<pre><code> dpkg --add-architecture i386
apt-get update
apt-get install libc6:i386 libcurl3:i386
</code></pre>
<p>If you are using an Ubuntu 18.04+ version, you should use libcurl4 with multiarch:</p>
<pre><code> dpkg --add-architecture i386
apt-get update
apt-get install libc6:i386 libcurl4:i386
</code></pre>
<p>For Fedora/Redhat/Centos distros:</p>
<pre><code> sudo yum install glibc.i686
sudo yum install libcurl.i686
</code></pre>
<p>For FreeBSD, no prebuilt binaries yet, you need to cross-compile, or get the Red sources, a Rebol interpreter (<a href="http://www.rebol.com/downloads/v278/rebol-core-278-7-2.tar.gz" target="_blank">here</a>) and a couple packages:&nbsp;<span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">libcrypto.so.8</span>, which can be found in the openssl package, and <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">libcurl.so.4</span>&nbsp;(temporary dependency):</p>
<pre><code> pkg install openssl
pkg install fpc-libcurl-3.0.2
</code></pre>
<p>For ArchLinux (Manjaro included), there is a Red package <a href="https://aur.archlinux.org/packages/red/" target="_blank">here</a>. Or you can run above Linux binary after installing 32-bit support with:</p>
<pre><code> pacman -S lib32-curl
</code></pre>
<h3 id="contributing">Contributing</h3>
<p>There is a lot to do on a project like this, so all people willing to help are welcome. The project is at its Alpha stage of development, there may be breaking changes.</p>
<p>If you want to contribute at the source code level:</p>
Expand Down
16 changes: 5 additions & 11 deletions index_CN.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h1><img src="static/red-logo.png" alt="Square"/>&nbsp;Red</h1>
<div class="span7">
<menu>
<ul>
<li><a href="#download" class="menu download">下载 v0.6.3</a></li>
<li><a href="#download" class="menu download">下载 v0.6.4</a></li>
<li><a href="https://github.com/red/red" data-title="GitHub 项目" class="menu github"><img src="static/icon-github.png" alt="GitHub"/></a></li>
<li><a href="https://www.red-lang.org/" data-title="官方网站" class="menu square"><img src="static/icon-square.png" alt="Blog"/></a></li>
<li><a href="index_CN.html" class="menu">中文</a>|<a href="index_TR.html" class="menu">TR</a>|<a href="index.html" class="menu">EN</a></li>
Expand Down Expand Up @@ -104,16 +104,10 @@ <h4>写一个 Red 版“Hello World”</h4>
</li>
</ol>
<h3 id="download">下载</h3>
<h4>最新稳定版(v0.6.3)</h4>
<p><a href="https://static.red-lang.org/dl/win/red-063.exe" class="dl version-href">&darr; Windows</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/linux/red-063" class="dl version-href">&darr; GNU/Linux</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/mac/red-063" class="dl version-href">&darr; Mac OS X</a></p>
<div class="alternative">
<strong>稳定版 v0.6.3(中国镜像)</strong>
<a href="http://red-lang.qiniudn.com/dl/win/red-063.exe">&darr; Windows</a>&nbsp;&nbsp;
<a href="http://red-lang.qiniudn.com/dl/linux/red-063">&darr; GNU/Linux</a>&nbsp;&nbsp;
<a href="http://red-lang.qiniudn.com/dl/mac/red-063">&darr; Mac OS X</a>
</div>
<h4>最新稳定版(v0.6.4)</h4>
<p><a href="https://static.red-lang.org/dl/win/red-064.exe" class="dl version-href">&darr; Windows</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/linux/red-064" class="dl version-href">&darr; GNU/Linux</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/mac/red-064" class="dl version-href">&darr; Mac OS X</a></p>
<h4>master 分支的自动构建版本</h4>
<p><a href="https://static.red-lang.org/dl/auto/win/red-latest.exe" class="dl version-href">&darr; Windows</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/auto/linux/red-latest" class="dl version-href">&darr; GNU/Linux</a>&nbsp;&nbsp;
Expand Down
16 changes: 5 additions & 11 deletions index_TR.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h1><img src="static/red-logo.png" alt="Square"/>&nbsp;Red</h1>
<div class="span7">
<menu>
<ul>
<li><a href="#download" class="menu download">İndir v0.6.3</a></li>
<li><a href="#download" class="menu download">İndir v0.6.4</a></li>
<li><a href="https://github.com/red/red" data-title="View GitHub Project" class="menu github"><img src="static/icon-github.png" alt="GitHub"/></a></li>
<li><a href="https://www.red-lang.org/" data-title="Offical Blog" class="menu square"><img src="static/icon-square.png" alt="Blog"/></a></li>
<li><a href="index_CN.html" class="menu">中文</a>|<a href="index_TR.html" class="menu">TR</a>|<a href="index.html" class="menu">EN</a></li>
Expand Down Expand Up @@ -107,16 +107,10 @@ <h4>Red ile "Merhaba Dünya"</h4>
</ol>

<h3 id="download">İndir</h3>
<h4>Son stabil sürüm (v0.6.3)</h4>
<p><a href="https://static.red-lang.org/dl/win/red-063.exe" class="dl version-href">&darr; Windows</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/linux/red-063" class="dl version-href">&darr; GNU/Linux</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/mac/red-063" class="dl version-href">&darr; Mac OS X</a></p>
<div class="alternative">
<strong>稳定版 v0.6.3(中国镜像)</strong>
<a href="http://red-lang.qiniudn.com/dl/win/red-063.exe">&darr; Windows</a>&nbsp;&nbsp;
<a href="http://red-lang.qiniudn.com/dl/linux/red-063">&darr; GNU/Linux</a>&nbsp;&nbsp;
<a href="http://red-lang.qiniudn.com/dl/mac/red-063">&darr; Mac OS X</a>
</div>
<h4>Son stabil sürüm (v0.6.4)</h4>
<p><a href="https://static.red-lang.org/dl/win/red-064.exe" class="dl version-href">&darr; Windows</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/linux/red-064" class="dl version-href">&darr; GNU/Linux</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/mac/red-064" class="dl version-href">&darr; Mac OS X</a></p>
<h4>Otomatik derlemeler (master branch)</h4>
<p><a href="https://static.red-lang.org/dl/auto/win/red-latest.exe" class="dl version-href">&darr; Windows</a>&nbsp;&nbsp;
<a href="https://static.red-lang.org/dl/auto/linux/red-latest" class="dl version-href">&darr; GNU/Linux</a>&nbsp;&nbsp;
Expand Down

0 comments on commit c7bf975

Please sign in to comment.