-
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
16 changed files
with
4,073 additions
and
155 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
import { defineUserConfig } from "vuepress"; | ||
import { defaultTheme } from "@vuepress/theme-default"; | ||
import { docsearchPlugin } from "@vuepress/plugin-docsearch"; | ||
|
||
export default defineUserConfig({ | ||
head: [ | ||
['link', { rel: 'icon', type: 'image/png', sizes: '16x16', href: `/images/icons/favicon-16x16.png`, }], | ||
['link', { rel: 'icon', type: 'image/png', sizes: '32x32', href: `/images/icons/favicon-32x32.png`, }], | ||
['link', { rel: 'apple-touch-icon', sizes: '180x180', href: `/images/icons/apple-touch-icon.png`, }], | ||
['link', { rel: 'manifest', href: `/manifest.webmanifest`, }], | ||
['link', { rel: 'mask-icon', color: '#5bbad5', href: `/images/icons/safari-pinned-tab.svg`, }], | ||
['link', { rel: 'shortcut icon', href: `/images/icons/favicon.ico`, }], | ||
['meta', { name: 'apple-mobile-web-app-title', content: 'GravitLauncher Wiki' }], | ||
['meta', { name: 'application-name', content: 'GravitLauncher Wiki' }], | ||
['meta', { name: 'msapplication-TileColor', content: '#603cba' }], | ||
['meta', { name: 'msapplication-config', content: '/images/icons/browserconfig.xml' }], | ||
['meta', { name: 'theme-color', content: '#ffffff' }], | ||
['meta', { property: 'og:title', content: 'GravitLauncher Wiki' }], | ||
['meta', { property: 'og:type', content: 'website' }], | ||
['meta', { property: 'og:url', content: 'https://gravitlauncher.com/' }], | ||
['meta', { property: 'og:image', content: 'https://gravitlauncher.com/images/logo.png' }], | ||
['meta', { property: 'og:image:width', content: '512' }], | ||
['meta', { property: 'og:image:height', content: '512' }], | ||
], | ||
lang: 'ru_RU', | ||
title: 'GravitLauncher Wiki', | ||
description: 'GravitLauncher Wiki', | ||
port: '8080', //Порт на котором запускается VuePress | ||
theme: defaultTheme({ | ||
repo: 'GravitLauncher/Launcher', | ||
docsRepo: 'https://github.com/GravitLauncher/LauncherWiki', | ||
docsBranch: 'main', | ||
docsDir: 'docs', | ||
editLinkPattern: ':repo/edit/:branch/:path', | ||
locales: { | ||
'/': { | ||
editLinkText: 'Измените эту страницу на GitHub', | ||
lastUpdatedText: "Последнее обновление", | ||
notFound: [ | ||
"Здесь ничего нет.", | ||
"Как мы тут оказались?", | ||
"Похоже, у нас есть несколько неработающих ссылок." | ||
], | ||
backToHome: "Вернуться на главную", | ||
openInNewWindow: "открыть в новом окне", | ||
toggleDarkMode: "переключить темный режим", | ||
toggleSidebar: "переключить боковую панель", | ||
contributors: false, | ||
contributorsText: "Спонсоры", | ||
}, | ||
}, | ||
logo: 'images/logo.png', | ||
navbar: [ | ||
{ | ||
text: 'Руководство', | ||
children: [ | ||
'/install/README.md', | ||
'/auth/README.md', | ||
'/clientbuild/README.md', | ||
'/servers/README.md', | ||
'/runtime/README.md', | ||
'/other/README.md', | ||
'/modules/README.md', | ||
'/dev/README.md', | ||
], | ||
}, | ||
{ | ||
text: 'Зеркало', | ||
link: 'https://mirror.gravitlauncher.com/', | ||
}, | ||
{ | ||
text: 'Discord', | ||
link: 'https://discord.gg/b9QG4ygY75', | ||
}, | ||
], | ||
sidebar: { | ||
'/': [ | ||
{ | ||
text: 'Руководство', | ||
collapsible: false, | ||
children: [ | ||
'/install/README.md', | ||
'/auth/README.md', | ||
'/clientbuild/README.md', | ||
'/servers/README.md', | ||
'/runtime/README.md', | ||
'/other/README.md', | ||
'/modules/README.md', | ||
'/dev/README.md', | ||
], | ||
}, | ||
], | ||
}, | ||
}), | ||
plugins: [ | ||
docsearchPlugin({ | ||
appId: 'H9GISVMWXN', | ||
apiKey: '256b831b5e9c45c225d0a55f2de0d4b0', | ||
indexName: 'gravitlauncher1', | ||
debug: false, | ||
locales: { | ||
'/': { | ||
placeholder: 'Поиск', | ||
translations: { | ||
button: { | ||
buttonText: 'Поиск', | ||
}, | ||
}, | ||
}, | ||
}, | ||
}), | ||
] | ||
}) |
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 was deleted.
Oops, something went wrong.
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,2 +1 @@ | ||
export * from "./en"; | ||
export * from "./ru"; |
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,18 +1,17 @@ | ||
--- | ||
lang: ru-RU | ||
home: true | ||
title: Главная | ||
heroImage: /logo.avif | ||
description: Лаунчер написан на Java с использованием технологии JavaFX, за счёт чего обладает широкими возможностями кастомизации и безупречной производительностью. С помощью умной обвязки, Вы можете скачать клиенты и настроить сервера всего в несколько команд, не компилируя исходники и не меняя классы клиента! | ||
actions: | ||
- text: Начало работы | ||
link: /guide/getting-started.html | ||
link: /install/ | ||
type: primary | ||
features: | ||
- title: Кроссплатформенность | ||
details: Работает везде, начиная от Linux и заканчивая Вашей кофеваркой | ||
- title: Безопасность | ||
details: Поддержка нативной библиотеки защиты AntiInject и защита от распространенных методов взлома | ||
- title: Кастомизируемость | ||
details: Лаунчер написан на Java с использованием технологии JavaFX, за счёт чего обладает широкими возможностями кастомизации | ||
--- | ||
- title: 🔥 Версии | ||
details: Поддерживаются все популярные версии Minecraft начиная от 1.7.10 заканчивая версией Minecraft 1.20. | ||
- title: 🔒 Безопасность | ||
details: Поддержка нативной защиты, шифрования рантайма, обфускации ProGuard, подписи .jar/.exe и т.д. | ||
- title: 🔧 Кастомизируемость | ||
details: Лаунчер написан на Java с использованием технологии JavaFX, за счёт чего обладает широкими возможностями кастомизации. | ||
--- |
Oops, something went wrong.