更新wine运行器数据
This commit is contained in:
parent
879d10b224
commit
3727cbffa2
|
@ -0,0 +1,84 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="auto">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>404</title>
|
||||||
|
<style>
|
||||||
|
/* 通用样式 */
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 100vh;
|
||||||
|
background-color: #f0f9ff;
|
||||||
|
font-family: system-ui, -apple-system, sans-serif;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
text-align: center;
|
||||||
|
padding: 20px;
|
||||||
|
max-width: 600px;
|
||||||
|
}
|
||||||
|
.error-image {
|
||||||
|
max-width: min(65%, 400px);
|
||||||
|
height: auto;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
color: #0369a1;
|
||||||
|
font-size: clamp(2rem, 5vw, 2.5rem);
|
||||||
|
margin: 0 0 15px 0;
|
||||||
|
line-height: 1.2;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
color: #666;
|
||||||
|
font-size: clamp(1rem, 3vw, 1.1rem);
|
||||||
|
line-height: 1.6;
|
||||||
|
margin: 0 0 30px 0;
|
||||||
|
}
|
||||||
|
.home-btn {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 12px 32px;
|
||||||
|
background-color: #0284c7;
|
||||||
|
color: white;
|
||||||
|
border-radius: 8px;
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: 500;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
box-shadow: 0 4px 6px rgba(2, 132, 199, 0.1);
|
||||||
|
}
|
||||||
|
.home-btn:hover {
|
||||||
|
background-color: #0369a1;
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 6px 8px rgba(2, 132, 199, 0.2);
|
||||||
|
}
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
.home-btn { display: block; margin: 10px auto; width: 80%; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script>
|
||||||
|
const userLang = navigator.language.startsWith('zh') ? 'zh' : 'en';
|
||||||
|
document.documentElement.lang = userLang;
|
||||||
|
const i18n = {
|
||||||
|
zh: { title: "页面不存在", desc: "您访问的地址可能已失效或输入有误<br>请检查URL或返回首页", btn: "返回首页" },
|
||||||
|
en: { title: "Page Not Found", desc: "The requested URL was not found<br>Please check the address or return to homepage", btn: "Back to Home" }
|
||||||
|
};
|
||||||
|
window.onload = () => {
|
||||||
|
document.getElementById('title').textContent = i18n[userLang].title;
|
||||||
|
document.getElementById('desc').innerHTML = i18n[userLang].desc;
|
||||||
|
document.getElementById('homeBtn').textContent = i18n[userLang].btn;
|
||||||
|
document.title = i18n[userLang].title;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<img src="https://www.gxde.top/404.png" alt="404" class="error-image">
|
||||||
|
<h1 id="title"></h1>
|
||||||
|
<p id="desc"></p>
|
||||||
|
<a href="/" id="homeBtn" class="home-btn"></a>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
12
update.json
12
update.json
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"Version": "4.0.0.1",
|
"Version": "4.1.5.0",
|
||||||
"New": "4.0.0.2 故障修复:\n※1、修复打包器生成 deb 指定的 arm helper 包名错误的问题\n\n4.0.0 更新内容:\n※1、优化运行器窗口大小机制\n※2、Wine 安装器支持根据机器实际情况自动推荐适合的 Wine\n※3、Wine 安装器支持手动导入 Wine 7z 包并提供相应 7z 包的网盘下载地址\n※4、兼容 Deepin 终端(deepin 15 经典版本,deepin-terminal-gtk)\n※5、跟进 dxvk 2.4\n※6、修复 deepin 23 无法使用 Mono/Gecko 安装器的问题\n※7、修复 debian testing 打包时会把 / 打入 .7z 包内导致系统死机的问题\n※8、支持 AOSC(安同)、小小电脑、proot 容器\n※9、支持在 Termux 直接运行(单独提供安装包)\n10、修复虚拟机启动器入口不会调用安装的 Qemu Extra 的问题\n11、优化高级打包器容器名称生成机制\n12、修复部分机器无法正常打开高级打包器的问题\n13、修复高级打包器选择Wine封装入deb模式时helper只能使用spark dwine helper的问题\n\n更新时间:2024年07月22日",
|
"New": "4.1.5.0 修复:\n※1、修复虚拟机安装工具磁盘创建问题\n※2、更新 dxvk 版本至 2.6.1\n※3、更新 winetricks 版本\n※4、适配 spark-wine10\n\n更新时间:2025年04月20日",
|
||||||
"Url": ["https://gitee.com/gfdgd-xi/deep-wine-runner/releases/download/4.0.0/spark-deepin-wine-runner_4.0.0.2_all.deb"],
|
"Url": ["https://sourceforge.net/projects/deep-wine-runner/files/4.1.5/spark-deepin-wine-runner_4.1.5.deb/download"],
|
||||||
"Url-pkg": ["https://sourceforge.net/projects/deep-wine-runner/files/4.0.0/spark-deepin-wine-runner-4.0.0.1-1-any.pkg.tar.zst/download"],
|
"Url-pkg": ["https://sourceforge.net/projects/deep-wine-runner/files/4.1.5/spark-deepin-wine-runner-4.1.5-1-any.pkg.tar.zst/download"],
|
||||||
"Url-rpm": ["https://sourceforge.net/projects/deep-wine-runner/files/4.0.0/spark-deepin-wine-runner-4.0.0.1-0.noarch.rpm/download"],
|
"Url-rpm": ["https://sourceforge.net/projects/deep-wine-runner/files/4.1.5/spark-deepin-wine-runner-4.1.5-0.noarch.rpm/download"],
|
||||||
"Url-termux": ["https://sourceforge.net/projects/deep-wine-runner/files/4.0.0.1/spark-deepin-wine-runner-termux_4.0.0.1_all.deb/download"]
|
"Url-termux": ["https://sourceforge.net/projects/deep-wine-runner/files/4.1.5/spark-deepin-wine-runner-termux_4.1.5_all.deb/download"]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue