You've already forked KernelSU-Next
mirror of
https://github.com/KernelSU-Next/KernelSU-Next.git
synced 2025-08-27 23:46:34 +00:00
Add Simplified Chinese for website (#11)
* add README_TW * Update README_CN.md * add Simplified Chinese for website add Simplified Chinese for website fix some mistakes in README_CN
This commit is contained in:
committed by
GitHub
parent
73fb1977ac
commit
41058ec69d
@@ -22,7 +22,7 @@
|
||||
KernelSU Next 支持从 4.4 到 6.6 的大多数安卓内核
|
||||
- GKI 2.0(5.10+)内核可运行预置镜像和 LKM/KMI
|
||||
- GKI 1.0(4.19 - 5.4)内核需要使用 KernelSU 内核驱动重新编译
|
||||
- EOL (<4.14) 内核也需要使用 KernelSU 内核驱动重新编译 (3.18+ 這是一個實驗版本,可能需要一些功能回溯。)
|
||||
- EOL (<4.14) 内核也需要使用 KernelSU 内核驱动重新编译 (3.18+ 的版本处于试验阶段,可能需要一些功能回溯)
|
||||
|
||||
目前只支持 `arm64-v8a` 架构
|
||||
|
||||
|
||||
7
docs/zh/assets/bootstrap/css/bootstrap.min.css
vendored
Normal file
7
docs/zh/assets/bootstrap/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
6
docs/zh/assets/bootstrap/js/bootstrap.min.js
vendored
Normal file
6
docs/zh/assets/bootstrap/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
115
docs/zh/assets/css/main.css
Normal file
115
docs/zh/assets/css/main.css
Normal file
@@ -0,0 +1,115 @@
|
||||
html, body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-family: 'Inter', sans-serif;
|
||||
background-color: #ffffff;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: auto;
|
||||
background-color: #000000;
|
||||
color: #ffffff;
|
||||
padding: 1.5rem 0;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.navbar-brand span {
|
||||
font-weight: bold;
|
||||
font-size: 1.5rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.navbar-toggler {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.navbar-nav .nav-link {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.navbar-nav .nav-link:hover {
|
||||
color: #cccccc;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: #000000;
|
||||
color: #ffffff;
|
||||
padding: 5rem 0;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
header p {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
ol {
|
||||
padding-left: 1.5rem;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
background: #f8f9fa;
|
||||
border-left: 5px solid #000000;
|
||||
font-size: 0.95rem;
|
||||
overflow-x: auto;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
.highlight code {
|
||||
color: #000000;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.header-icon {
|
||||
font-size: 4rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.contact-icons {
|
||||
font-size: 2rem;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.contact-icons a {
|
||||
color: #000000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.contact-icons a:hover {
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.btn-copy {
|
||||
background-color: #000000;
|
||||
color: #ffffff;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn-copy:hover {
|
||||
background-color: rgb(238, 238, 238);
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.table th, .table td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#devices a {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
BIN
docs/zh/assets/icons/ksu-next-tab.png
Normal file
BIN
docs/zh/assets/icons/ksu-next-tab.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
BIN
docs/zh/assets/icons/ksu-next.png
Normal file
BIN
docs/zh/assets/icons/ksu-next.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
61
docs/zh/assets/js/bold-and-dark.js
Normal file
61
docs/zh/assets/js/bold-and-dark.js
Normal file
@@ -0,0 +1,61 @@
|
||||
(function() {
|
||||
"use strict"; // Start of use strict
|
||||
|
||||
function initParallax() {
|
||||
|
||||
if (!('requestAnimationFrame' in window)) return;
|
||||
if (/Mobile|Android/.test(navigator.userAgent)) return;
|
||||
|
||||
var parallaxItems = document.querySelectorAll('[data-bss-parallax]');
|
||||
|
||||
if (!parallaxItems.length) return;
|
||||
|
||||
var defaultSpeed = 0.5;
|
||||
var visible = [];
|
||||
var scheduled;
|
||||
|
||||
window.addEventListener('scroll', scroll);
|
||||
window.addEventListener('resize', scroll);
|
||||
|
||||
scroll();
|
||||
|
||||
function scroll() {
|
||||
|
||||
visible.length = 0;
|
||||
|
||||
for (var i = 0; i < parallaxItems.length; i++) {
|
||||
var rect = parallaxItems[i].getBoundingClientRect();
|
||||
var speed = parseFloat(parallaxItems[i].getAttribute('data-bss-parallax-speed'), 10) || defaultSpeed;
|
||||
|
||||
if (rect.bottom > 0 && rect.top < window.innerHeight) {
|
||||
visible.push({
|
||||
speed: speed,
|
||||
node: parallaxItems[i]
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
cancelAnimationFrame(scheduled);
|
||||
|
||||
if (visible.length) {
|
||||
scheduled = requestAnimationFrame(update);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function update() {
|
||||
|
||||
for (var i = 0; i < visible.length; i++) {
|
||||
var node = visible[i].node;
|
||||
var speed = visible[i].speed;
|
||||
|
||||
node.style.transform = 'translate3d(0, ' + (-window.scrollY * speed) + 'px, 0)';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
initParallax();
|
||||
})(); // End of use strict
|
||||
|
||||
7
docs/zh/assets/js/copy.js
Normal file
7
docs/zh/assets/js/copy.js
Normal file
@@ -0,0 +1,7 @@
|
||||
function copyToClipboard(button) {
|
||||
var code = button.previousElementSibling.textContent;
|
||||
navigator.clipboard.writeText(code).then(() => {
|
||||
button.textContent = "Copied!";
|
||||
setTimeout(() => button.textContent = "Copy", 2000);
|
||||
});
|
||||
}
|
||||
1
docs/zh/assets/js/copy.min.js
vendored
Normal file
1
docs/zh/assets/js/copy.min.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
function copyToClipboard(button){var code=button.previousElementSibling.textContent;navigator.clipboard.writeText(code).then(()=>{button.textContent="已复制到剪贴板!";setTimeout(()=>button.textContent="复制",2000)})}
|
||||
111
docs/zh/index.html
Normal file
111
docs/zh/index.html
Normal file
@@ -0,0 +1,111 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>主页 | KernelSU Next</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
|
||||
<link rel="icon" href="assets/icons/ksu-next-tab.png" type="image/x-icon">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
||||
<link rel="stylesheet" href="assets/css/main.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- Navbar -->
|
||||
<nav class="navbar navbar-expand-md sticky-top py-3">
|
||||
<div class="container">
|
||||
<a class="navbar-brand d-flex align-items-center" href="#">
|
||||
<span>KernelSU Next</span>
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarResponsive">
|
||||
<ul class="navbar-nav ms-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-light" href="#">主页</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-light" href="#installation">安装</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-light" href="pages/features.html">特性</a>
|
||||
</li>
|
||||
<li class="nav-item"></li>
|
||||
<a class="nav-link text-light" href="pages/devices.html">设备</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://github.com/rifsxd/KernelSU-Next" target="_blank">
|
||||
<i class="fab fa-github fa-lg"></i>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Header -->
|
||||
<header>
|
||||
<div class="container text-center">
|
||||
<div class="header-icon">
|
||||
<img src="assets/icons/ksu-next.png" width="80" height="80">
|
||||
</div>
|
||||
<h1 class="fw-bold">KernelSU Next</h1>
|
||||
<p class="lead">安卓基于内核的 Root 方案</p>
|
||||
<p>支持从 4.4 到 6.6 的大多数安卓内核</p>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Installation Section -->
|
||||
<section id="installation" class="py-5">
|
||||
<div class="container">
|
||||
<h2 class="text-center mb-4">安装</h2>
|
||||
<p class="text-center">在内核目录的根目录下针对不同的安装选项来运行下列命令</p>
|
||||
<h3 class="mt-4">最新发行版本</h3>
|
||||
<div class="highlight mt-3">
|
||||
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -</code>
|
||||
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">复制</button>
|
||||
</div>
|
||||
<h3 class="mt-4">Next 分支(开发版本)</h3>
|
||||
<div class="highlight mt-3">
|
||||
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -s next</code>
|
||||
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">复制</button>
|
||||
</div>
|
||||
<h3 class="mt-4">指定版本标签</h3>
|
||||
<div class="highlight mt-3">
|
||||
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -s v1.0.2-R14</code>
|
||||
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">复制</button>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Contact Information Section -->
|
||||
<section id="contact" class="py-5">
|
||||
<div class="container text-center">
|
||||
<h2 class="mb-4">联系我们</h2>
|
||||
<p>如果您有任何问题或需要支持,请随时联系我们:</p>
|
||||
<div class="contact-icons">
|
||||
<a href="https://github.com/rifsxd/KernelSU-Next/issues" target="_blank">
|
||||
<i class="fab fa-github"></i>
|
||||
</a>
|
||||
<a href="https://t.me/ksunext_discussions" target="_blank">
|
||||
<i class="fab fa-telegram-plane"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<p>© 2025 KernelSU Next 团队。保留所有权利。在 <a href="https://github.com/rifsxd/KernelSU-Next" target="_blank">GitHub</a>上查看源代码</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="assets/js/copy.min.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
331
docs/zh/pages/devices.html
Normal file
331
docs/zh/pages/devices.html
Normal file
@@ -0,0 +1,331 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>设备 | KernelSU Next</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
|
||||
<link rel="icon" href="../assets/icons/ksu-next-tab.png" type="image/x-icon">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- Navbar -->
|
||||
<nav class="navbar navbar-expand-md sticky-top py-3">
|
||||
<div class="container">
|
||||
<a class="navbar-brand d-flex align-items-center" href="https://rifsxd.github.io/KernelSU-Next/">
|
||||
<span>KernelSU Next</span>
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarResponsive">
|
||||
<ul class="navbar-nav ms-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-light" href="https://rifsxd.github.io/KernelSU-Next/">主页</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-light" href="https://rifsxd.github.io/KernelSU-Next/#installation">安装</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-light" href="features.html">特性</a>
|
||||
</li>
|
||||
<li class="nav-item"></li>
|
||||
<a class="nav-link text-light" href="#">设备</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://github.com/rifsxd/KernelSU-Next" target="_blank">
|
||||
<i class="fab fa-github fa-lg"></i>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Header -->
|
||||
<header>
|
||||
<div class="container text-center">
|
||||
<h1 class="fw-bold">非官方支持设备</h1>
|
||||
<p class="lead">以下是非 KernelSU Next 官方支持的设备列表</p>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Devices Table Section -->
|
||||
<section id="devices" class="py-5">
|
||||
<div class="container">
|
||||
<!-- Warning Box -->
|
||||
<div class="alert alert-warning" role="alert">
|
||||
<strong>请注意!</strong>本页中存在由其他开发者维护的非 KernelSU Next 官方支持的设备内核,请在使用前自行确保其安全性!
|
||||
</div>
|
||||
<!-- Wrap the table inside a div with overflow-x: auto -->
|
||||
<div style="overflow-x: auto;">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">维护者</th>
|
||||
<th scope="col">仓库</th>
|
||||
<th scope="col">支持设备</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/rifsxd" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/rifsxd?v=4" alt="rifsxd" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
rifsxd
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/rifsxd/nyx_android_kernel_realme_c35/releases" target="_blank">nyx_android_kernel_realme_c35</a></td>
|
||||
<td>Realme C35 (RMX3511, RMX3513)</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/devnoname120" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/devnoname120?v=4" alt="devnoname120" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
devnoname120
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/devnoname120/Android-Kernel-Builder_mi-note-10-lite/releases" target="_blank">kernel_xiaomi_sm6150</a></td>
|
||||
<td>Mi Note 10 Lite (toco)</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/utkustnr" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/utkustnr?v=4" alt="utkustnr" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
utkustnr
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/utkustnr/android_kernel_huawei_hi6250" target="_blank">android_kernel_huawei_hi6250</a></td>
|
||||
<td>Huawei P20 lite (ANE) & P Smart (FIG)</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/DrRoot85" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/DrRoot85?v=4" alt="DrRoot85" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
DrRoot85
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/DrRoot85/kernel_samsung_sm8550-commom" target="_blank">kernel_samsung_sm8550-commom</a></td>
|
||||
<td>Samsung Galaxy S23 Ultra</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/whyakari" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/whyakari?v=4" alt="whyakari" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
whyakari
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/MoeKernel/android_kernel_motorola_bangkk" target="_blank">android_kernel_motorola_bangkk</a></td>
|
||||
<td>Motorola Moto G84 5G</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/whyakari" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/whyakari?v=4" alt="whyakari" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
whyakari
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/MoeKernel/android_kernel_xiaomi_ginkgo" target="_blank">android_kernel_xiaomi_ginkgo</a></td>
|
||||
<td>Xiaomi Redmi Note 8/8T</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/eun0115" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/eun0115?v=4" alt="eun0115" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
eun0115
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/eun0115/android_kernel_samsung_a71" target="_blank">android_kernel_samsung_a71</a></td>
|
||||
<td>Samsung Galaxy A71</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/Flopster101" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/Flopster101?v=4" alt="Flopster101" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
Flopster101
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/FlopKernel-Series/flop_ginkgo_kernel" target="_blank">flop_ginkgo_kernel</a></td>
|
||||
<td>FloppyKernel for Redmi Note 8/8T (ginkgo)</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/Flopster101" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/Flopster101?v=4" alt="Flopster101" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
Flopster101
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/FlopKernel-Series/flop_s5e8825_kernel" target="_blank">flop_s5e8825_kernel</a></td>
|
||||
<td>FloppyKernel for Exynos 1280 Family (Galaxy A25, A33, A53, M33, M34)</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/ij-israfil" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/ij-israfil?v=4" alt="ij-israfil" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
ij-israfil
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/ij-israfil/android_kernel_realme_sdm710/releases" target="_blank">android_kernel_realme_sdm710</a></td>
|
||||
<td>Realme X (RMX1901)</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/skye-pa1n" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/skye-pa1n?v=4" alt="skye-pa1n" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
skye-pa1n
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/skye-pa1n/not_r8q_ui" target="_blank">not_r8q_ui</a></td>
|
||||
<td>Not_Kernel S20 FE 4G/5G (Snapdragon 865)</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/Ksawlii" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/Ksawlii?v=4" alt="Ksawlii" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
Ksawlii
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/Ksawlii/android_kernel_samsung_a53x-FireAsf" target="_blank">android_kernel_samsung_a53x-FireAsf</a></td>
|
||||
<td>Samsung Galaxy A53 5G</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/AlirezaParsi" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/AlirezaParsi?v=4" alt="AlirezaParsi" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
AlirezaParsi
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/AlirezaParsi/pocof3/releases" target="_blank">pocof3</a></td>
|
||||
<td>Poco F3 (alioth)</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/sidex15" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/sidex15?v=4" alt="sidex15" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
sidex15
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/sidex15/android_kernel_lge_sm8150" target="_blank">android_kernel_lge_sm8150</a></td>
|
||||
<td>LG V50, V50s, G8, G8s, G8x</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/itejo443" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/itejo443?v=4" alt="itejo443" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
itejo443
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/itejo443/android_kernel_samsung_sm7225" target="_blank">android_kernel_samsung_sm7225</a></td>
|
||||
<td>Samsung Galaxy F23 and M23 (m23xq)</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/pys36" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/pys36?v=4" alt="pys36" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
pys36
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/pys36/android_kernel_xiaomi_earth" target="_blank">android_kernel_xiaomi_earth</a></td>
|
||||
<td>Redmi 12C (earth), Poco C55 (aether)</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/riarumoda" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/pys36?v=4" alt="riarumoda" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
riarumoda
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/riarumoda/kernel_samsung_a9y18qlte" target="_blank">kernel_samsung_a9y18qlte</a></td>
|
||||
<td>Samsung Galaxy A9 (2018) [a9y18qlte]</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/sajadasadollahi83" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/sajadasadollahi83?v=4" alt="riarumoda" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
sajadasadollahi83
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/sajadasadollahi83/android_kernel_xiaomi_sm6150" target="_blank">android_kernel_xiaomi_sm6150</a></td>
|
||||
<td>Xiaomi Redmi Note 10 Pro</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/hxsyzl" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/hxsyzl?v=4" alt="riarumoda" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
hxsyzl
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/hxsyzl/kernel_lge_sm8150" target="_blank">kernel_lge_sm8150</a></td>
|
||||
<td>LG V50, V50s, G8, G8s, G8x</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/blueskychan-dev" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/blueskychan-dev?v=4" alt="blueskychan-dev" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
blueskychan-dev
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/galaxybuild-project/android_kernel_samsung_a23xq" target="_blank">android_kernel_samsung_a23xq</a></td>
|
||||
<td>Wonderful Kernel for Samsung Galaxy A23 5G (Snapdragon 695)</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://github.com/blueskychan-dev" target="_blank">
|
||||
<img src="https://avatars.githubusercontent.com/blueskychan-dev?v=4" alt="blueskychan-dev" class="rounded-circle" width="30" height="30" style="margin-right: 10px;">
|
||||
blueskychan-dev
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="https://github.com/galaxybuild-project/exynos-linux-stable" target="_blank">exynos-linux-stable</a></td>
|
||||
<td>xxTR-Kernel but MindPatched for Exynos 9810 Family (Galaxy S9, S9+, Note 9)</td>
|
||||
</tr>
|
||||
|
||||
<!-- <tr>
|
||||
<td>Example Maintainer</td>
|
||||
<td><a href="https://github.com/example/example" target="_blank">example repo name</a></td>
|
||||
<td>Example Devices</td>
|
||||
</tr> -->
|
||||
<!-- Add more rows as needed -->
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<p>© 2025 KernelSU Next 团队。保留所有权利。在 <a href="https://github.com/rifsxd/KernelSU-Next" target="_blank">GitHub</a>上查看源代码</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
124
docs/zh/pages/features.html
Normal file
124
docs/zh/pages/features.html
Normal file
@@ -0,0 +1,124 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>特性 | KernelSU Next</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
|
||||
<link rel="icon" href="../assets/icons/ksu-next-tab.png" type="image/x-icon">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/main.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- Navbar -->
|
||||
<nav class="navbar navbar-expand-md sticky-top py-3">
|
||||
<div class="container">
|
||||
<a class="navbar-brand d-flex align-items-center" href="https://rifsxd.github.io/KernelSU-Next/">
|
||||
<span>KernelSU Next</span>
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarResponsive">
|
||||
<ul class="navbar-nav ms-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-light" href="https://rifsxd.github.io/KernelSU-Next/">主页</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-light" href="https://rifsxd.github.io/KernelSU-Next/#installation">安装</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-light" href="#">特性</a>
|
||||
</li>
|
||||
<li class="nav-item"></li>
|
||||
<a class="nav-link text-light" href="devices.html">设备</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://github.com/rifsxd/KernelSU-Next" target="_blank">
|
||||
<i class="fab fa-github fa-lg"></i>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Header -->
|
||||
<header>
|
||||
<div class="container text-center">
|
||||
<h1 class="fw-bold">功能特性</h1>
|
||||
<p class="lead">探索 KernelSU Next 的精彩特性!</p>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Features Section -->
|
||||
<section class="py-5">
|
||||
<div class="container">
|
||||
<h2 class="text-center mb-4">特性</h2>
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-lg-4 mb-4 d-flex">
|
||||
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
|
||||
<h3><i class="fas fa-microchip"></i> 支持非 GKI 内核</h3>
|
||||
<p>支持从 4.x 至 5.4 LTS 的非 GKI 内核(3.x 版本仍在测试中)</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 d-flex">
|
||||
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
|
||||
<h3><i class="fas fa-cogs"></i> 支持 GKI 内核</h3>
|
||||
<p>GKI 内核支持 LKM/KMI 方法以简化安装流程</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 d-flex">
|
||||
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
|
||||
<h3><i class="fas fa-magic"></i> 动态模块系统</h3>
|
||||
<p>KernelSU Next 同时包含 Magic Mount 与 OverlayFS 的模块系统,并可在管理器中轻松切换。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 d-flex">
|
||||
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
|
||||
<h3><i class="fas fa-tools"></i> 全新管理器</h3>
|
||||
<p>KernelSU Next 拥有全新的重新设计的管理器,具有多项功能改进和 UI 大改观。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 d-flex">
|
||||
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
|
||||
<h3><i class="fas fa-undo"></i> 模块备份恢复功能</h3>
|
||||
<p>KernelSU Next 允许你在不小心卸载了模块或者卸载模块后改变主意或只是想恢复简要备份时,备份并恢复你的模块。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 d-flex">
|
||||
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
|
||||
<h3><i class="fas fa-sync-alt"></i> 自动更新</h3>
|
||||
<p>幸福倒计时开启!</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 d-flex">
|
||||
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
|
||||
<h3><i class="fas fa-calendar-alt"></i> 高强度更新</h3>
|
||||
<p>KernelSU Next 始终保持生产队母猪一般的速度更新,确保你时刻体验上新功能。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 d-flex">
|
||||
<div class="feature-box text-center p-3 border border-dark rounded flex-fill">
|
||||
<h3><i class="fas fa-eye-slash"></i> Hosts 隐藏</h3>
|
||||
<p>KernelSU Next 通过应用程序配置文件卸载隐藏 hosts 文件修改,使你可以轻松使用广告拦截器。</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="text-center">
|
||||
<div class="container">
|
||||
<p>© 2025 KernelSU Next 团队。保留所有权利。在 <a href="https://github.com/rifsxd/KernelSU-Next" target="_blank">GitHub</a>上查看源代码</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user