UI: Improve multi OS display #205

Merged
Oleg-Komarov merged 40 commits from ui/multi-os into main 2024-07-16 07:24:07 +02:00
Showing only changes of commit 0aee09e62c - Show all commits

View File

@ -319,11 +319,11 @@
{% if platform == "linux-x64" %} {% if platform == "linux-x64" %}
<i class="i-linux"></i> Linux <i class="i-linux"></i> Linux
{% elif platform == "macos-arm64" %} {% elif platform == "macos-arm64" %}
<i class="i-macos"></i> macOS <span class="text-muted">Apple Silicon</span> <i class="i-macos"></i> macOS <span class="ms-2 text-muted">Apple Silicon</span>
{% elif platform == "macos-x64" %} {% elif platform == "macos-x64" %}
<i class="i-macos"></i> macOS <span class="text-muted">Intel</span> <i class="i-macos"></i> macOS <span class="ms-2 text-muted">Intel</span>
{% elif platform == "windows-arm64" %} {% elif platform == "windows-arm64" %}
<i class="i-windows"></i> Windows <span class="text-muted">ARM</span> <i class="i-windows"></i> Windows <span class="ms-2 text-muted">ARM</span>
{% elif platform == "windows-x64" %} {% elif platform == "windows-x64" %}
<i class="i-windows"></i> Windows <i class="i-windows"></i> Windows
{% endif %} {% endif %}