xmr-btc-swap/flatpak/index.html
2025-06-27 21:43:46 +02:00

105 lines
2.8 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>UnstoppableSwap Flatpak Repository</title>
<style>
body {
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: #f5f5f5;
}
.container {
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
text-align: center;
}
.install-section {
background: #f8f9fa;
padding: 20px;
border-radius: 6px;
margin: 20px 0;
}
code {
background: #e9ecef;
padding: 2px 6px;
border-radius: 3px;
font-family: "Courier New", monospace;
}
pre {
background: #e9ecef;
padding: 15px;
border-radius: 6px;
overflow-x: auto;
}
.download-links {
text-align: center;
margin: 30px 0;
}
.download-links a {
display: inline-block;
margin: 10px;
padding: 12px 24px;
background: #007bff;
color: white;
text-decoration: none;
border-radius: 6px;
}
.download-links a:hover {
background: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>UnstoppableSwap Flatpak Repository</h1>
<p>
This repository provides Flatpak packages for
<a href="https://github.com/UnstoppableSwap/core"
>UnstoppableSwap GUI.</a
>
</p>
<div class="install-section">
<h2>Installation</h2>
<pre><code># Add the repository
flatpak remote-add --if-not-exists unstoppableswap https://flatpak.unstoppableswap.net/unstoppableswap.flatpakrepo
# Install the application
flatpak install unstoppableswap net.unstoppableswap.gui
# Run it
flatpak run net.unstoppableswap.gui
</code></pre>
<h2>Run it</h2>
<pre><code>flatpak run net.unstoppableswap.gui</code></pre>
<h2>Update</h2>
<pre><code>flatpak update net.unstoppableswap.gui</code></pre>
<br />
<h3>Requirements</h3>
<ul>
<li>Flatpak 1.0 or newer</li>
<li>Linux distribution with Flatpak support</li>
<li>x86_64 architecture</li>
</ul>
</div>
<div class="download-links">
<a href="net.unstoppableswap.gui.flatpak">Download .flatpak Bundle</a>
<a href="net.unstoppableswap.gui.flatpakref">Download .flatpakref</a>
<a href="unstoppableswap.flatpakrepo">Download .flatpakrepo</a>
</div>
</div>
</body>
</html>