Skip to content

Commit

Permalink
Update download page
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchLeaders committed Feb 24, 2024
1 parent 6cc447c commit 1497b92
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
12 changes: 11 additions & 1 deletion wwwroot/download/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,21 @@
<a class="download-btn" id="download-src" href="https://github.com/TKMM-Team/Tkmm/archive/refs/heads/master.zip">Download Source Code</a>
</div>

## Experimental

> [!WARNING]
> MacOS is not officially supported and untested, you will likely encounter bugs.
<div id="download-btns">
<a class="download-btn" id="download-macos" href="https://github.com/TKMM-Team/Tkmm/releases/latest/download/TKMM-Launcher-osx-x64.zip">Download for MacOS (x64)</a>
<a class="download-btn" id="download-macos" href="https://github.com/TKMM-Team/Tkmm/releases/latest/download/TKMM-Launcher-osx-arm64.zip">Download for MacOS (arm64)</a>
</div>

---

### Supported Platforms

- **Windows 10/11**: Fully supported
- **Linux**: Partially supported
- **SteamOS**: Experimental
- **MacOS**: Not supported
- **MacOS**: Experimental
12 changes: 11 additions & 1 deletion wwwroot/templates/custom/public/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ code {
}

#download-btns {
margin: 5vh 0;
margin: 1vh 0 5vh 0;
justify-items: center;
align-items: center;
}
Expand Down Expand Up @@ -97,6 +97,16 @@ code {
}
}

#download-macos {
background-color: #5aa65a;
color: #baefa0;
transition: all 0.3s ease;

&:hover {
color: #def3dc;
}
}

#download-src {
background-color: #4a4c58;
color: #afb3ca;
Expand Down

0 comments on commit 1497b92

Please sign in to comment.