{% extends "entrance.html" %} {% macro downloads(win=[], osx=[], linux=[], win_port_text=True, linux_dropdown=True) -%}
{% if win -%}

Windows

{% for (name, path) in win -%} {% if name == "Installer" -%}  {{ name }} {%- else %}  {{ name }} {%- endif %} {%- endfor %}

{% if win_port_text -%}

{% trans %}Use the portable version if you can't or don't want to install the application. Take it anywhere and just run the file to start.{% endtrans %}

{%- endif %}
{%- endif %}

MacOS

{% if osx -%}

{% for (name, path) in osx -%}  {{ name }} {%- endfor %}

{%- else %}

 Download

{% trans %}Not currently available for this version.{% endtrans %} {% trans %}We are looking for someone experienced in deploying Qt-based applications on MacOS.{% endtrans %} {% trans %}Please get in touch.{% endtrans %}

{%- endif %}

Linux

{% if linux -%}

{% if not linux_dropdown -%} {% for (name, path) in linux -%}  {{ name }} {%- endfor %} {%- else -%}

{%- endif %}

{%- else -%}

 Download

{%- endif %}

{% trans %}If available, we recommend installing SpeedCrunch directly via your distribution's package manager.{% endtrans %} {% trans %}Note that the latest version may not be available.{% endtrans %}

{%- endmacro %} {% macro oldVersion(version, id) -%} {#, *args, **kwargs #}
{{ downloads(*args, **kwargs) }}
{%- endmacro %} {%- block content %} {{ entranceNavBar() }}

{% trans %}Version 0.12{% endtrans %}

{{ downloads( win=[ (_('Installer'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.12-win32.exe'), (_('Portable'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.12-win32.zip'),], linux=[ (_('32-bit RPM'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.12-linux32.rpm'), (_('32-bit Deb'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.12-linux32.deb'), (_('32-bit Generic'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.12-linux32.tar.bz2'), (_('64-bit RPM'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.12-linux64.rpm'), (_('64-bit Deb'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.12-linux64.deb'), (_('64-bit Generic'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.12-linux64.tar.bz2'),] ) }}

{% trans %}Unsure about the installation?{% endtrans %} {% trans %}Have a look at the instructions.{% endtrans %}


{% trans %}Older Versions{% endtrans %}

{{ oldVersion('0.11', '011', win=[ (_('Installer'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.11.exe'), (_('Portable'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.11.zip')], osx=[(_('Download'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.11.dmg')] ) }} {{ oldVersion('0.10.1', '0101', win=[ (_('Installer'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.10.1.exe'), (_('Portable'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.10.1.zip')], osx=[(_('Download'), 'https://bitbucket.org/heldercorreia/speedcrunch/downloads/SpeedCrunch-0.10.1.dmg')] ) }}
{%- endblock %}