mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-02 06:40:42 -07:00
115 lines
4.0 KiB
HTML
115 lines
4.0 KiB
HTML
<h2>about spice2x</h2>
|
|
<p>spice2x is a continuation of SpiceTools project.</p>
|
|
|
|
<p>spice2x binaries are meant to be drop-in replacements for existing installs (spice.exe, spice64.exe, spicecfg.exe).
|
|
For a list of features, check out <a href="https://github.com/spice2x/spice2x.github.io/wiki/spice2x-features">this page</a>.
|
|
</p>
|
|
|
|
<h2>notice - December 31, 2025</h2>
|
|
|
|
<p style="font-size: x-large">
|
|
<ul>
|
|
<li>
|
|
If you got SDVX EG Final (2025120900), read <a href="https://github.com/spice2x/spice2x.github.io/issues/489"> this link </a>to resolve known issues.
|
|
</li>
|
|
</ul>
|
|
</p>
|
|
|
|
<h2>downloads</h2>
|
|
|
|
<p style="font-weight: bold";>
|
|
<a class="download-link" href="https://github.com/spice2x/spice2x.github.io/releases/latest">
|
|
latest stable release<span id="octo_latest_release"></span>
|
|
</a>
|
|
</p>
|
|
|
|
<p>
|
|
<a class="download-link" href="https://github.com/spice2x/spice2x.github.io/releases">
|
|
all releases, including pre-release
|
|
<span id="octo_latest_prerelease"></span>
|
|
</a>
|
|
</p>
|
|
|
|
<p><a class="download-link" href="https://nightly.link/spice2x/spice2x.github.io/workflows/ci/main">nightly builds (untested)</a></p>
|
|
|
|
<script type="module">
|
|
import { Octokit } from "https://esm.sh/octokit";
|
|
const octokit = new Octokit();
|
|
const owner = "spice2x";
|
|
const repo = "spice2x.github.io";
|
|
const latest = await octokit.request(
|
|
"GET /repos/{owner}/{repo}/releases/latest",
|
|
{ owner, repo });
|
|
if (latest && latest.data && latest.data.name) {
|
|
document.getElementById("octo_latest_release").textContent = " (" + latest.data.name + ")";
|
|
}
|
|
const releases = await octokit.request(
|
|
"GET /repos/{owner}/{repo}/releases",
|
|
{ owner, repo, per_page: 1, page: 1 });
|
|
if (releases && releases.data && releases.data.length >= 1 && releases.data[0].name && releases.data[0].prerelease) {
|
|
document.getElementById("octo_latest_prerelease").textContent = " (" + releases.data[0].name + ")";
|
|
}
|
|
</script>
|
|
|
|
<h2>documentation</h2>
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="https://github.com/spice2x/spice2x.github.io/wiki/Known-issues">FAQ / Known issues</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/spice2x/spice2x.github.io/wiki/PC-optimization">PC optimization guide</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/spice2x/spice2x.github.io/wiki/Audio-modes-demystified">Audio modes demystified (ASIO, WASAPI, DirectSound...)</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/spice2x/spice2x.github.io/wiki/Patching-DLLs-(hex-edits)">Patches / hex edits</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/spice2x/spice2x.github.io/wiki/Asus-Xonar-AE">Info for Asus Xonar AE owners</a>
|
|
</li>
|
|
</ul>
|
|
|
|
For more documentation, please visit the <a href="https://github.com/spice2x/spice2x.github.io/wiki">wiki home</a>.
|
|
|
|
<h2>suggested addons</h2>
|
|
|
|
Check out these cool tools that can be used with spice:
|
|
|
|
<ul>
|
|
<li><a href="https://github.com/spice2x/spicecompanion_archive/releases">SpiceCompanion </a> -
|
|
control spice from your phone / tablet / another PC. Archive only, not actively maintained by anyone.
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/mon/ifs_layeredfs">ifs_layeredfs</a> - for game asset modding
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/kinetic-flow/spicehue">spicehue</a> - control Philips Hue lights over spice API
|
|
</li>
|
|
<li>
|
|
<a href="https://github.com/4yn/slidershim">slidershim</a> - use your phone / tablet as keyboard input
|
|
</li>
|
|
</ul>
|
|
|
|
<h2>disclaimers</h2>
|
|
|
|
<p>spice2x team does not provide any tools to circumvent software copy protection, nor distribute any copyright-protected game data.</p>
|
|
|
|
<p>
|
|
<strong>If you want to run spice2x on a real arcade cabinet, do note that the developers take no responsibility for any damage done to your hardware, nor provide any support.</strong>
|
|
</p>
|
|
|
|
<h2>issues, questions, bugs, feature requests</h2>
|
|
|
|
Please use the github repo below.
|
|
|
|
<hr />
|
|
|
|
<ul class="fa-ul main-list">
|
|
<li class="main-list-item">
|
|
<span class="fa fa-github fa-lg main-list-item-icon"></span>
|
|
<a href="https://github.com/spice2x/spice2x.github.io">project home on GitHub</a>
|
|
</li>
|
|
</ul>
|