Some tweaks to support blender 2.8 slaves

This commit is contained in:
2017-04-03 14:55:51 +02:00
parent f75bd1fa34
commit 151cb1cc77
2 changed files with 72 additions and 24 deletions

View File

@@ -45,7 +45,7 @@
{% endfor %}
{% for f in files|sort %}
{% if ("mingw" in f.text) or ('gooseberry' in f.text) or ("experimental" in f.text) or ("vc1" in f.text) or ("vc9" in f.text) or ("multiview" in f.text) %}
{% if ("mingw" in f.text) or ("vc1" in f.text) or ("blender-2.8" in f.text) or ("experimental" in f.text) %}
{% else %}
<tr class="file {{ row_class.next() }}">
{% if "mingw32" in f.text %}
@@ -118,16 +118,13 @@
{% endif %}
{% endfor %}
<tr>
<td>&nbsp;</th>
<td>&nbsp;</th>
<td>&nbsp;</th>
<td>&nbsp;</th>
<td>&nbsp;</th>
</tr>
</table>
<table class="table table-striped table-hover box">
<tr></tr>
{% for f in files|sort %}
{% if (not (("mingw" in f.text) or ("vc1" in f.text) or ("vc9" in f.text) or ("multiview" in f.text) or ("gooseberry" in f.text) )) %}
{% if (not (("mingw" in f.text) or ("vc1" in f.text))) %}
{% else %}
<tr class="file {{ row_class.next() }}">
{% if "mingw32" in f.text %}
@@ -153,23 +150,64 @@
{% endif %}
</td>
<td>
{% if "mingw" in f.text %}
Experimental MinGW
{% elif "vc14" in f.text %}
Experimental Build Branch by VS 2015<br/><span style="font-weight: normal;">(Windows Vista/7/8/10)</span>
{% else %}
Official
{% endif %}
</td>
<td><a class="info" onclick="ga('send', 'event', 'button', 'download', '{{f.text}}');" href="{{ f.href }}">{{ f.text }}</a></td>
<td>{{ f.size }}</td>
<td>{{ f.lastmodified }}</td>
</tr>
{% endif %}
{% endfor %}
</table>
<table class="table table-striped table-hover box">
<tr></tr>
{% for f in files|sort %}
{% if ("blender-2.8" in f.text) %}
<tr class="file {{ row_class.next() }}">
{% if "mingw32" in f.text %}
<td><i class="fa fa-windows"></i> Windows 32 bit
{% elif "win32" in f.text %}
<td><i class="fa fa-windows"></i> Windows 32 bit
{% elif "mingw64" in f.text %}
<td><i class="fa fa-windows"></i> Windows 64 bit
{% elif "win64" in f.text %}
<td><i class="fa fa-windows"></i> Windows 64 bit
{% elif "OSX" in f.text %}
{% if "x86_64" in f.text %}
<td><i class="fa fa-apple"></i> Mac OS X 64 bit
{% else %}
<td><i class="fa fa-apple"></i> Mac OS X 32 bit
{% endif %}
{% elif "linux" in f.text %}
{% if "x86_64" in f.text %}
<td><i class="fa fa-linux"></i> Linux 64 bit
{% else %}
<td><i class="fa fa-linux"></i> Linux 32 bit
{% endif %}
{% endif %}
</td>
<td>
{% if "mingw" in f.text %}
Experimental MinGW
{% elif "vc14" in f.text %}
Experimental VS 2015<br/><span style="font-weight: normal;">(Windows Vista/7/8/10)</span>
{% elif "vc11" in f.text %}
Experimental VS 2012<br/><span style="font-weight: normal;">(Windows Vista/7/8/10)</span>
{% elif "vc9" in f.text %}
Legacy VS 2008<br/><span style="font-weight: normal;">(Windows XP/Vista/7/8/10)</span>
{% elif "win32-vc12" in f.text %}
Official Preview VS 2013<br/><span style="font-weight: normal;">(Windows XP/Vista/7/8/10)</span>
{% elif "win64-vc12" in f.text %}
Official Preview VS 2013<br/><span style="font-weight: normal;">(Windows Vista/7/8/10)</span>
{% elif "multiview" in f.text %}
Multiview Branch<br/><span style="font-weight: normal;">(Stereoscopic 3D)</span>
{% elif "gooseberry" in f.text %}
Gooseberry Branch
{% elif "blender-2.8" in f.text %}
Blender 2.8 Branch
{% else %}
Official
{% endif %}