forked from tiann/KernelSU
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
1,212 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
_ __ | ||
/\ /\___ _ __ _ __ ___| / _\/\ /\ | ||
/ //_/ _ \ '__| '_ \ / _ \ \ \/ / \ \ | ||
/ __ \ __/ | | | | | __/ |\ \ \_/ / | ||
\/ \/\___|_| |_| |_|\___|_\__/\___/ | ||
_ __ _ ____ _ _ | ||
| |/ /___ _ __ _ __ ___| / ___|| | | | | ||
| ' // _ \ '__| '_ \ / _ \ \___ \| | | | | ||
| . \ __/ | | | | | __/ |___) | |_| | | ||
|_|\_\___|_| |_| |_|\___|_|____/ \___/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import { createRequire } from 'module' | ||
import { defineConfig } from 'vitepress' | ||
|
||
const require = createRequire(import.meta.url) | ||
const pkg = require('vitepress/package.json') | ||
|
||
export default defineConfig({ | ||
lang: 'pt-BR', | ||
description: 'Uma solução raiz baseada em kernel para dispositivos Android GKI.', | ||
|
||
themeConfig: { | ||
nav: nav(), | ||
|
||
lastUpdatedText: 'Última atualização', | ||
|
||
sidebar: { | ||
'/pt_BR/guide/': sidebarGuide() | ||
}, | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/tiann/KernelSU' } | ||
], | ||
|
||
footer: { | ||
message: 'Lançado sob a Licença GPL3.', | ||
copyright: 'Copyright © Desenvolvedores KernelSU atuais de 2022' | ||
}, | ||
|
||
editLink: { | ||
pattern: 'https://github.com/tiann/KernelSU/edit/main/website/docs/:path', | ||
text: 'Edite esta página no GitHub' | ||
} | ||
} | ||
}) | ||
|
||
function nav() { | ||
return [ | ||
{ text: 'Guia', link: '/pt_BR/guide/what-is-kernelsu' }, | ||
{ text: 'Github', link: 'https://github.com/tiann/KernelSU' } | ||
] | ||
} | ||
|
||
function sidebarGuide() { | ||
return [ | ||
{ | ||
text: 'Guia', | ||
items: [ | ||
{ text: 'O que é KernelSU?', link: '/pt_BR/guide/what-is-kernelsu' }, | ||
{ text: 'Instalação', link: '/pt_BR/guide/installation' }, | ||
{ text: 'Como construir?', link: '/pt_BR/guide/how-to-build' }, | ||
{ text: 'Integração para dispositivos não GKI', link: '/pt_BR/guide/how-to-integrate-for-non-gki'}, | ||
{ text: 'Dispositivos com suporte não oficial', link: '/pt_BR/guide/unofficially-support-devices.md' }, | ||
{ text: 'Guia do Módulo', link: '/guide/module.md' }, | ||
{ text: 'Perfil do Aplicativo', link: '/pt_BR/guide/app-profile.md' }, | ||
{ text: 'Resgate do bootloop', link: '/pt_BR/guide/rescue-from-bootloop.md' }, | ||
{ text: 'FAQ', link: '/guide/faq' }, | ||
{ text: 'Recursos ocultos', link: '/pt_BR/guide/hidden-features' }, | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.