mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.Docs.git
synced 2025-11-19 21:16:31 +08:00
Deploying to gh-pages from @ DGP-Studio/Snap.Hutao.Docs@18b46ebf3a 🚀
This commit is contained in:
@@ -7,23 +7,23 @@
|
||||
<script>
|
||||
const { hash, origin, pathname } = window.location;
|
||||
const { languages } = window.navigator;
|
||||
const anchor = hash.substr(1);
|
||||
const anchor = hash.substring(1);
|
||||
|
||||
const localeConfig = {"/en/":["en-US","en-UK","en"],"/zh/":["zh-CN","zh-TW","zh"]};
|
||||
const localeConfig = {"0":["/en/",["en-US","en-UK","en"]],"1":["/zh/",["zh-CN","zh-TW","zh"]],"/zh/":["zh-CN"],"/en/":["en-US"]};
|
||||
const availableLocales = ["/en/","/zh/"];
|
||||
const defaultLocale = "/en/";
|
||||
const defaultBehavior = "defaultLocale"
|
||||
|
||||
let localePath = null;
|
||||
let matchedLocalePath = null;
|
||||
|
||||
// get matched locale
|
||||
findLanguage:
|
||||
for (const lang of languages)
|
||||
for (const [path, langs] of Object.entries(localeConfig))
|
||||
for (const [localePath, langs] of Object.entries(localeConfig))
|
||||
if (langs.includes(lang)) {
|
||||
if (!availableLocales.includes(path))
|
||||
if (!availableLocales.includes(localePath))
|
||||
continue;
|
||||
localePath = path;
|
||||
matchedLocalePath = localePath;
|
||||
break findLanguage;
|
||||
}
|
||||
|
||||
@@ -31,17 +31,17 @@
|
||||
const defaultLink = defaultLocale? `${origin}${defaultLocale}${pathname.substring(1)}${anchor?`#${anchor}`:""}`: null;
|
||||
|
||||
// a locale matches
|
||||
if (localePath) {
|
||||
const localeLink = `${origin}${localePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
if (matchedLocalePath) {
|
||||
const localeLink = `${origin}${matchedLocalePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
|
||||
if (availableLocales.includes(localePath)) {
|
||||
if (availableLocales.includes(matchedLocalePath)) {
|
||||
location.href = localeLink;
|
||||
}
|
||||
// the page does not exist
|
||||
else {
|
||||
// locale homepage
|
||||
if (defaultBehavior === "homepage") {
|
||||
location.href = `${origin}${localePath}`;
|
||||
location.href = `${origin}${matchedLocalePath}`;
|
||||
}
|
||||
// default locale page
|
||||
else if (defaultBehavior === "defaultLocale" && defaultLink) {
|
||||
|
||||
@@ -7,23 +7,23 @@
|
||||
<script>
|
||||
const { hash, origin, pathname } = window.location;
|
||||
const { languages } = window.navigator;
|
||||
const anchor = hash.substr(1);
|
||||
const anchor = hash.substring(1);
|
||||
|
||||
const localeConfig = {"/en/":["en-US","en-UK","en"],"/zh/":["zh-CN","zh-TW","zh"]};
|
||||
const localeConfig = {"0":["/en/",["en-US","en-UK","en"]],"1":["/zh/",["zh-CN","zh-TW","zh"]],"/zh/":["zh-CN"],"/en/":["en-US"]};
|
||||
const availableLocales = ["/en/","/zh/"];
|
||||
const defaultLocale = "/en/";
|
||||
const defaultBehavior = "defaultLocale"
|
||||
|
||||
let localePath = null;
|
||||
let matchedLocalePath = null;
|
||||
|
||||
// get matched locale
|
||||
findLanguage:
|
||||
for (const lang of languages)
|
||||
for (const [path, langs] of Object.entries(localeConfig))
|
||||
for (const [localePath, langs] of Object.entries(localeConfig))
|
||||
if (langs.includes(lang)) {
|
||||
if (!availableLocales.includes(path))
|
||||
if (!availableLocales.includes(localePath))
|
||||
continue;
|
||||
localePath = path;
|
||||
matchedLocalePath = localePath;
|
||||
break findLanguage;
|
||||
}
|
||||
|
||||
@@ -31,17 +31,17 @@
|
||||
const defaultLink = defaultLocale? `${origin}${defaultLocale}${pathname.substring(1)}${anchor?`#${anchor}`:""}`: null;
|
||||
|
||||
// a locale matches
|
||||
if (localePath) {
|
||||
const localeLink = `${origin}${localePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
if (matchedLocalePath) {
|
||||
const localeLink = `${origin}${matchedLocalePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
|
||||
if (availableLocales.includes(localePath)) {
|
||||
if (availableLocales.includes(matchedLocalePath)) {
|
||||
location.href = localeLink;
|
||||
}
|
||||
// the page does not exist
|
||||
else {
|
||||
// locale homepage
|
||||
if (defaultBehavior === "homepage") {
|
||||
location.href = `${origin}${localePath}`;
|
||||
location.href = `${origin}${matchedLocalePath}`;
|
||||
}
|
||||
// default locale page
|
||||
else if (defaultBehavior === "defaultLocale" && defaultLink) {
|
||||
|
||||
@@ -7,23 +7,23 @@
|
||||
<script>
|
||||
const { hash, origin, pathname } = window.location;
|
||||
const { languages } = window.navigator;
|
||||
const anchor = hash.substr(1);
|
||||
const anchor = hash.substring(1);
|
||||
|
||||
const localeConfig = {"/en/":["en-US","en-UK","en"],"/zh/":["zh-CN","zh-TW","zh"]};
|
||||
const localeConfig = {"0":["/en/",["en-US","en-UK","en"]],"1":["/zh/",["zh-CN","zh-TW","zh"]],"/zh/":["zh-CN"],"/en/":["en-US"]};
|
||||
const availableLocales = ["/en/","/zh/"];
|
||||
const defaultLocale = "/en/";
|
||||
const defaultBehavior = "defaultLocale"
|
||||
|
||||
let localePath = null;
|
||||
let matchedLocalePath = null;
|
||||
|
||||
// get matched locale
|
||||
findLanguage:
|
||||
for (const lang of languages)
|
||||
for (const [path, langs] of Object.entries(localeConfig))
|
||||
for (const [localePath, langs] of Object.entries(localeConfig))
|
||||
if (langs.includes(lang)) {
|
||||
if (!availableLocales.includes(path))
|
||||
if (!availableLocales.includes(localePath))
|
||||
continue;
|
||||
localePath = path;
|
||||
matchedLocalePath = localePath;
|
||||
break findLanguage;
|
||||
}
|
||||
|
||||
@@ -31,17 +31,17 @@
|
||||
const defaultLink = defaultLocale? `${origin}${defaultLocale}${pathname.substring(1)}${anchor?`#${anchor}`:""}`: null;
|
||||
|
||||
// a locale matches
|
||||
if (localePath) {
|
||||
const localeLink = `${origin}${localePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
if (matchedLocalePath) {
|
||||
const localeLink = `${origin}${matchedLocalePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
|
||||
if (availableLocales.includes(localePath)) {
|
||||
if (availableLocales.includes(matchedLocalePath)) {
|
||||
location.href = localeLink;
|
||||
}
|
||||
// the page does not exist
|
||||
else {
|
||||
// locale homepage
|
||||
if (defaultBehavior === "homepage") {
|
||||
location.href = `${origin}${localePath}`;
|
||||
location.href = `${origin}${matchedLocalePath}`;
|
||||
}
|
||||
// default locale page
|
||||
else if (defaultBehavior === "defaultLocale" && defaultLink) {
|
||||
|
||||
@@ -7,23 +7,23 @@
|
||||
<script>
|
||||
const { hash, origin, pathname } = window.location;
|
||||
const { languages } = window.navigator;
|
||||
const anchor = hash.substr(1);
|
||||
const anchor = hash.substring(1);
|
||||
|
||||
const localeConfig = {"/en/":["en-US","en-UK","en"],"/zh/":["zh-CN","zh-TW","zh"]};
|
||||
const localeConfig = {"0":["/en/",["en-US","en-UK","en"]],"1":["/zh/",["zh-CN","zh-TW","zh"]],"/zh/":["zh-CN"],"/en/":["en-US"]};
|
||||
const availableLocales = ["/en/","/zh/"];
|
||||
const defaultLocale = "/en/";
|
||||
const defaultBehavior = "defaultLocale"
|
||||
|
||||
let localePath = null;
|
||||
let matchedLocalePath = null;
|
||||
|
||||
// get matched locale
|
||||
findLanguage:
|
||||
for (const lang of languages)
|
||||
for (const [path, langs] of Object.entries(localeConfig))
|
||||
for (const [localePath, langs] of Object.entries(localeConfig))
|
||||
if (langs.includes(lang)) {
|
||||
if (!availableLocales.includes(path))
|
||||
if (!availableLocales.includes(localePath))
|
||||
continue;
|
||||
localePath = path;
|
||||
matchedLocalePath = localePath;
|
||||
break findLanguage;
|
||||
}
|
||||
|
||||
@@ -31,17 +31,17 @@
|
||||
const defaultLink = defaultLocale? `${origin}${defaultLocale}${pathname.substring(1)}${anchor?`#${anchor}`:""}`: null;
|
||||
|
||||
// a locale matches
|
||||
if (localePath) {
|
||||
const localeLink = `${origin}${localePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
if (matchedLocalePath) {
|
||||
const localeLink = `${origin}${matchedLocalePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
|
||||
if (availableLocales.includes(localePath)) {
|
||||
if (availableLocales.includes(matchedLocalePath)) {
|
||||
location.href = localeLink;
|
||||
}
|
||||
// the page does not exist
|
||||
else {
|
||||
// locale homepage
|
||||
if (defaultBehavior === "homepage") {
|
||||
location.href = `${origin}${localePath}`;
|
||||
location.href = `${origin}${matchedLocalePath}`;
|
||||
}
|
||||
// default locale page
|
||||
else if (defaultBehavior === "defaultLocale" && defaultLink) {
|
||||
|
||||
@@ -7,23 +7,23 @@
|
||||
<script>
|
||||
const { hash, origin, pathname } = window.location;
|
||||
const { languages } = window.navigator;
|
||||
const anchor = hash.substr(1);
|
||||
const anchor = hash.substring(1);
|
||||
|
||||
const localeConfig = {"/en/":["en-US","en-UK","en"],"/zh/":["zh-CN","zh-TW","zh"]};
|
||||
const localeConfig = {"0":["/en/",["en-US","en-UK","en"]],"1":["/zh/",["zh-CN","zh-TW","zh"]],"/zh/":["zh-CN"],"/en/":["en-US"]};
|
||||
const availableLocales = ["/en/","/zh/"];
|
||||
const defaultLocale = "/en/";
|
||||
const defaultBehavior = "defaultLocale"
|
||||
|
||||
let localePath = null;
|
||||
let matchedLocalePath = null;
|
||||
|
||||
// get matched locale
|
||||
findLanguage:
|
||||
for (const lang of languages)
|
||||
for (const [path, langs] of Object.entries(localeConfig))
|
||||
for (const [localePath, langs] of Object.entries(localeConfig))
|
||||
if (langs.includes(lang)) {
|
||||
if (!availableLocales.includes(path))
|
||||
if (!availableLocales.includes(localePath))
|
||||
continue;
|
||||
localePath = path;
|
||||
matchedLocalePath = localePath;
|
||||
break findLanguage;
|
||||
}
|
||||
|
||||
@@ -31,17 +31,17 @@
|
||||
const defaultLink = defaultLocale? `${origin}${defaultLocale}${pathname.substring(1)}${anchor?`#${anchor}`:""}`: null;
|
||||
|
||||
// a locale matches
|
||||
if (localePath) {
|
||||
const localeLink = `${origin}${localePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
if (matchedLocalePath) {
|
||||
const localeLink = `${origin}${matchedLocalePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
|
||||
if (availableLocales.includes(localePath)) {
|
||||
if (availableLocales.includes(matchedLocalePath)) {
|
||||
location.href = localeLink;
|
||||
}
|
||||
// the page does not exist
|
||||
else {
|
||||
// locale homepage
|
||||
if (defaultBehavior === "homepage") {
|
||||
location.href = `${origin}${localePath}`;
|
||||
location.href = `${origin}${matchedLocalePath}`;
|
||||
}
|
||||
// default locale page
|
||||
else if (defaultBehavior === "defaultLocale" && defaultLink) {
|
||||
|
||||
@@ -7,23 +7,23 @@
|
||||
<script>
|
||||
const { hash, origin, pathname } = window.location;
|
||||
const { languages } = window.navigator;
|
||||
const anchor = hash.substr(1);
|
||||
const anchor = hash.substring(1);
|
||||
|
||||
const localeConfig = {"/en/":["en-US","en-UK","en"],"/zh/":["zh-CN","zh-TW","zh"]};
|
||||
const localeConfig = {"0":["/en/",["en-US","en-UK","en"]],"1":["/zh/",["zh-CN","zh-TW","zh"]],"/zh/":["zh-CN"],"/en/":["en-US"]};
|
||||
const availableLocales = ["/en/","/zh/"];
|
||||
const defaultLocale = "/en/";
|
||||
const defaultBehavior = "defaultLocale"
|
||||
|
||||
let localePath = null;
|
||||
let matchedLocalePath = null;
|
||||
|
||||
// get matched locale
|
||||
findLanguage:
|
||||
for (const lang of languages)
|
||||
for (const [path, langs] of Object.entries(localeConfig))
|
||||
for (const [localePath, langs] of Object.entries(localeConfig))
|
||||
if (langs.includes(lang)) {
|
||||
if (!availableLocales.includes(path))
|
||||
if (!availableLocales.includes(localePath))
|
||||
continue;
|
||||
localePath = path;
|
||||
matchedLocalePath = localePath;
|
||||
break findLanguage;
|
||||
}
|
||||
|
||||
@@ -31,17 +31,17 @@
|
||||
const defaultLink = defaultLocale? `${origin}${defaultLocale}${pathname.substring(1)}${anchor?`#${anchor}`:""}`: null;
|
||||
|
||||
// a locale matches
|
||||
if (localePath) {
|
||||
const localeLink = `${origin}${localePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
if (matchedLocalePath) {
|
||||
const localeLink = `${origin}${matchedLocalePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
|
||||
if (availableLocales.includes(localePath)) {
|
||||
if (availableLocales.includes(matchedLocalePath)) {
|
||||
location.href = localeLink;
|
||||
}
|
||||
// the page does not exist
|
||||
else {
|
||||
// locale homepage
|
||||
if (defaultBehavior === "homepage") {
|
||||
location.href = `${origin}${localePath}`;
|
||||
location.href = `${origin}${matchedLocalePath}`;
|
||||
}
|
||||
// default locale page
|
||||
else if (defaultBehavior === "defaultLocale" && defaultLink) {
|
||||
|
||||
@@ -7,23 +7,23 @@
|
||||
<script>
|
||||
const { hash, origin, pathname } = window.location;
|
||||
const { languages } = window.navigator;
|
||||
const anchor = hash.substr(1);
|
||||
const anchor = hash.substring(1);
|
||||
|
||||
const localeConfig = {"/en/":["en-US","en-UK","en"],"/zh/":["zh-CN","zh-TW","zh"]};
|
||||
const localeConfig = {"0":["/en/",["en-US","en-UK","en"]],"1":["/zh/",["zh-CN","zh-TW","zh"]],"/zh/":["zh-CN"],"/en/":["en-US"]};
|
||||
const availableLocales = ["/en/","/zh/"];
|
||||
const defaultLocale = "/en/";
|
||||
const defaultBehavior = "defaultLocale"
|
||||
|
||||
let localePath = null;
|
||||
let matchedLocalePath = null;
|
||||
|
||||
// get matched locale
|
||||
findLanguage:
|
||||
for (const lang of languages)
|
||||
for (const [path, langs] of Object.entries(localeConfig))
|
||||
for (const [localePath, langs] of Object.entries(localeConfig))
|
||||
if (langs.includes(lang)) {
|
||||
if (!availableLocales.includes(path))
|
||||
if (!availableLocales.includes(localePath))
|
||||
continue;
|
||||
localePath = path;
|
||||
matchedLocalePath = localePath;
|
||||
break findLanguage;
|
||||
}
|
||||
|
||||
@@ -31,17 +31,17 @@
|
||||
const defaultLink = defaultLocale? `${origin}${defaultLocale}${pathname.substring(1)}${anchor?`#${anchor}`:""}`: null;
|
||||
|
||||
// a locale matches
|
||||
if (localePath) {
|
||||
const localeLink = `${origin}${localePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
if (matchedLocalePath) {
|
||||
const localeLink = `${origin}${matchedLocalePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
|
||||
if (availableLocales.includes(localePath)) {
|
||||
if (availableLocales.includes(matchedLocalePath)) {
|
||||
location.href = localeLink;
|
||||
}
|
||||
// the page does not exist
|
||||
else {
|
||||
// locale homepage
|
||||
if (defaultBehavior === "homepage") {
|
||||
location.href = `${origin}${localePath}`;
|
||||
location.href = `${origin}${matchedLocalePath}`;
|
||||
}
|
||||
// default locale page
|
||||
else if (defaultBehavior === "defaultLocale" && defaultLink) {
|
||||
|
||||
@@ -7,23 +7,23 @@
|
||||
<script>
|
||||
const { hash, origin, pathname } = window.location;
|
||||
const { languages } = window.navigator;
|
||||
const anchor = hash.substr(1);
|
||||
const anchor = hash.substring(1);
|
||||
|
||||
const localeConfig = {"/en/":["en-US","en-UK","en"],"/zh/":["zh-CN","zh-TW","zh"]};
|
||||
const localeConfig = {"0":["/en/",["en-US","en-UK","en"]],"1":["/zh/",["zh-CN","zh-TW","zh"]],"/zh/":["zh-CN"],"/en/":["en-US"]};
|
||||
const availableLocales = ["/en/","/zh/"];
|
||||
const defaultLocale = "/en/";
|
||||
const defaultBehavior = "defaultLocale"
|
||||
|
||||
let localePath = null;
|
||||
let matchedLocalePath = null;
|
||||
|
||||
// get matched locale
|
||||
findLanguage:
|
||||
for (const lang of languages)
|
||||
for (const [path, langs] of Object.entries(localeConfig))
|
||||
for (const [localePath, langs] of Object.entries(localeConfig))
|
||||
if (langs.includes(lang)) {
|
||||
if (!availableLocales.includes(path))
|
||||
if (!availableLocales.includes(localePath))
|
||||
continue;
|
||||
localePath = path;
|
||||
matchedLocalePath = localePath;
|
||||
break findLanguage;
|
||||
}
|
||||
|
||||
@@ -31,17 +31,17 @@
|
||||
const defaultLink = defaultLocale? `${origin}${defaultLocale}${pathname.substring(1)}${anchor?`#${anchor}`:""}`: null;
|
||||
|
||||
// a locale matches
|
||||
if (localePath) {
|
||||
const localeLink = `${origin}${localePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
if (matchedLocalePath) {
|
||||
const localeLink = `${origin}${matchedLocalePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
|
||||
if (availableLocales.includes(localePath)) {
|
||||
if (availableLocales.includes(matchedLocalePath)) {
|
||||
location.href = localeLink;
|
||||
}
|
||||
// the page does not exist
|
||||
else {
|
||||
// locale homepage
|
||||
if (defaultBehavior === "homepage") {
|
||||
location.href = `${origin}${localePath}`;
|
||||
location.href = `${origin}${matchedLocalePath}`;
|
||||
}
|
||||
// default locale page
|
||||
else if (defaultBehavior === "defaultLocale" && defaultLink) {
|
||||
|
||||
@@ -7,23 +7,23 @@
|
||||
<script>
|
||||
const { hash, origin, pathname } = window.location;
|
||||
const { languages } = window.navigator;
|
||||
const anchor = hash.substr(1);
|
||||
const anchor = hash.substring(1);
|
||||
|
||||
const localeConfig = {"/en/":["en-US","en-UK","en"],"/zh/":["zh-CN","zh-TW","zh"]};
|
||||
const localeConfig = {"0":["/en/",["en-US","en-UK","en"]],"1":["/zh/",["zh-CN","zh-TW","zh"]],"/zh/":["zh-CN"],"/en/":["en-US"]};
|
||||
const availableLocales = ["/en/","/zh/"];
|
||||
const defaultLocale = "/en/";
|
||||
const defaultBehavior = "defaultLocale"
|
||||
|
||||
let localePath = null;
|
||||
let matchedLocalePath = null;
|
||||
|
||||
// get matched locale
|
||||
findLanguage:
|
||||
for (const lang of languages)
|
||||
for (const [path, langs] of Object.entries(localeConfig))
|
||||
for (const [localePath, langs] of Object.entries(localeConfig))
|
||||
if (langs.includes(lang)) {
|
||||
if (!availableLocales.includes(path))
|
||||
if (!availableLocales.includes(localePath))
|
||||
continue;
|
||||
localePath = path;
|
||||
matchedLocalePath = localePath;
|
||||
break findLanguage;
|
||||
}
|
||||
|
||||
@@ -31,17 +31,17 @@
|
||||
const defaultLink = defaultLocale? `${origin}${defaultLocale}${pathname.substring(1)}${anchor?`#${anchor}`:""}`: null;
|
||||
|
||||
// a locale matches
|
||||
if (localePath) {
|
||||
const localeLink = `${origin}${localePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
if (matchedLocalePath) {
|
||||
const localeLink = `${origin}${matchedLocalePath}${pathname.substring(1)}${anchor?`#${anchor}`:""}`;
|
||||
|
||||
if (availableLocales.includes(localePath)) {
|
||||
if (availableLocales.includes(matchedLocalePath)) {
|
||||
location.href = localeLink;
|
||||
}
|
||||
// the page does not exist
|
||||
else {
|
||||
// locale homepage
|
||||
if (defaultBehavior === "homepage") {
|
||||
location.href = `${origin}${localePath}`;
|
||||
location.href = `${origin}${matchedLocalePath}`;
|
||||
}
|
||||
// default locale page
|
||||
else if (defaultBehavior === "defaultLocale" && defaultLink) {
|
||||
|
||||
1
assets/404.html-392add74.js
Normal file
1
assets/404.html-392add74.js
Normal file
@@ -0,0 +1 @@
|
||||
const t=JSON.parse('{"key":"v-3706649a","path":"/404.html","title":"","lang":"en-US","frontmatter":{"layout":"NotFound","description":"","head":[["meta",{"property":"og:url","content":"https://hut.ao/404.html"}],["meta",{"property":"og:type","content":"website"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"WebPage\\",\\"name\\":\\"\\"}"]]},"headers":[],"git":{},"readingTime":{"minutes":0,"words":0},"filePathRelative":null,"autoDesc":true}');export{t as data};
|
||||
@@ -1 +0,0 @@
|
||||
const t=JSON.parse('{"key":"v-3706649a","path":"/404.html","title":"","lang":"en-US","frontmatter":{"layout":"NotFound","description":"","head":[["meta",{"property":"og:url","content":"https://hut.ao/404.html"}],["meta",{"property":"og:type","content":"website"}],["meta",{"property":"og:locale","content":"en-US"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"WebPage\\",\\"name\\":\\"\\"}"]]},"headers":[],"git":{},"readingTime":{"minutes":0,"words":0},"filePathRelative":null,"autoDesc":true}');export{t as data};
|
||||
File diff suppressed because one or more lines are too long
1
assets/FAQ.html-35cf3b82.js
Normal file
1
assets/FAQ.html-35cf3b82.js
Normal file
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
const e=JSON.parse('{"key":"v-1bd4ef83","path":"/en/advanced/FAQ.html","title":"常见问题","lang":"en-US","frontmatter":{"headerDepth":2,"icon":"ask","category":["FAQ"],"order":1,"description":"如何创建胡桃的桌面快捷方式社区力量 感谢 CzHUV 提供的解决方案 (https://github.com/DGP-Studio/Snap.Hutao.Docs/issues/12) Win+R 呼出运行窗口,在窗口中输入shell:AppsFolder !Run (https://img.alicdn.com/imgextra/i3/1797064...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/advanced/FAQ.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/advanced/FAQ.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"常见问题"}],["meta",{"property":"og:description","content":"如何创建胡桃的桌面快捷方式社区力量 感谢 CzHUV 提供的解决方案 (https://github.com/DGP-Studio/Snap.Hutao.Docs/issues/12) Win+R 呼出运行窗口,在窗口中输入shell:AppsFolder !Run (https://img.alicdn.com/imgextra/i3/1797064..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:35.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:35.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"常见问题\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:35.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"如何创建胡桃的桌面快捷方式","slug":"如何创建胡桃的桌面快捷方式","link":"#如何创建胡桃的桌面快捷方式","children":[]},{"level":2,"title":"如何添加一个默认以管理员方式运行的快捷方式","slug":"如何添加一个默认以管理员方式运行的快捷方式","link":"#如何添加一个默认以管理员方式运行的快捷方式","children":[]},{"level":2,"title":"如何让胡桃工具箱开机自动启动","slug":"如何让胡桃工具箱开机自动启动","link":"#如何让胡桃工具箱开机自动启动","children":[]},{"level":2,"title":"如何通过胡桃工具箱快速地启动游戏","slug":"如何通过胡桃工具箱快速地启动游戏","link":"#如何通过胡桃工具箱快速地启动游戏","children":[]},{"level":2,"title":"如何通过网络代理使用胡桃工具箱","slug":"如何通过网络代理使用胡桃工具箱","link":"#如何通过网络代理使用胡桃工具箱","children":[]},{"level":2,"title":"为什么在设置中点击修改游戏路径无效","slug":"为什么在设置中点击修改游戏路径无效","link":"#为什么在设置中点击修改游戏路径无效","children":[]},{"level":2,"title":"为什么程序会出现乱码现象","slug":"为什么程序会出现乱码现象","link":"#为什么程序会出现乱码现象","children":[]},{"level":2,"title":"为什么解锁帧率后使用心海时出现掉帧","slug":"为什么解锁帧率后使用心海时出现掉帧","link":"#为什么解锁帧率后使用心海时出现掉帧","children":[]},{"level":2,"title":"为什么会弹出需要使用新应用以打开的对话框","slug":"为什么会弹出需要使用新应用以打开的对话框","link":"#为什么会弹出需要使用新应用以打开的对话框","children":[]},{"level":2,"title":"为什么米游社帐号登录状态经常失效,添加的帐号消失","slug":"为什么米游社帐号登录状态经常失效-添加的帐号消失","link":"#为什么米游社帐号登录状态经常失效-添加的帐号消失","children":[]},{"level":2,"title":"为什么游戏登录状态会失效,导致切换帐号功能无效","slug":"为什么游戏登录状态会失效-导致切换帐号功能无效","link":"#为什么游戏登录状态会失效-导致切换帐号功能无效","children":[]},{"level":2,"title":"为什么程序会提示注册计划任务失败","slug":"为什么程序会提示注册计划任务失败","link":"#为什么程序会提示注册计划任务失败","children":[]},{"level":2,"title":"为什么在开启代理后胡桃工具箱会没有网络连接","slug":"为什么在开启代理后胡桃工具箱会没有网络连接","link":"#为什么在开启代理后胡桃工具箱会没有网络连接","children":[]},{"level":2,"title":"为什么商店版本和侧载版本不会相互覆盖升级","slug":"为什么商店版本和侧载版本不会相互覆盖升级","link":"#为什么商店版本和侧载版本不会相互覆盖升级","children":[]}],"git":{"createdTime":1679108735000,"updatedTime":1679108735000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":5.08,"words":1524},"filePathRelative":"en/advanced/FAQ.md","localizedDate":"March 18, 2023","autoDesc":true}');export{e as data};
|
||||
1
assets/FAQ.html-f18d3e8b.js
Normal file
1
assets/FAQ.html-f18d3e8b.js
Normal file
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-b0dd6b00","path":"/zh/advanced/Gacha-system-and-export-principal.html","title":"祈愿系统与导出原理","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["FAQ"],"icon":"read","order":7,"redirectFrom":"/advanced/Gacha-system-and-export-principal.html","description":"Gacha System and Principal 胡桃的祈愿系统相较 Snap Genshin 进行了整体架构上的重新设计。 本文将解释原神的祈愿记录机制和胡桃工具箱中祈愿导出功能的技术原理。 祈愿的获取 获取祈愿记录需要请求米哈游的API 关于此API, 有下列几个注意点 通过米哈游服务器的API,只能查询到过去6个月内的祈愿记录; 这也是原神客...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/advanced/Gacha-system-and-export-principal.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/advanced/Gacha-system-and-export-principal.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"祈愿系统与导出原理"}],["meta",{"property":"og:description","content":"Gacha System and Principal 胡桃的祈愿系统相较 Snap Genshin 进行了整体架构上的重新设计。 本文将解释原神的祈愿记录机制和胡桃工具箱中祈愿导出功能的技术原理。 祈愿的获取 获取祈愿记录需要请求米哈游的API 关于此API, 有下列几个注意点 通过米哈游服务器的API,只能查询到过去6个月内的祈愿记录; 这也是原神客..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"祈愿系统与导出原理\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"祈愿的获取","slug":"祈愿的获取","link":"#祈愿的获取","children":[]},{"level":2,"title":"祈愿的存储","slug":"祈愿的存储","link":"#祈愿的存储","children":[]},{"level":2,"title":"UIGF格式","slug":"uigf格式","link":"#uigf格式","children":[{"level":3,"title":"祈愿的导入","slug":"祈愿的导入","link":"#祈愿的导入","children":[]},{"level":3,"title":"祈愿的导出","slug":"祈愿的导出","link":"#祈愿的导出","children":[]}]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":2.21,"words":664},"filePathRelative":"zh/advanced/Gacha-system-and-export-principal.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-b0dd6b00","path":"/zh/advanced/Gacha-system-and-export-principal.html","title":"祈愿系统与导出原理","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["FAQ"],"icon":"read","order":7,"redirectFrom":"/advanced/Gacha-system-and-export-principal.html","description":"Gacha System and Principal 胡桃的祈愿系统相较 Snap Genshin 进行了整体架构上的重新设计。 本文将解释原神的祈愿记录机制和胡桃工具箱中祈愿导出功能的技术原理。 祈愿的获取 获取祈愿记录需要请求米哈游的API 关于此API, 有下列几个注意点 通过米哈游服务器的API,只能查询到过去6个月内的祈愿记录; 这也是原神客...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/advanced/Gacha-system-and-export-principal.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/advanced/Gacha-system-and-export-principal.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"祈愿系统与导出原理"}],["meta",{"property":"og:description","content":"Gacha System and Principal 胡桃的祈愿系统相较 Snap Genshin 进行了整体架构上的重新设计。 本文将解释原神的祈愿记录机制和胡桃工具箱中祈愿导出功能的技术原理。 祈愿的获取 获取祈愿记录需要请求米哈游的API 关于此API, 有下列几个注意点 通过米哈游服务器的API,只能查询到过去6个月内的祈愿记录; 这也是原神客..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"祈愿系统与导出原理\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"祈愿的获取","slug":"祈愿的获取","link":"#祈愿的获取","children":[]},{"level":2,"title":"祈愿的存储","slug":"祈愿的存储","link":"#祈愿的存储","children":[]},{"level":2,"title":"UIGF格式","slug":"uigf格式","link":"#uigf格式","children":[{"level":3,"title":"祈愿的导入","slug":"祈愿的导入","link":"#祈愿的导入","children":[]},{"level":3,"title":"祈愿的导出","slug":"祈愿的导出","link":"#祈愿的导出","children":[]}]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":2.21,"words":664},"filePathRelative":"zh/advanced/Gacha-system-and-export-principal.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-5c3f740a","path":"/en/advanced/Gacha-system-and-export-principal.html","title":"祈愿系统与导出原理","lang":"en-US","frontmatter":{"headerDepth":0,"category":["FAQ"],"icon":"read","order":7,"description":"Gacha System and Principal 胡桃的祈愿系统相较 Snap Genshin 进行了整体架构上的重新设计。 本文将解释原神的祈愿记录机制和胡桃工具箱中祈愿导出功能的技术原理。 祈愿的获取 获取祈愿记录需要请求米哈游的API 关于此API, 有下列几个注意点 通过米哈游服务器的API,只能查询到过去6个月内的祈愿记录; 这也是原神客...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/advanced/Gacha-system-and-export-principal.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/advanced/Gacha-system-and-export-principal.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"祈愿系统与导出原理"}],["meta",{"property":"og:description","content":"Gacha System and Principal 胡桃的祈愿系统相较 Snap Genshin 进行了整体架构上的重新设计。 本文将解释原神的祈愿记录机制和胡桃工具箱中祈愿导出功能的技术原理。 祈愿的获取 获取祈愿记录需要请求米哈游的API 关于此API, 有下列几个注意点 通过米哈游服务器的API,只能查询到过去6个月内的祈愿记录; 这也是原神客..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:36.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:36.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"祈愿系统与导出原理\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:36.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"祈愿的获取","slug":"祈愿的获取","link":"#祈愿的获取","children":[]},{"level":2,"title":"祈愿的存储","slug":"祈愿的存储","link":"#祈愿的存储","children":[]},{"level":2,"title":"UIGF格式","slug":"uigf格式","link":"#uigf格式","children":[{"level":3,"title":"祈愿的导入","slug":"祈愿的导入","link":"#祈愿的导入","children":[]},{"level":3,"title":"祈愿的导出","slug":"祈愿的导出","link":"#祈愿的导出","children":[]}]}],"git":{"createdTime":1679108736000,"updatedTime":1679108736000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":2.19,"words":658},"filePathRelative":"en/advanced/Gacha-system-and-export-principal.md","localizedDate":"March 18, 2023","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-5c3f740a","path":"/en/advanced/Gacha-system-and-export-principal.html","title":"祈愿系统与导出原理","lang":"en-US","frontmatter":{"headerDepth":0,"category":["FAQ"],"icon":"read","order":7,"description":"Gacha System and Principal 胡桃的祈愿系统相较 Snap Genshin 进行了整体架构上的重新设计。 本文将解释原神的祈愿记录机制和胡桃工具箱中祈愿导出功能的技术原理。 祈愿的获取 获取祈愿记录需要请求米哈游的API 关于此API, 有下列几个注意点 通过米哈游服务器的API,只能查询到过去6个月内的祈愿记录; 这也是原神客...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/advanced/Gacha-system-and-export-principal.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/advanced/Gacha-system-and-export-principal.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"祈愿系统与导出原理"}],["meta",{"property":"og:description","content":"Gacha System and Principal 胡桃的祈愿系统相较 Snap Genshin 进行了整体架构上的重新设计。 本文将解释原神的祈愿记录机制和胡桃工具箱中祈愿导出功能的技术原理。 祈愿的获取 获取祈愿记录需要请求米哈游的API 关于此API, 有下列几个注意点 通过米哈游服务器的API,只能查询到过去6个月内的祈愿记录; 这也是原神客..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:36.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:36.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"祈愿系统与导出原理\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:36.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"祈愿的获取","slug":"祈愿的获取","link":"#祈愿的获取","children":[]},{"level":2,"title":"祈愿的存储","slug":"祈愿的存储","link":"#祈愿的存储","children":[]},{"level":2,"title":"UIGF格式","slug":"uigf格式","link":"#uigf格式","children":[{"level":3,"title":"祈愿的导入","slug":"祈愿的导入","link":"#祈愿的导入","children":[]},{"level":3,"title":"祈愿的导出","slug":"祈愿的导出","link":"#祈愿的导出","children":[]}]}],"git":{"createdTime":1679108736000,"updatedTime":1679108736000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":2.19,"words":658},"filePathRelative":"en/advanced/Gacha-system-and-export-principal.md","localizedDate":"March 18, 2023","autoDesc":true}');export{e as data};
|
||||
1
assets/VuePlayground-2597f270.js
Normal file
1
assets/VuePlayground-2597f270.js
Normal file
@@ -0,0 +1 @@
|
||||
import{I as p,f as d,_ as v}from"./app-ad64ba18.js";import{c,r as n,y as f,h as m,o as y,j as a}from"./framework-caa722f8.js";const g=e=>d({},{showCompileOutput:!1,clearConsole:!1,ssr:!1},JSON.parse(decodeURIComponent(e)));var R=c({name:"VuePlayground",props:{title:{type:String,default:""},files:{type:String,required:!0},settings:{type:String,default:"{}"}},setup(e){const o=n(!0),t=f(),l=n(),s=m(()=>g(e.settings)),r=async()=>{const{ReplStore:u,Repl:i}=await v(()=>import("./vue-repl-ce9c0da3.js"),["assets/vue-repl-ce9c0da3.js","assets/app-ad64ba18.js","assets/framework-caa722f8.js"]);t.value=i,l.value=new u({serializedState:decodeURIComponent(e.files)}),s.value.vueVersion&&await l.value.setVueVersion(s.value.vueVersion)};return y(async()=>{await r(),o.value=!1}),()=>[a("div",{class:"vue-playground-wrapper"},[e.title?a("div",{class:"header"},decodeURIComponent(e.title)):null,a("div",{class:"repl-container"},[o.value?a(p,{class:"preview-loading",height:192}):null,t.value?a(t.value,{store:l.value,autoResize:!0,...s.value,layout:"horizontal"}):null])])]}});export{R as default};
|
||||
@@ -1 +0,0 @@
|
||||
import{v as p,u as d,_ as v}from"./app-7d010250.js";import{c,r as n,y as f,h as m,o as y,j as a}from"./framework-caa722f8.js";const g=e=>d({},{showCompileOutput:!1,clearConsole:!1,ssr:!1},JSON.parse(decodeURIComponent(e)));var R=c({name:"VuePlayground",props:{title:{type:String,default:""},files:{type:String,required:!0},settings:{type:String,default:"{}"}},setup(e){const o=n(!0),t=f(),s=n(),l=m(()=>g(e.settings)),r=async()=>{const{ReplStore:u,Repl:i}=await v(()=>import("./vue-repl-f121d338.js"),["assets/vue-repl-f121d338.js","assets/app-7d010250.js","assets/framework-caa722f8.js"]);t.value=i,s.value=new u({serializedState:decodeURIComponent(e.files)}),l.value.vueVersion&&await s.value.setVueVersion(l.value.vueVersion)};return y(async()=>{await r(),o.value=!1}),()=>[a("div",{class:"vue-playground-wrapper"},[e.title?a("div",{class:"header"},decodeURIComponent(e.title)):null,a("div",{class:"repl-container"},[o.value?a(p,{class:"preview-loading",height:192}):null,t.value?a(t.value,{store:s.value,autoResize:!0,...l.value,layout:"horizontal"}):null])])]}});export{R as default};
|
||||
@@ -1 +0,0 @@
|
||||
import{_ as i,X as c,Y as s,a0 as n,Z as e,$ as t,a1 as d,C as a}from"./framework-caa722f8.js";const h={},_=d('<h1 id="成就管理" tabindex="-1"><a class="header-anchor" href="#成就管理" aria-hidden="true">#</a> 成就管理</h1><p><img src="https://img.alicdn.com/imgextra/i1/1797064093/O1CN01eddfVC1g6du4Xdd9P_!!1797064093.png" alt="" loading="lazy"></p><p>胡桃工具箱提供成就管理功能,用户可以通过它浏览并管理所有的成就状态</p><ul><li>在第一次使用时,你需要根据提示点击<code>创建新存档</code>按钮以创造一个成就存档并为其命名</li><li>创建第一个资料页后,你可以点击右上角的<code>创建新存档</code>来继续为更多的帐号创建成就记录档案</li></ul><h2 id="视频指南" tabindex="-1"><a class="header-anchor" href="#视频指南" aria-hidden="true">#</a> 视频指南</h2><p>对于大多数人而言,遵循本页文档会有更高的效率。</p><p>但如果你对其中包含的操作不熟悉,也可以回到这里来跟着视频指南操作。 ::: details 胡桃工具箱视频指南 6 - 成就管理篇</p>',7),p=e("p",null,":::",-1),u=e("h2",{id:"成就导入",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#成就导入","aria-hidden":"true"},"#"),t(" 成就导入")],-1),m={href:"https://www.snapgenshin.com/development/UIAF.html",target:"_blank",rel:"noopener noreferrer"},f=e("strong",null,"成就导出工具",-1),g={href:"https://www.snapgenshin.com/development/ThirdPartyAccess.html#url-%E5%8D%8F%E8%AE%AE",target:"_blank",rel:"noopener noreferrer"},x=e("li",null,[t("你可以点击成就页面右上角隐藏菜单中的"),e("code",null,"导入"),t("按钮,并选择"),e("code",null,"从 UIAF 文件导入"),t("以加载以 UIAF 数据格式储存的第三方成就数据")],-1),b=e("h2",{id:"推荐使用的成就识别工具",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#推荐使用的成就识别工具","aria-hidden":"true"},"#"),t(" 推荐使用的成就识别工具")],-1),v={href:"https://github.com/HolographicHat/YaeAchievement",target:"_blank",rel:"noopener noreferrer"},B={href:"https://cocogoat.work/",target:"_blank",rel:"noopener noreferrer"};function k(A,w){const r=a("BiliBili"),o=a("ExternalLinkIcon"),l=a("Badge");return c(),s("div",null,[_,n(r,{bvid:"BV1WL411y7q1"}),p,u,e("ul",null,[e("li",null,[t("胡桃工具箱使用"),e("a",m,[t("统一可交换成就标准"),n(o)]),t("数据标准来储存用户的成就数据 "),e("ul",null,[e("li",null,[t("该标准允许用户从其它"),f,t("中通过 "),e("a",g,[t("Url 协议"),n(o)]),t("和剪贴板将数据导入到胡桃工具箱中")])])]),x]),b,e("ul",null,[e("li",null,[e("p",null,[e("a",v,[t("YaeAchievement"),n(o)]),t(),n(l,{text:"成就识别",type:"tip"})])]),e("li",null,[e("p",null,[e("a",B,[t("椰羊cocogoat"),n(o)]),t(),n(l,{text:"成就攻略",type:"tip"})])])])])}const V=i(h,[["render",k],["__file","achievements.html.vue"]]);export{V as default};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-699a13b0","path":"/en/features/achievements.html","title":"成就管理","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":3,"description":"胡桃工具箱提供成就管理功能,用户可以通过它浏览并管理所有的成就状态 在第一次使用时,你需要根据提示点击创建新存档按钮以创造一个成就存档并为其命名; 创建第一个资料页后,你可以点击右上角的创建新存档来继续为更多的帐号创建成就记录档案; 视频指南 对于大多数人而言,遵循本页文档会有更高的效率。 胡桃工具箱视频指南 6 - 成就管理篇 成就导入 胡桃工具箱使...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/achievements.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/achievements.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"成就管理"}],["meta",{"property":"og:description","content":"胡桃工具箱提供成就管理功能,用户可以通过它浏览并管理所有的成就状态 在第一次使用时,你需要根据提示点击创建新存档按钮以创造一个成就存档并为其命名; 创建第一个资料页后,你可以点击右上角的创建新存档来继续为更多的帐号创建成就记录档案; 视频指南 对于大多数人而言,遵循本页文档会有更高的效率。 胡桃工具箱视频指南 6 - 成就管理篇 成就导入 胡桃工具箱使..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:22.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:22.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"成就管理\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:22.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"视频指南","slug":"视频指南","link":"#视频指南","children":[]},{"level":2,"title":"成就导入","slug":"成就导入","link":"#成就导入","children":[]},{"level":2,"title":"推荐使用的成就识别工具","slug":"推荐使用的成就识别工具","link":"#推荐使用的成就识别工具","children":[]}],"git":{"createdTime":1664419063000,"updatedTime":1679108722000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":4}]},"readingTime":{"minutes":1.24,"words":371},"filePathRelative":"en/features/achievements.md","localizedDate":"September 29, 2022","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-699a13b0","path":"/en/features/achievements.html","title":"成就管理","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":3,"description":"胡桃工具箱提供成就管理功能,用户可以通过它浏览并管理所有的成就状态 在第一次使用时,你需要根据提示点击创建新存档按钮以创造一个成就存档并为其命名; 创建第一个资料页后,你可以点击右上角的创建新存档来继续为更多的帐号创建成就记录档案; 视频指南 对于大多数人而言,遵循本页文档会有更高的效率。 胡桃工具箱视频指南 6 - 成就管理篇 成就导入 胡桃工具箱使...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/achievements.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/achievements.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"成就管理"}],["meta",{"property":"og:description","content":"胡桃工具箱提供成就管理功能,用户可以通过它浏览并管理所有的成就状态 在第一次使用时,你需要根据提示点击创建新存档按钮以创造一个成就存档并为其命名; 创建第一个资料页后,你可以点击右上角的创建新存档来继续为更多的帐号创建成就记录档案; 视频指南 对于大多数人而言,遵循本页文档会有更高的效率。 胡桃工具箱视频指南 6 - 成就管理篇 成就导入 胡桃工具箱使..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-04-01T04:08:59.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-04-01T04:08:59.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"成就管理\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-04-01T04:08:59.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"视频指南","slug":"视频指南","link":"#视频指南","children":[]},{"level":2,"title":"成就导入","slug":"成就导入","link":"#成就导入","children":[]},{"level":2,"title":"推荐使用的成就识别工具","slug":"推荐使用的成就识别工具","link":"#推荐使用的成就识别工具","children":[]}],"git":{"createdTime":1664419063000,"updatedTime":1680322139000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":5}]},"readingTime":{"minutes":1.21,"words":362},"filePathRelative":"en/features/achievements.md","localizedDate":"September 29, 2022","autoDesc":true}');export{e as data};
|
||||
1
assets/achievements.html-8b8f5120.js
Normal file
1
assets/achievements.html-8b8f5120.js
Normal file
@@ -0,0 +1 @@
|
||||
import{_ as i,X as c,Y as d,a0 as n,Z as e,$ as t,a1 as s,C as o}from"./framework-caa722f8.js";const h={},_=s('<h1 id="成就管理" tabindex="-1"><a class="header-anchor" href="#成就管理" aria-hidden="true">#</a> 成就管理</h1><p><img src="https://img.alicdn.com/imgextra/i1/1797064093/O1CN01eddfVC1g6du4Xdd9P_!!1797064093.png" alt="" loading="lazy"></p><p>胡桃工具箱提供成就管理功能,用户可以通过它浏览并管理所有的成就状态</p><ul><li>在第一次使用时,你需要根据提示点击<code>创建新存档</code>按钮以创造一个成就存档并为其命名</li><li>创建第一个资料页后,你可以点击右上角的<code>创建新存档</code>来继续为更多的帐号创建成就记录档案</li></ul><h2 id="视频指南" tabindex="-1"><a class="header-anchor" href="#视频指南" aria-hidden="true">#</a> 视频指南</h2><p>对于大多数人而言,遵循本页文档会有更高的效率。</p><p>但如果你对其中包含的操作不熟悉,也可以回到这里来跟着视频指南操作。 ::: details 胡桃工具箱视频指南 6 - 成就管理篇</p>',7),p=e("p",null,":::",-1),u=e("h2",{id:"成就导入",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#成就导入","aria-hidden":"true"},"#"),t(" 成就导入")],-1),m={href:"https://uigf.org/standards/UIAF.html",target:"_blank",rel:"noopener noreferrer"},f=e("ul",null,[e("li",null,[t("该标准允许用户从其它"),e("strong",null,"成就导出工具"),t("中通过 Url 协议和剪贴板将数据导入到胡桃工具箱中")])],-1),g=e("li",null,[t("你可以点击成就页面右上角隐藏菜单中的"),e("code",null,"导入"),t("按钮,并选择"),e("code",null,"从 UIAF 文件导入"),t("以加载以 UIAF 数据格式储存的第三方成就数据")],-1),x=e("h2",{id:"推荐使用的成就识别工具",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#推荐使用的成就识别工具","aria-hidden":"true"},"#"),t(" 推荐使用的成就识别工具")],-1),B={href:"https://github.com/HolographicHat/YaeAchievement",target:"_blank",rel:"noopener noreferrer"},b={href:"https://cocogoat.work/",target:"_blank",rel:"noopener noreferrer"};function k(v,V){const r=o("BiliBili"),a=o("ExternalLinkIcon"),l=o("Badge");return c(),d("div",null,[_,n(r,{bvid:"BV1WL411y7q1"}),p,u,e("ul",null,[e("li",null,[t("胡桃工具箱使用"),e("a",m,[t("统一可交换成就标准"),n(a)]),t("数据标准来储存用户的成就数据 "),f]),g]),x,e("ul",null,[e("li",null,[e("p",null,[e("a",B,[t("YaeAchievement"),n(a)]),t(),n(l,{text:"成就识别",type:"tip"})])]),e("li",null,[e("p",null,[e("a",b,[t("椰羊cocogoat"),n(a)]),t(),n(l,{text:"成就攻略",type:"tip"})])])])])}const I=i(h,[["render",k],["__file","achievements.html.vue"]]);export{I as default};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-2841a60b","path":"/zh/features/achievements.html","title":"成就管理","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":3,"redirectFrom":"/features/achievements.html","description":"胡桃工具箱提供成就管理功能,用户可以通过它浏览并管理所有的成就状态 在第一次使用时,你需要根据提示点击创建新存档按钮以创造一个成就存档并为其命名; 创建第一个资料页后,你可以点击右上角的创建新存档来继续为更多的帐号创建成就记录档案; 视频指南 对于大多数人而言,遵循本页文档会有更高的效率。 但如果你对其中包含的操作不熟悉,也可以回到这里来跟着视频指南操...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/achievements.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/achievements.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"成就管理"}],["meta",{"property":"og:description","content":"胡桃工具箱提供成就管理功能,用户可以通过它浏览并管理所有的成就状态 在第一次使用时,你需要根据提示点击创建新存档按钮以创造一个成就存档并为其命名; 创建第一个资料页后,你可以点击右上角的创建新存档来继续为更多的帐号创建成就记录档案; 视频指南 对于大多数人而言,遵循本页文档会有更高的效率。 但如果你对其中包含的操作不熟悉,也可以回到这里来跟着视频指南操..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"成就管理\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"视频指南","slug":"视频指南","link":"#视频指南","children":[]},{"level":2,"title":"成就导入","slug":"成就导入","link":"#成就导入","children":[]},{"level":2,"title":"推荐使用的成就识别工具","slug":"推荐使用的成就识别工具","link":"#推荐使用的成就识别工具","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":1.24,"words":373},"filePathRelative":"zh/features/achievements.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-2841a60b","path":"/zh/features/achievements.html","title":"成就管理","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":3,"redirectFrom":"/features/achievements.html","description":"胡桃工具箱提供成就管理功能,用户可以通过它浏览并管理所有的成就状态 在第一次使用时,你需要根据提示点击创建新存档按钮以创造一个成就存档并为其命名; 创建第一个资料页后,你可以点击右上角的创建新存档来继续为更多的帐号创建成就记录档案; 视频指南 对于大多数人而言,遵循本页文档会有更高的效率。 但如果你对其中包含的操作不熟悉,也可以回到这里来跟着视频指南操...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/achievements.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/achievements.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"成就管理"}],["meta",{"property":"og:description","content":"胡桃工具箱提供成就管理功能,用户可以通过它浏览并管理所有的成就状态 在第一次使用时,你需要根据提示点击创建新存档按钮以创造一个成就存档并为其命名; 创建第一个资料页后,你可以点击右上角的创建新存档来继续为更多的帐号创建成就记录档案; 视频指南 对于大多数人而言,遵循本页文档会有更高的效率。 但如果你对其中包含的操作不熟悉,也可以回到这里来跟着视频指南操..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"成就管理\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"视频指南","slug":"视频指南","link":"#视频指南","children":[]},{"level":2,"title":"成就导入","slug":"成就导入","link":"#成就导入","children":[]},{"level":2,"title":"推荐使用的成就识别工具","slug":"推荐使用的成就识别工具","link":"#推荐使用的成就识别工具","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":1.24,"words":373},"filePathRelative":"zh/features/achievements.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
9
assets/app-ad64ba18.js
Normal file
9
assets/app-ad64ba18.js
Normal file
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
import{w as ln,c as B}from"./path-53f90ab3.js";import{an,ao as H,ap as q,aq as rn,ar as y,am as on,as as L,at as _,au as un,av as t,aw as sn,ax as tn,ay as fn}from"./mermaid.core-cd13285d.js";function cn(l){return l.innerRadius}function yn(l){return l.outerRadius}function gn(l){return l.startAngle}function mn(l){return l.endAngle}function pn(l){return l&&l.padAngle}function xn(l,h,I,D,v,A,C,a){var O=I-l,i=D-h,n=C-v,m=a-A,r=m*O-n*i;if(!(r*r<y))return r=(n*(h-A)-m*(l-v))/r,[l+r*O,h+r*i]}function W(l,h,I,D,v,A,C){var a=l-I,O=h-D,i=(C?A:-A)/L(a*a+O*O),n=i*O,m=-i*a,r=l+n,s=h+m,f=I+n,c=D+m,F=(r+f)/2,o=(s+c)/2,p=f-r,g=c-s,R=p*p+g*g,T=v-A,w=r*c-f*s,S=(g<0?-1:1)*L(fn(0,T*T*R-w*w)),j=(w*g-p*S)/R,z=(-w*p-g*S)/R,P=(w*g+p*S)/R,x=(-w*p+g*S)/R,d=j-F,e=z-o,u=P-F,G=x-o;return d*d+e*e>u*u+G*G&&(j=P,z=x),{cx:j,cy:z,x01:-n,y01:-m,x11:j*(v/T-1),y11:z*(v/T-1)}}function vn(){var l=cn,h=yn,I=B(0),D=null,v=gn,A=mn,C=pn,a=null,O=ln(i);function i(){var n,m,r=+l.apply(this,arguments),s=+h.apply(this,arguments),f=v.apply(this,arguments)-rn,c=A.apply(this,arguments)-rn,F=un(c-f),o=c>f;if(a||(a=n=O()),s<r&&(m=s,s=r,r=m),!(s>y))a.moveTo(0,0);else if(F>on-y)a.moveTo(s*H(f),s*q(f)),a.arc(0,0,s,f,c,!o),r>y&&(a.moveTo(r*H(c),r*q(c)),a.arc(0,0,r,c,f,o));else{var p=f,g=c,R=f,T=c,w=F,S=F,j=C.apply(this,arguments)/2,z=j>y&&(D?+D.apply(this,arguments):L(r*r+s*s)),P=_(un(s-r)/2,+I.apply(this,arguments)),x=P,d=P,e,u;if(z>y){var G=sn(z/r*q(j)),M=sn(z/s*q(j));(w-=G*2)>y?(G*=o?1:-1,R+=G,T-=G):(w=0,R=T=(f+c)/2),(S-=M*2)>y?(M*=o?1:-1,p+=M,g-=M):(S=0,p=g=(f+c)/2)}var J=s*H(p),K=s*q(p),N=r*H(T),Q=r*q(T);if(P>y){var U=s*H(g),V=s*q(g),X=r*H(R),Y=r*q(R),E;if(F<an)if(E=xn(J,K,X,Y,U,V,N,Q)){var Z=J-E[0],$=K-E[1],k=U-E[0],b=V-E[1],nn=1/q(tn((Z*k+$*b)/(L(Z*Z+$*$)*L(k*k+b*b)))/2),en=L(E[0]*E[0]+E[1]*E[1]);x=_(P,(r-en)/(nn-1)),d=_(P,(s-en)/(nn+1))}else x=d=0}S>y?d>y?(e=W(X,Y,J,K,s,d,o),u=W(U,V,N,Q,s,d,o),a.moveTo(e.cx+e.x01,e.cy+e.y01),d<P?a.arc(e.cx,e.cy,d,t(e.y01,e.x01),t(u.y01,u.x01),!o):(a.arc(e.cx,e.cy,d,t(e.y01,e.x01),t(e.y11,e.x11),!o),a.arc(0,0,s,t(e.cy+e.y11,e.cx+e.x11),t(u.cy+u.y11,u.cx+u.x11),!o),a.arc(u.cx,u.cy,d,t(u.y11,u.x11),t(u.y01,u.x01),!o))):(a.moveTo(J,K),a.arc(0,0,s,p,g,!o)):a.moveTo(J,K),!(r>y)||!(w>y)?a.lineTo(N,Q):x>y?(e=W(N,Q,U,V,r,-x,o),u=W(J,K,X,Y,r,-x,o),a.lineTo(e.cx+e.x01,e.cy+e.y01),x<P?a.arc(e.cx,e.cy,x,t(e.y01,e.x01),t(u.y01,u.x01),!o):(a.arc(e.cx,e.cy,x,t(e.y01,e.x01),t(e.y11,e.x11),!o),a.arc(0,0,r,t(e.cy+e.y11,e.cx+e.x11),t(u.cy+u.y11,u.cx+u.x11),o),a.arc(u.cx,u.cy,x,t(u.y11,u.x11),t(u.y01,u.x01),!o))):a.arc(0,0,r,T,R,o)}if(a.closePath(),n)return a=null,n+""||null}return i.centroid=function(){var n=(+l.apply(this,arguments)+ +h.apply(this,arguments))/2,m=(+v.apply(this,arguments)+ +A.apply(this,arguments))/2-an/2;return[H(m)*n,q(m)*n]},i.innerRadius=function(n){return arguments.length?(l=typeof n=="function"?n:B(+n),i):l},i.outerRadius=function(n){return arguments.length?(h=typeof n=="function"?n:B(+n),i):h},i.cornerRadius=function(n){return arguments.length?(I=typeof n=="function"?n:B(+n),i):I},i.padRadius=function(n){return arguments.length?(D=n==null?null:typeof n=="function"?n:B(+n),i):D},i.startAngle=function(n){return arguments.length?(v=typeof n=="function"?n:B(+n),i):v},i.endAngle=function(n){return arguments.length?(A=typeof n=="function"?n:B(+n),i):A},i.padAngle=function(n){return arguments.length?(C=typeof n=="function"?n:B(+n),i):C},i.context=function(n){return arguments.length?(a=n??null,i):a},i}export{vn as a};
|
||||
import{w as ln,c as B}from"./path-53f90ab3.js";import{an,ao as H,ap as q,aq as rn,ar as y,am as on,as as L,at as _,au as un,av as t,aw as sn,ax as tn,ay as fn}from"./mermaid.core-ae2b6479.js";function cn(l){return l.innerRadius}function yn(l){return l.outerRadius}function gn(l){return l.startAngle}function mn(l){return l.endAngle}function pn(l){return l&&l.padAngle}function xn(l,h,I,D,v,A,C,a){var O=I-l,i=D-h,n=C-v,m=a-A,r=m*O-n*i;if(!(r*r<y))return r=(n*(h-A)-m*(l-v))/r,[l+r*O,h+r*i]}function W(l,h,I,D,v,A,C){var a=l-I,O=h-D,i=(C?A:-A)/L(a*a+O*O),n=i*O,m=-i*a,r=l+n,s=h+m,f=I+n,c=D+m,F=(r+f)/2,o=(s+c)/2,p=f-r,g=c-s,R=p*p+g*g,T=v-A,w=r*c-f*s,S=(g<0?-1:1)*L(fn(0,T*T*R-w*w)),j=(w*g-p*S)/R,z=(-w*p-g*S)/R,P=(w*g+p*S)/R,x=(-w*p+g*S)/R,d=j-F,e=z-o,u=P-F,G=x-o;return d*d+e*e>u*u+G*G&&(j=P,z=x),{cx:j,cy:z,x01:-n,y01:-m,x11:j*(v/T-1),y11:z*(v/T-1)}}function vn(){var l=cn,h=yn,I=B(0),D=null,v=gn,A=mn,C=pn,a=null,O=ln(i);function i(){var n,m,r=+l.apply(this,arguments),s=+h.apply(this,arguments),f=v.apply(this,arguments)-rn,c=A.apply(this,arguments)-rn,F=un(c-f),o=c>f;if(a||(a=n=O()),s<r&&(m=s,s=r,r=m),!(s>y))a.moveTo(0,0);else if(F>on-y)a.moveTo(s*H(f),s*q(f)),a.arc(0,0,s,f,c,!o),r>y&&(a.moveTo(r*H(c),r*q(c)),a.arc(0,0,r,c,f,o));else{var p=f,g=c,R=f,T=c,w=F,S=F,j=C.apply(this,arguments)/2,z=j>y&&(D?+D.apply(this,arguments):L(r*r+s*s)),P=_(un(s-r)/2,+I.apply(this,arguments)),x=P,d=P,e,u;if(z>y){var G=sn(z/r*q(j)),M=sn(z/s*q(j));(w-=G*2)>y?(G*=o?1:-1,R+=G,T-=G):(w=0,R=T=(f+c)/2),(S-=M*2)>y?(M*=o?1:-1,p+=M,g-=M):(S=0,p=g=(f+c)/2)}var J=s*H(p),K=s*q(p),N=r*H(T),Q=r*q(T);if(P>y){var U=s*H(g),V=s*q(g),X=r*H(R),Y=r*q(R),E;if(F<an)if(E=xn(J,K,X,Y,U,V,N,Q)){var Z=J-E[0],$=K-E[1],k=U-E[0],b=V-E[1],nn=1/q(tn((Z*k+$*b)/(L(Z*Z+$*$)*L(k*k+b*b)))/2),en=L(E[0]*E[0]+E[1]*E[1]);x=_(P,(r-en)/(nn-1)),d=_(P,(s-en)/(nn+1))}else x=d=0}S>y?d>y?(e=W(X,Y,J,K,s,d,o),u=W(U,V,N,Q,s,d,o),a.moveTo(e.cx+e.x01,e.cy+e.y01),d<P?a.arc(e.cx,e.cy,d,t(e.y01,e.x01),t(u.y01,u.x01),!o):(a.arc(e.cx,e.cy,d,t(e.y01,e.x01),t(e.y11,e.x11),!o),a.arc(0,0,s,t(e.cy+e.y11,e.cx+e.x11),t(u.cy+u.y11,u.cx+u.x11),!o),a.arc(u.cx,u.cy,d,t(u.y11,u.x11),t(u.y01,u.x01),!o))):(a.moveTo(J,K),a.arc(0,0,s,p,g,!o)):a.moveTo(J,K),!(r>y)||!(w>y)?a.lineTo(N,Q):x>y?(e=W(N,Q,U,V,r,-x,o),u=W(J,K,X,Y,r,-x,o),a.lineTo(e.cx+e.x01,e.cy+e.y01),x<P?a.arc(e.cx,e.cy,x,t(e.y01,e.x01),t(u.y01,u.x01),!o):(a.arc(e.cx,e.cy,x,t(e.y01,e.x01),t(e.y11,e.x11),!o),a.arc(0,0,r,t(e.cy+e.y11,e.cx+e.x11),t(u.cy+u.y11,u.cx+u.x11),o),a.arc(u.cx,u.cy,x,t(u.y11,u.x11),t(u.y01,u.x01),!o))):a.arc(0,0,r,T,R,o)}if(a.closePath(),n)return a=null,n+""||null}return i.centroid=function(){var n=(+l.apply(this,arguments)+ +h.apply(this,arguments))/2,m=(+v.apply(this,arguments)+ +A.apply(this,arguments))/2-an/2;return[H(m)*n,q(m)*n]},i.innerRadius=function(n){return arguments.length?(l=typeof n=="function"?n:B(+n),i):l},i.outerRadius=function(n){return arguments.length?(h=typeof n=="function"?n:B(+n),i):h},i.cornerRadius=function(n){return arguments.length?(I=typeof n=="function"?n:B(+n),i):I},i.padRadius=function(n){return arguments.length?(D=n==null?null:typeof n=="function"?n:B(+n),i):D},i.startAngle=function(n){return arguments.length?(v=typeof n=="function"?n:B(+n),i):v},i.endAngle=function(n){return arguments.length?(A=typeof n=="function"?n:B(+n),i):A},i.padAngle=function(n){return arguments.length?(C=typeof n=="function"?n:B(+n),i):C},i.context=function(n){return arguments.length?(a=n??null,i):a},i}export{vn as a};
|
||||
@@ -1 +1 @@
|
||||
const t=JSON.parse('{"key":"v-af8895c8","path":"/zh/advanced/artifact-rating-rules.html","title":"圣遗物评分机制","lang":"zh-CN","frontmatter":{"category":["FAQ"],"icon":"read","order":5,"redirectFrom":"/advanced/artifact-rating-rules.html","description":"因角色设定差异,圣遗物评分机制也必须随角色所需属性而确定。 如果你有兴趣探索我们的评分机制, 可以审阅胡桃工具箱代码 (https://github.com/DGP-Studio/Snap.Hutao/tree/main/src/Snap.Hutao/Snap.Hutao/Service/AvatarInfo/Factory) 来了解评分计算方法。 如...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/advanced/artifact-rating-rules.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/advanced/artifact-rating-rules.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"圣遗物评分机制"}],["meta",{"property":"og:description","content":"因角色设定差异,圣遗物评分机制也必须随角色所需属性而确定。 如果你有兴趣探索我们的评分机制, 可以审阅胡桃工具箱代码 (https://github.com/DGP-Studio/Snap.Hutao/tree/main/src/Snap.Hutao/Snap.Hutao/Service/AvatarInfo/Factory) 来了解评分计算方法。 如..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"圣遗物评分机制\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":0.41,"words":124},"filePathRelative":"zh/advanced/artifact-rating-rules.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
const t=JSON.parse('{"key":"v-af8895c8","path":"/zh/advanced/artifact-rating-rules.html","title":"圣遗物评分机制","lang":"zh-CN","frontmatter":{"category":["FAQ"],"icon":"read","order":5,"redirectFrom":"/advanced/artifact-rating-rules.html","description":"因角色设定差异,圣遗物评分机制也必须随角色所需属性而确定。 如果你有兴趣探索我们的评分机制, 可以审阅胡桃工具箱代码 (https://github.com/DGP-Studio/Snap.Hutao/tree/main/src/Snap.Hutao/Snap.Hutao/Service/AvatarInfo/Factory) 来了解评分计算方法。 如...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/advanced/artifact-rating-rules.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/advanced/artifact-rating-rules.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"圣遗物评分机制"}],["meta",{"property":"og:description","content":"因角色设定差异,圣遗物评分机制也必须随角色所需属性而确定。 如果你有兴趣探索我们的评分机制, 可以审阅胡桃工具箱代码 (https://github.com/DGP-Studio/Snap.Hutao/tree/main/src/Snap.Hutao/Snap.Hutao/Service/AvatarInfo/Factory) 来了解评分计算方法。 如..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"圣遗物评分机制\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":0.41,"words":124},"filePathRelative":"zh/advanced/artifact-rating-rules.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
@@ -1 +1 @@
|
||||
const t=JSON.parse('{"key":"v-2263d117","path":"/en/advanced/artifact-rating-rules.html","title":"圣遗物评分机制","lang":"en-US","frontmatter":{"category":["FAQ"],"icon":"read","order":5,"description":"因角色设定差异,圣遗物评分机制也必须随角色所需属性而确定。 如果你有兴趣探索我们的评分机制, 可以审阅胡桃工具箱代码 (https://github.com/DGP-Studio/Snap.Hutao/tree/main/src/Snap.Hutao/Snap.Hutao/Service/AvatarInfo/Factory) 来了解评分计算方法。 如...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/advanced/artifact-rating-rules.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/advanced/artifact-rating-rules.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"圣遗物评分机制"}],["meta",{"property":"og:description","content":"因角色设定差异,圣遗物评分机制也必须随角色所需属性而确定。 如果你有兴趣探索我们的评分机制, 可以审阅胡桃工具箱代码 (https://github.com/DGP-Studio/Snap.Hutao/tree/main/src/Snap.Hutao/Snap.Hutao/Service/AvatarInfo/Factory) 来了解评分计算方法。 如..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:37.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:37.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"圣遗物评分机制\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:37.000Z\\",\\"author\\":[]}"]]},"headers":[],"git":{"createdTime":1679108737000,"updatedTime":1679108737000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":0.4,"words":120},"filePathRelative":"en/advanced/artifact-rating-rules.md","localizedDate":"March 18, 2023","autoDesc":true}');export{t as data};
|
||||
const t=JSON.parse('{"key":"v-2263d117","path":"/en/advanced/artifact-rating-rules.html","title":"圣遗物评分机制","lang":"en-US","frontmatter":{"category":["FAQ"],"icon":"read","order":5,"description":"因角色设定差异,圣遗物评分机制也必须随角色所需属性而确定。 如果你有兴趣探索我们的评分机制, 可以审阅胡桃工具箱代码 (https://github.com/DGP-Studio/Snap.Hutao/tree/main/src/Snap.Hutao/Snap.Hutao/Service/AvatarInfo/Factory) 来了解评分计算方法。 如...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/advanced/artifact-rating-rules.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/advanced/artifact-rating-rules.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"圣遗物评分机制"}],["meta",{"property":"og:description","content":"因角色设定差异,圣遗物评分机制也必须随角色所需属性而确定。 如果你有兴趣探索我们的评分机制, 可以审阅胡桃工具箱代码 (https://github.com/DGP-Studio/Snap.Hutao/tree/main/src/Snap.Hutao/Snap.Hutao/Service/AvatarInfo/Factory) 来了解评分计算方法。 如..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:37.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:37.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"圣遗物评分机制\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:37.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[],"git":{"createdTime":1679108737000,"updatedTime":1679108737000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":0.4,"words":120},"filePathRelative":"en/advanced/artifact-rating-rules.md","localizedDate":"March 18, 2023","autoDesc":true}');export{t as data};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-c87f8b6e","path":"/zh/statements/bug-report.html","title":"提交BUG报告","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["公告"],"icon":"debug","order":2,"redirectFrom":"/statements/bug-report.html","description":"opened-issue closed-issue 推荐方法 在你使用 Snap Hutao 时如果发现了可复现或不可自行修复的问题,可以通过提交问题反馈来告知开发者。; 在提交问题时,您应当尽可能地详细描述问题。如果有错误的截图,也应该提供。这有利于问题排查并加速问题修复。; 一个可以参考的非常正面的例子是 DGP-Studio/Snap.Hutao...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/statements/bug-report.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/statements/bug-report.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"提交BUG报告"}],["meta",{"property":"og:description","content":"opened-issue closed-issue 推荐方法 在你使用 Snap Hutao 时如果发现了可复现或不可自行修复的问题,可以通过提交问题反馈来告知开发者。; 在提交问题时,您应当尽可能地详细描述问题。如果有错误的截图,也应该提供。这有利于问题排查并加速问题修复。; 一个可以参考的非常正面的例子是 DGP-Studio/Snap.Hutao..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"提交BUG报告\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"推荐方法","slug":"推荐方法","link":"#推荐方法","children":[{"level":3,"title":"客户端问题","slug":"客户端问题","link":"#客户端问题","children":[]},{"level":3,"title":"请求增加或更新文档","slug":"请求增加或更新文档","link":"#请求增加或更新文档","children":[]}]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":1.51,"words":452},"filePathRelative":"zh/statements/bug-report.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
const t=JSON.parse('{"key":"v-c87f8b6e","path":"/zh/statements/bug-report.html","title":"提交BUG报告","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["公告"],"icon":"debug","order":2,"redirectFrom":"/statements/bug-report.html","description":"opened-issue closed-issue 推荐方法 在你使用 Snap Hutao 时如果发现了可复现或不可自行修复的问题,可以通过提交问题反馈来告知开发者。; 在提交问题时,您应当尽可能地详细描述问题。如果有错误的截图,也应该提供。这有利于问题排查并加速问题修复。; 一个可以参考的非常正面的例子是 DGP-Studio/Snap.Hutao...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/statements/bug-report.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/statements/bug-report.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"提交BUG报告"}],["meta",{"property":"og:description","content":"opened-issue closed-issue 推荐方法 在你使用 Snap Hutao 时如果发现了可复现或不可自行修复的问题,可以通过提交问题反馈来告知开发者。; 在提交问题时,您应当尽可能地详细描述问题。如果有错误的截图,也应该提供。这有利于问题排查并加速问题修复。; 一个可以参考的非常正面的例子是 DGP-Studio/Snap.Hutao..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-04-01T00:47:18.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-04-01T00:47:18.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"提交BUG报告\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-04-01T00:47:18.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"推荐方法","slug":"推荐方法","link":"#推荐方法","children":[{"level":3,"title":"客户端问题","slug":"客户端问题","link":"#客户端问题","children":[]},{"level":3,"title":"请求增加或更新文档","slug":"请求增加或更新文档","link":"#请求增加或更新文档","children":[]}]}],"git":{"createdTime":1679366029000,"updatedTime":1680310038000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":1.61,"words":483},"filePathRelative":"zh/statements/bug-report.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-45ceb024","path":"/en/statements/bug-report.html","title":"Submit Bug Report","lang":"en-US","frontmatter":{"headerDepth":0,"category":["Announcement"],"icon":"debug","order":2,"description":"opened-issue Recommended Method You can submit bug reports when you find reproducible issue that cannbot be fixed by youself; When submitting the issue, you should describe the ...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/statements/bug-report.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/statements/bug-report.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"Submit Bug Report"}],["meta",{"property":"og:description","content":"opened-issue Recommended Method You can submit bug reports when you find reproducible issue that cannbot be fixed by youself; When submitting the issue, you should describe the ..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T05:59:58.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T05:59:58.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"Submit Bug Report\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T05:59:58.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"Recommended Method","slug":"recommended-method","link":"#recommended-method","children":[{"level":3,"title":"Client Issue","slug":"client-issue","link":"#client-issue","children":[]},{"level":3,"title":"Request New or Update Document","slug":"request-new-or-update-document","link":"#request-new-or-update-document","children":[]}]}],"git":{"createdTime":1664419063000,"updatedTime":1679119198000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":6}]},"readingTime":{"minutes":0.59,"words":176},"filePathRelative":"en/statements/bug-report.md","localizedDate":"September 29, 2022","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-45ceb024","path":"/en/statements/bug-report.html","title":"Submit Bug Report","lang":"en-US","frontmatter":{"headerDepth":0,"category":["Announcement"],"icon":"debug","order":2,"description":"opened-issue Recommended Method You can submit bug reports when you find reproducible issue that cannbot be fixed by youself; When submitting the issue, you should describe the ...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/statements/bug-report.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/statements/bug-report.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"Submit Bug Report"}],["meta",{"property":"og:description","content":"opened-issue Recommended Method You can submit bug reports when you find reproducible issue that cannbot be fixed by youself; When submitting the issue, you should describe the ..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T05:59:58.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T05:59:58.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"Submit Bug Report\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T05:59:58.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"Recommended Method","slug":"recommended-method","link":"#recommended-method","children":[{"level":3,"title":"Client Issue","slug":"client-issue","link":"#client-issue","children":[]},{"level":3,"title":"Request New or Update Document","slug":"request-new-or-update-document","link":"#request-new-or-update-document","children":[]}]}],"git":{"createdTime":1664419063000,"updatedTime":1679119198000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":6}]},"readingTime":{"minutes":0.59,"words":176},"filePathRelative":"en/statements/bug-report.md","localizedDate":"September 29, 2022","autoDesc":true}');export{e as data};
|
||||
@@ -1 +0,0 @@
|
||||
import{_ as i,X as u,Y as r,Z as e,$ as t,a0 as o,a2 as c,a1 as d,C as n}from"./framework-caa722f8.js";const h={},_=d('<h1 id="提交bug报告" tabindex="-1"><a class="header-anchor" href="#提交bug报告" aria-hidden="true">#</a> 提交BUG报告</h1><p><img src="https://img.shields.io/github/issues/DGP-Studio/Snap.Hutao?style=for-the-badge" alt="opened-issue" loading="lazy"><img src="https://img.shields.io/github/issues-closed/DGP-Studio/Snap.Hutao?style=for-the-badge&color=blue" alt="closed-issue" loading="lazy"></p><h2 id="推荐方法" tabindex="-1"><a class="header-anchor" href="#推荐方法" aria-hidden="true">#</a> 推荐方法</h2>',3),p=e("li",null,"在你使用 Snap Hutao 时如果发现了可复现或不可自行修复的问题,可以通过提交问题反馈来告知开发者。",-1),g={href:"https://github.com/DGP-Studio/Snap.Hutao/issues/100",target:"_blank",rel:"noopener noreferrer"},m=e("li",null,[t("如果你有能力在代码层面修复该问题,也欢迎您直接在对应的项目中发起 PR。 "),e("img",{src:"https://img.alicdn.com/imgextra/i3/1797064093/O1CN01jXBMbe1g6du15k9kx_!!1797064093.jpg",alt:"suggestion",loading:"lazy"}),e("strong",null,"如果你是诚心希望解决问题,则应该在 Issue 中包含尽可能多的信息,比如说:你做了什么;看到了什么结果;程序有什么提示; 你查阅了哪篇文档;尝试了什么解决方案,结果是什么;你的设备ID是什么…… 当你愿意付出更多的时间在提供信息上,更大的可能获得一个准确的解决方案。 一两句话就结束的问题报告大多数不是有效的问题,只会被无视。")],-1),b=e("h3",{id:"客户端问题",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#客户端问题","aria-hidden":"true"},"#"),t(" 客户端问题")],-1),f=e("p",null,"在提交问题前,请务必检查文档内是否已包含了你的问题",-1),S=e("li",null,"首先需要确认您使用的版本是否为最新版本",-1),x={href:"https://github.com/DGP-Studio/Snap.Hutao/issues/new/choose",target:"_blank",rel:"noopener noreferrer"},k=e("p",null,"通过 兔小巢 提交问题",-1),D={href:"https://support.qq.com/products/451231",target:"_blank",rel:"noopener noreferrer"},G=e("h3",{id:"请求增加或更新文档",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#请求增加或更新文档","aria-hidden":"true"},"#"),t(" 请求增加或更新文档")],-1),H={href:"https://github.com/DGP-Studio/Snap.Hutao.Docs/issues/new/choose",target:"_blank",rel:"noopener noreferrer"};function P(B,y){const l=n("ExternalLinkIcon"),s=n("RouterLink"),a=n("Badge");return u(),r("div",null,[_,e("ul",null,[p,e("li",null,[t("在提交问题时,您应当尽可能地详细描述问题。如果有错误的截图,也应该提供。这有利于问题排查并加速问题修复。 "),e("ul",null,[e("li",null,[t("一个可以参考的非常正面的例子是 "),e("a",g,[t("DGP-Studio/Snap.Hutao/issues/100"),o(l)])])])]),m]),b,e("ul",null,[e("li",null,[f,e("ul",null,[S,e("li",null,[t("您可以通过菜单栏中的“常见问题”分类找到这些文档 "),e("ul",null,[e("li",null,[o(s,{to:"/zh/advanced/FAQ.html"},{default:c(()=>[t("快速解答")]),_:1})])])])])]),e("li",null,[e("p",null,[t("通过 GitHub 提交问题 "),o(a,{text:"推荐",type:"tip"})]),e("ul",null,[e("li",null,[e("a",x,[t("github.com/DGP-Studio/Snap.Hutao/issues/new/choose"),o(l)])])])]),e("li",null,[k,e("ul",null,[e("li",null,[e("a",D,[t("support.qq.com/products/451231"),o(l)])])])])]),G,e("ul",null,[e("li",null,[t("通过 GitHub 提交问题:"),e("a",H,[t("DGP-Studio/Snap.Hutao.Docs"),o(l)])])])])}const q=i(h,[["render",P],["__file","bug-report.html.vue"]]);export{q as default};
|
||||
1
assets/bug-report.html-f9c3099f.js
Normal file
1
assets/bug-report.html-f9c3099f.js
Normal file
@@ -0,0 +1 @@
|
||||
import{_ as i,X as r,Y as u,Z as e,$ as t,a0 as o,a2 as c,a1 as d,C as n}from"./framework-caa722f8.js";const h={},_=d('<h1 id="提交bug报告" tabindex="-1"><a class="header-anchor" href="#提交bug报告" aria-hidden="true">#</a> 提交BUG报告</h1><p><img src="https://img.shields.io/github/issues/DGP-Studio/Snap.Hutao?style=for-the-badge" alt="opened-issue" loading="lazy"><img src="https://img.shields.io/github/issues-closed/DGP-Studio/Snap.Hutao?style=for-the-badge&color=blue" alt="closed-issue" loading="lazy"></p><h2 id="推荐方法" tabindex="-1"><a class="header-anchor" href="#推荐方法" aria-hidden="true">#</a> 推荐方法</h2>',3),p=e("li",null,"在你使用 Snap Hutao 时如果发现了可复现或不可自行修复的问题,可以通过提交问题反馈来告知开发者。",-1),g={href:"https://github.com/DGP-Studio/Snap.Hutao/issues/100",target:"_blank",rel:"noopener noreferrer"},b={href:"https://www.bilibili.com/video/BV18T411z7R4",target:"_blank",rel:"noopener noreferrer"},m=e("li",null,[t("如果你有能力在代码层面修复该问题,也欢迎您直接在对应的项目中发起 PR。 "),e("img",{src:"https://img.alicdn.com/imgextra/i3/1797064093/O1CN01jXBMbe1g6du15k9kx_!!1797064093.jpg",alt:"suggestion",loading:"lazy"}),e("strong",null,"如果你是诚心希望解决问题,则应该在 Issue 中包含尽可能多的信息,比如说:你做了什么;看到了什么结果;程序有什么提示; 你查阅了哪篇文档;尝试了什么解决方案,结果是什么;你的设备ID是什么…… 当你愿意付出更多的时间在提供信息上,更大的可能获得一个准确的解决方案。 一两句话就结束的问题报告大多数不是有效的问题,只会被无视。")],-1),f=e("h3",{id:"客户端问题",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#客户端问题","aria-hidden":"true"},"#"),t(" 客户端问题")],-1),S=e("p",null,"在提交问题前,请务必检查文档内是否已包含了你的问题",-1),x=e("li",null,"首先需要确认您使用的版本是否为最新版本",-1),k={href:"https://github.com/DGP-Studio/Snap.Hutao/issues/new/choose",target:"_blank",rel:"noopener noreferrer"},D=e("p",null,"通过 兔小巢 提交问题",-1),G={href:"https://support.qq.com/products/451231",target:"_blank",rel:"noopener noreferrer"},H=e("h3",{id:"请求增加或更新文档",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#请求增加或更新文档","aria-hidden":"true"},"#"),t(" 请求增加或更新文档")],-1),P={href:"https://github.com/DGP-Studio/Snap.Hutao.Docs/issues/new/choose",target:"_blank",rel:"noopener noreferrer"};function B(w,y){const l=n("ExternalLinkIcon"),s=n("RouterLink"),a=n("Badge");return r(),u("div",null,[_,e("ul",null,[p,e("li",null,[t("在提交问题时,您应当尽可能地详细描述问题。如果有错误的截图,也应该提供。这有利于问题排查并加速问题修复。 "),e("ul",null,[e("li",null,[t("一个可以参考的非常正面的例子是 "),e("a",g,[t("DGP-Studio/Snap.Hutao/issues/100"),o(l)])]),e("li",null,[t("你也可以通过"),e("a",b,[t("这个视频"),o(l)]),t("来学习如何发起并管理你在开源项目中的 issue")])])]),m]),f,e("ul",null,[e("li",null,[S,e("ul",null,[x,e("li",null,[t("您可以通过菜单栏中的“常见问题”分类找到这些文档 "),e("ul",null,[e("li",null,[o(s,{to:"/zh/advanced/FAQ.html"},{default:c(()=>[t("快速解答")]),_:1})])])])])]),e("li",null,[e("p",null,[t("通过 GitHub 提交问题 "),o(a,{text:"推荐",type:"tip"})]),e("ul",null,[e("li",null,[e("a",k,[t("github.com/DGP-Studio/Snap.Hutao/issues/new/choose"),o(l)])])])]),e("li",null,[D,e("ul",null,[e("li",null,[e("a",G,[t("support.qq.com/products/451231"),o(l)])])])])]),H,e("ul",null,[e("li",null,[t("通过 GitHub 提交问题:"),e("a",P,[t("DGP-Studio/Snap.Hutao.Docs"),o(l)])])])])}const z=i(h,[["render",B],["__file","bug-report.html.vue"]]);export{z as default};
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-f3692af4","path":"/en/features/character-data.html","title":"属性统计","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":5,"description":"该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 属性统计,即主程序侧栏中的我的角色功能,可读取当前账号所拥有角色的具体数据,包括等级、命之座、武器、天赋、圣遗物等;并自动计算圣遗物评分和双爆评分 属性统计示例图 同步角色信息 从 Enka API 同步 同步特征 Enka AP...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/character-data.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/character-data.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"属性统计"}],["meta",{"property":"og:description","content":"该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 属性统计,即主程序侧栏中的我的角色功能,可读取当前账号所拥有角色的具体数据,包括等级、命之座、武器、天赋、圣遗物等;并自动计算圣遗物评分和双爆评分 属性统计示例图 同步角色信息 从 Enka API 同步 同步特征 Enka AP..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:23.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:23.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"属性统计\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:23.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"同步角色信息","slug":"同步角色信息","link":"#同步角色信息","children":[{"level":3,"title":"从 Enka API 同步","slug":"从-enka-api-同步","link":"#从-enka-api-同步","children":[]},{"level":3,"title":"从 米游社我的角色 同步","slug":"从-米游社我的角色-同步","link":"#从-米游社我的角色-同步","children":[]},{"level":3,"title":"从 米游社养成计算 同步","slug":"从-米游社养成计算-同步","link":"#从-米游社养成计算-同步","children":[]}]},{"level":2,"title":"将当前选定角色加入养成计算","slug":"将当前选定角色加入养成计算","link":"#将当前选定角色加入养成计算","children":[]},{"level":2,"title":"导出图片","slug":"导出图片","link":"#导出图片","children":[]}],"git":{"createdTime":1673484663000,"updatedTime":1679108723000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":2.8,"words":839},"filePathRelative":"en/features/character-data.md","localizedDate":"January 12, 2023","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-f3692af4","path":"/en/features/character-data.html","title":"属性统计","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":5,"description":"该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 属性统计,即主程序侧栏中的我的角色功能,可读取当前账号所拥有角色的具体数据,包括等级、命之座、武器、天赋、圣遗物等;并自动计算圣遗物评分和双爆评分 属性统计示例图 同步角色信息 从 Enka API 同步 同步特征 Enka AP...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/character-data.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/character-data.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"属性统计"}],["meta",{"property":"og:description","content":"该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 属性统计,即主程序侧栏中的我的角色功能,可读取当前账号所拥有角色的具体数据,包括等级、命之座、武器、天赋、圣遗物等;并自动计算圣遗物评分和双爆评分 属性统计示例图 同步角色信息 从 Enka API 同步 同步特征 Enka AP..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:23.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:23.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"属性统计\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:23.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"同步角色信息","slug":"同步角色信息","link":"#同步角色信息","children":[{"level":3,"title":"从 Enka API 同步","slug":"从-enka-api-同步","link":"#从-enka-api-同步","children":[]},{"level":3,"title":"从 米游社我的角色 同步","slug":"从-米游社我的角色-同步","link":"#从-米游社我的角色-同步","children":[]},{"level":3,"title":"从 米游社养成计算 同步","slug":"从-米游社养成计算-同步","link":"#从-米游社养成计算-同步","children":[]}]},{"level":2,"title":"将当前选定角色加入养成计算","slug":"将当前选定角色加入养成计算","link":"#将当前选定角色加入养成计算","children":[]},{"level":2,"title":"导出图片","slug":"导出图片","link":"#导出图片","children":[]}],"git":{"createdTime":1673484663000,"updatedTime":1679108723000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":2.8,"words":839},"filePathRelative":"en/features/character-data.md","localizedDate":"January 12, 2023","autoDesc":true}');export{e as data};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-3957d221","path":"/zh/features/character-data.html","title":"属性统计","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":5,"redirectFrom":"/features/character-data.html","description":"该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 属性统计,即主程序侧栏中的我的角色功能,可读取当前账号所拥有角色的具体数据,包括等级、命之座、武器、天赋、圣遗物等;并自动计算圣遗物评分和双爆评分 !属性统计示例图 (https://img.alicdn.com/imgextra...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/character-data.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/character-data.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"属性统计"}],["meta",{"property":"og:description","content":"该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 属性统计,即主程序侧栏中的我的角色功能,可读取当前账号所拥有角色的具体数据,包括等级、命之座、武器、天赋、圣遗物等;并自动计算圣遗物评分和双爆评分 !属性统计示例图 (https://img.alicdn.com/imgextra..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"属性统计\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"同步角色信息","slug":"同步角色信息","link":"#同步角色信息","children":[{"level":3,"title":"从 Enka API 同步","slug":"从-enka-api-同步","link":"#从-enka-api-同步","children":[]},{"level":3,"title":"从 米游社我的角色 同步","slug":"从-米游社我的角色-同步","link":"#从-米游社我的角色-同步","children":[]},{"level":3,"title":"从 米游社养成计算 同步","slug":"从-米游社养成计算-同步","link":"#从-米游社养成计算-同步","children":[]}]},{"level":2,"title":"将当前选定角色加入养成计算","slug":"将当前选定角色加入养成计算","link":"#将当前选定角色加入养成计算","children":[]},{"level":2,"title":"导出图片","slug":"导出图片","link":"#导出图片","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":2.81,"words":842},"filePathRelative":"zh/features/character-data.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
const t=JSON.parse('{"key":"v-3957d221","path":"/zh/features/character-data.html","title":"属性统计","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":5,"redirectFrom":"/features/character-data.html","description":"该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 属性统计,即主程序侧栏中的我的角色功能,可读取当前账号所拥有角色的具体数据,包括等级、命之座、武器、天赋、圣遗物等;并自动计算圣遗物评分和双爆评分 !属性统计示例图 (https://img.alicdn.com/imgextra...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/character-data.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/character-data.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"属性统计"}],["meta",{"property":"og:description","content":"该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 属性统计,即主程序侧栏中的我的角色功能,可读取当前账号所拥有角色的具体数据,包括等级、命之座、武器、天赋、圣遗物等;并自动计算圣遗物评分和双爆评分 !属性统计示例图 (https://img.alicdn.com/imgextra..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"属性统计\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"同步角色信息","slug":"同步角色信息","link":"#同步角色信息","children":[{"level":3,"title":"从 Enka API 同步","slug":"从-enka-api-同步","link":"#从-enka-api-同步","children":[]},{"level":3,"title":"从 米游社我的角色 同步","slug":"从-米游社我的角色-同步","link":"#从-米游社我的角色-同步","children":[]},{"level":3,"title":"从 米游社养成计算 同步","slug":"从-米游社养成计算-同步","link":"#从-米游社养成计算-同步","children":[]}]},{"level":2,"title":"将当前选定角色加入养成计算","slug":"将当前选定角色加入养成计算","link":"#将当前选定角色加入养成计算","children":[]},{"level":2,"title":"导出图片","slug":"导出图片","link":"#导出图片","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":2.81,"words":842},"filePathRelative":"zh/features/character-data.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-a9f7b44a","path":"/zh/features/character-wiki.html","title":"角色资料","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":8,"redirectFrom":"/features/character-wiki.html","description":"characters-wiki 角色资料是胡桃工具箱中内置的用于查询各个角色的基础信息、天赋数值、命之座、培养材料等数据的 wiki 已包含的数据 角色列表; 使用列表左上角的按钮,可切换列表显示的方式:即\\"缩略图与名称\\"或\\"仅缩略图\\"; 单击列表中的缩略图或名称,即可跳转到相应的介绍页面; 数据内容; 角色基本信息; 介绍; 各等级下的数值; 属性;...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/character-wiki.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/character-wiki.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"角色资料"}],["meta",{"property":"og:description","content":"characters-wiki 角色资料是胡桃工具箱中内置的用于查询各个角色的基础信息、天赋数值、命之座、培养材料等数据的 wiki 已包含的数据 角色列表; 使用列表左上角的按钮,可切换列表显示的方式:即\\"缩略图与名称\\"或\\"仅缩略图\\"; 单击列表中的缩略图或名称,即可跳转到相应的介绍页面; 数据内容; 角色基本信息; 介绍; 各等级下的数值; 属性;..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"角色资料\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"已包含的数据","slug":"已包含的数据","link":"#已包含的数据","children":[]},{"level":2,"title":"添加至养成计划","slug":"添加至养成计划","link":"#添加至养成计划","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":1.12,"words":336},"filePathRelative":"zh/features/character-wiki.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-a9f7b44a","path":"/zh/features/character-wiki.html","title":"角色资料","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":8,"redirectFrom":"/features/character-wiki.html","description":"characters-wiki 角色资料是胡桃工具箱中内置的用于查询各个角色的基础信息、天赋数值、命之座、培养材料等数据的 wiki 已包含的数据 角色列表; 使用列表左上角的按钮,可切换列表显示的方式:即\\"缩略图与名称\\"或\\"仅缩略图\\"; 单击列表中的缩略图或名称,即可跳转到相应的介绍页面; 数据内容; 角色基本信息; 介绍; 各等级下的数值; 属性;...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/character-wiki.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/character-wiki.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"角色资料"}],["meta",{"property":"og:description","content":"characters-wiki 角色资料是胡桃工具箱中内置的用于查询各个角色的基础信息、天赋数值、命之座、培养材料等数据的 wiki 已包含的数据 角色列表; 使用列表左上角的按钮,可切换列表显示的方式:即\\"缩略图与名称\\"或\\"仅缩略图\\"; 单击列表中的缩略图或名称,即可跳转到相应的介绍页面; 数据内容; 角色基本信息; 介绍; 各等级下的数值; 属性;..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"角色资料\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"已包含的数据","slug":"已包含的数据","link":"#已包含的数据","children":[]},{"level":2,"title":"添加至养成计划","slug":"添加至养成计划","link":"#添加至养成计划","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":1.12,"words":336},"filePathRelative":"zh/features/character-wiki.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-10108380","path":"/en/features/character-wiki.html","title":"角色资料","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":8,"description":"characters-wiki 角色资料是胡桃工具箱中内置的用于查询各个角色的基础信息、天赋数值、命之座、培养材料等数据的 wiki 已包含的数据 角色列表; 使用列表左上角的按钮,可切换列表显示的方式:即\\"缩略图与名称\\"或\\"仅缩略图\\"; 单击列表中的缩略图或名称,即可跳转到相应的介绍页面; 数据内容; 角色基本信息; 介绍; 各等级下的数值; 属性;...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/character-wiki.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/character-wiki.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"角色资料"}],["meta",{"property":"og:description","content":"characters-wiki 角色资料是胡桃工具箱中内置的用于查询各个角色的基础信息、天赋数值、命之座、培养材料等数据的 wiki 已包含的数据 角色列表; 使用列表左上角的按钮,可切换列表显示的方式:即\\"缩略图与名称\\"或\\"仅缩略图\\"; 单击列表中的缩略图或名称,即可跳转到相应的介绍页面; 数据内容; 角色基本信息; 介绍; 各等级下的数值; 属性;..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:24.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:24.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"角色资料\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:24.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"已包含的数据","slug":"已包含的数据","link":"#已包含的数据","children":[]},{"level":2,"title":"添加至养成计划","slug":"添加至养成计划","link":"#添加至养成计划","children":[]}],"git":{"createdTime":1673484663000,"updatedTime":1679108724000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":1.11,"words":333},"filePathRelative":"en/features/character-wiki.md","localizedDate":"January 12, 2023","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-10108380","path":"/en/features/character-wiki.html","title":"角色资料","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":8,"description":"characters-wiki 角色资料是胡桃工具箱中内置的用于查询各个角色的基础信息、天赋数值、命之座、培养材料等数据的 wiki 已包含的数据 角色列表; 使用列表左上角的按钮,可切换列表显示的方式:即\\"缩略图与名称\\"或\\"仅缩略图\\"; 单击列表中的缩略图或名称,即可跳转到相应的介绍页面; 数据内容; 角色基本信息; 介绍; 各等级下的数值; 属性;...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/character-wiki.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/character-wiki.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"角色资料"}],["meta",{"property":"og:description","content":"characters-wiki 角色资料是胡桃工具箱中内置的用于查询各个角色的基础信息、天赋数值、命之座、培养材料等数据的 wiki 已包含的数据 角色列表; 使用列表左上角的按钮,可切换列表显示的方式:即\\"缩略图与名称\\"或\\"仅缩略图\\"; 单击列表中的缩略图或名称,即可跳转到相应的介绍页面; 数据内容; 角色基本信息; 介绍; 各等级下的数值; 属性;..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:24.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:24.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"角色资料\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:24.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"已包含的数据","slug":"已包含的数据","link":"#已包含的数据","children":[]},{"level":2,"title":"添加至养成计划","slug":"添加至养成计划","link":"#添加至养成计划","children":[]}],"git":{"createdTime":1673484663000,"updatedTime":1679108724000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":1.11,"words":333},"filePathRelative":"en/features/character-wiki.md","localizedDate":"January 12, 2023","autoDesc":true}');export{e as data};
|
||||
@@ -1 +1 @@
|
||||
import{p as W,d as M,s as H}from"./styles-0dd3ba1e-71adb0fa.js";import{c as S,l as d,h as u,i as X}from"./mermaid.core-cd13285d.js";import{G as Y,l as Z}from"./layout-c96aa3fd.js";import{s as l}from"./svgDraw-6a237a99-6be4cb29.js";import"./app-7d010250.js";import"./framework-caa722f8.js";import"./isPlainObject-ea877985.js";import"./array-9f3ba611.js";import"./path-53f90ab3.js";let h={};const g=20,p=function(e){const s=Object.entries(h).find(k=>k[1].label===e);if(s)return s[0]},$=function(e){e.append("defs").append("marker").attr("id","extensionStart").attr("class","extension").attr("refX",0).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 1,7 L18,13 V 1 Z"),e.append("defs").append("marker").attr("id","extensionEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 1,1 V 13 L18,7 Z"),e.append("defs").append("marker").attr("id","compositionStart").attr("class","extension").attr("refX",0).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id","compositionEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id","aggregationStart").attr("class","extension").attr("refX",0).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id","aggregationEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id","dependencyStart").attr("class","extension").attr("refX",0).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 5,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id","dependencyEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L14,7 L9,1 Z")},D=function(e,s,k,a){const c=S().class;h={},d.info("Rendering diagram "+e);const L=S().securityLevel;let y;L==="sandbox"&&(y=u("#i"+s));const x=L==="sandbox"?u(y.nodes()[0].contentDocument.body):u("body"),n=x.select(`[id='${s}']`);$(n);const r=new Y({multigraph:!0});r.setGraph({isMultiGraph:!0}),r.setDefaultEdgeLabel(function(){return{}});const m=a.db.getClasses(),N=Object.keys(m);for(const t of N){const o=m[t],i=l.drawClass(n,o,c,a);h[i.id]=i,r.setNode(i.id,i),d.info("Org height: "+i.height)}a.db.getRelations().forEach(function(t){d.info("tjoho"+p(t.id1)+p(t.id2)+JSON.stringify(t)),r.setEdge(p(t.id1),p(t.id2),{relation:t},t.title||"DEFAULT")}),a.db.getNotes().forEach(function(t){d.debug(`Adding note: ${JSON.stringify(t)}`);const o=l.drawNote(n,t,c,a);h[o.id]=o,r.setNode(o.id,o),t.class&&t.class in m&&r.setEdge(t.id,p(t.class),{relation:{id1:t.id,id2:t.class,relation:{type1:"none",type2:"none",lineType:10}}},"DEFAULT")}),Z(r),r.nodes().forEach(function(t){t!==void 0&&r.node(t)!==void 0&&(d.debug("Node "+t+": "+JSON.stringify(r.node(t))),x.select("#"+(a.db.lookUpDomId(t)||t)).attr("transform","translate("+(r.node(t).x-r.node(t).width/2)+","+(r.node(t).y-r.node(t).height/2)+" )"))}),r.edges().forEach(function(t){t!==void 0&&r.edge(t)!==void 0&&(d.debug("Edge "+t.v+" -> "+t.w+": "+JSON.stringify(r.edge(t))),l.drawEdge(n,r.edge(t),r.edge(t).relation,c,a))});const f=n.node().getBBox(),E=f.width+g*2,b=f.height+g*2;X(n,b,E,c.useMaxWidth);const w=`${f.x-g} ${f.y-g} ${E} ${b}`;d.debug(`viewBox ${w}`),n.attr("viewBox",w)},B={draw:D},z={parser:W,db:M,renderer:B,styles:H,init:e=>{e.class||(e.class={}),e.class.arrowMarkerAbsolute=e.arrowMarkerAbsolute,M.clear()}};export{z as diagram};
|
||||
import{p as W,d as M,s as H}from"./styles-0dd3ba1e-1d10894d.js";import{c as S,l as d,h as u,i as X}from"./mermaid.core-ae2b6479.js";import{G as Y,l as Z}from"./layout-322a865b.js";import{s as l}from"./svgDraw-6a237a99-6623f26c.js";import"./app-ad64ba18.js";import"./framework-caa722f8.js";import"./isPlainObject-6c947fce.js";import"./array-9f3ba611.js";import"./path-53f90ab3.js";let h={};const g=20,p=function(e){const s=Object.entries(h).find(k=>k[1].label===e);if(s)return s[0]},$=function(e){e.append("defs").append("marker").attr("id","extensionStart").attr("class","extension").attr("refX",0).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 1,7 L18,13 V 1 Z"),e.append("defs").append("marker").attr("id","extensionEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 1,1 V 13 L18,7 Z"),e.append("defs").append("marker").attr("id","compositionStart").attr("class","extension").attr("refX",0).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id","compositionEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id","aggregationStart").attr("class","extension").attr("refX",0).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id","aggregationEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id","dependencyStart").attr("class","extension").attr("refX",0).attr("refY",7).attr("markerWidth",190).attr("markerHeight",240).attr("orient","auto").append("path").attr("d","M 5,7 L9,13 L1,7 L9,1 Z"),e.append("defs").append("marker").attr("id","dependencyEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 18,7 L9,13 L14,7 L9,1 Z")},D=function(e,s,k,a){const c=S().class;h={},d.info("Rendering diagram "+e);const L=S().securityLevel;let y;L==="sandbox"&&(y=u("#i"+s));const x=L==="sandbox"?u(y.nodes()[0].contentDocument.body):u("body"),n=x.select(`[id='${s}']`);$(n);const r=new Y({multigraph:!0});r.setGraph({isMultiGraph:!0}),r.setDefaultEdgeLabel(function(){return{}});const m=a.db.getClasses(),N=Object.keys(m);for(const t of N){const o=m[t],i=l.drawClass(n,o,c,a);h[i.id]=i,r.setNode(i.id,i),d.info("Org height: "+i.height)}a.db.getRelations().forEach(function(t){d.info("tjoho"+p(t.id1)+p(t.id2)+JSON.stringify(t)),r.setEdge(p(t.id1),p(t.id2),{relation:t},t.title||"DEFAULT")}),a.db.getNotes().forEach(function(t){d.debug(`Adding note: ${JSON.stringify(t)}`);const o=l.drawNote(n,t,c,a);h[o.id]=o,r.setNode(o.id,o),t.class&&t.class in m&&r.setEdge(t.id,p(t.class),{relation:{id1:t.id,id2:t.class,relation:{type1:"none",type2:"none",lineType:10}}},"DEFAULT")}),Z(r),r.nodes().forEach(function(t){t!==void 0&&r.node(t)!==void 0&&(d.debug("Node "+t+": "+JSON.stringify(r.node(t))),x.select("#"+(a.db.lookUpDomId(t)||t)).attr("transform","translate("+(r.node(t).x-r.node(t).width/2)+","+(r.node(t).y-r.node(t).height/2)+" )"))}),r.edges().forEach(function(t){t!==void 0&&r.edge(t)!==void 0&&(d.debug("Edge "+t.v+" -> "+t.w+": "+JSON.stringify(r.edge(t))),l.drawEdge(n,r.edge(t),r.edge(t).relation,c,a))});const f=n.node().getBBox(),E=f.width+g*2,b=f.height+g*2;X(n,b,E,c.useMaxWidth);const w=`${f.x-g} ${f.y-g} ${E} ${b}`;d.debug(`viewBox ${w}`),n.attr("viewBox",w)},B={draw:D},z={parser:W,db:M,renderer:B,styles:H,init:e=>{e.class||(e.class={}),e.class.arrowMarkerAbsolute=e.arrowMarkerAbsolute,M.clear()}};export{z as diagram};
|
||||
@@ -1,2 +1,2 @@
|
||||
import{p as _,d as T,s as M}from"./styles-0dd3ba1e-71adb0fa.js";import{l as p,c as a,h as w,y as R,t as B,r as C,o as D,p as G,k as E}from"./mermaid.core-cd13285d.js";import{G as I}from"./layout-c96aa3fd.js";import{r as $}from"./index-f9d09cc9-4ae8a0e0.js";import"./app-7d010250.js";import"./framework-caa722f8.js";import"./isPlainObject-ea877985.js";import"./array-9f3ba611.js";import"./path-53f90ab3.js";import"./edges-65da65dc-c0d21831.js";import"./svgDraw-6a237a99-6be4cb29.js";const A=s=>E.sanitizeText(s,a());let S={dividerMargin:10,padding:5,textHeight:10,curve:void 0};const z=function(s,o,f,n){const e=Object.keys(s);p.info("keys:",e),p.info(s),e.forEach(function(i){var l,r;const t=s[i];let y="";t.cssClasses.length>0&&(y=y+" "+t.cssClasses.join(" "));const c={labelStyle:"",style:""},m=t.label??t.id,d=0,u="class_box",b={labelStyle:c.labelStyle,shape:u,labelText:A(m),classData:t,rx:d,ry:d,class:y,style:c.style,id:t.id,domId:t.domId,tooltip:n.db.getTooltip(t.id)||"",haveCallback:t.haveCallback,link:t.link,width:t.type==="group"?500:void 0,type:t.type,padding:((l=a().flowchart)==null?void 0:l.padding)??((r=a().class)==null?void 0:r.padding)};o.setNode(t.id,b),p.info("setNode",b)})},q=function(s,o,f,n){p.info(s),s.forEach(function(e,i){var l,r;const t=e,y="",c={labelStyle:"",style:""},m=t.text,d=0,u="note",b={labelStyle:c.labelStyle,shape:u,labelText:A(m),noteData:t,rx:d,ry:d,class:y,style:c.style,id:t.id,domId:t.id,tooltip:"",type:"note",padding:((l=a().flowchart)==null?void 0:l.padding)??((r=a().class)==null?void 0:r.padding)};if(o.setNode(t.id,b),p.info("setNode",b),!t.class||!(t.class in n))return;const v=f+i,g={id:`edgeNote${v}`,classes:"relation",pattern:"dotted",arrowhead:"none",startLabelRight:"",endLabelLeft:"",arrowTypeStart:"none",arrowTypeEnd:"none",style:"fill:none",labelStyle:"",curve:C(S.curve,D)};o.setEdge(t.id,t.class,g,v)})},F=function(s,o){const f=a().flowchart;let n=0;s.forEach(function(e){var i;n++;const l={classes:"relation",pattern:e.relation.lineType==1?"dashed":"solid",id:"id"+n,arrowhead:e.type==="arrow_open"?"none":"normal",startLabelRight:e.relationTitle1==="none"?"":e.relationTitle1,endLabelLeft:e.relationTitle2==="none"?"":e.relationTitle2,arrowTypeStart:L(e.relation.type1),arrowTypeEnd:L(e.relation.type2),style:"fill:none",labelStyle:"",curve:C(f==null?void 0:f.curve,D)};if(p.info(l,e),e.style!==void 0){const r=G(e.style);l.style=r.style,l.labelStyle=r.labelStyle}e.text=e.title,e.text===void 0?e.style!==void 0&&(l.arrowheadStyle="fill: #333"):(l.arrowheadStyle="fill: #333",l.labelpos="c",((i=a().flowchart)==null?void 0:i.htmlLabels)??a().htmlLabels?(l.labelType="html",l.label='<span class="edgeLabel">'+e.text+"</span>"):(l.labelType="text",l.label=e.text.replace(E.lineBreakRegex,`
|
||||
import{p as _,d as T,s as M}from"./styles-0dd3ba1e-1d10894d.js";import{l as p,c as a,h as w,y as R,t as B,r as C,o as D,p as G,k as E}from"./mermaid.core-ae2b6479.js";import{G as I}from"./layout-322a865b.js";import{r as $}from"./index-f9d09cc9-345926e7.js";import"./app-ad64ba18.js";import"./framework-caa722f8.js";import"./isPlainObject-6c947fce.js";import"./array-9f3ba611.js";import"./path-53f90ab3.js";import"./edges-65da65dc-b49fd70b.js";import"./svgDraw-6a237a99-6623f26c.js";const A=s=>E.sanitizeText(s,a());let S={dividerMargin:10,padding:5,textHeight:10,curve:void 0};const z=function(s,o,f,n){const e=Object.keys(s);p.info("keys:",e),p.info(s),e.forEach(function(i){var l,r;const t=s[i];let y="";t.cssClasses.length>0&&(y=y+" "+t.cssClasses.join(" "));const c={labelStyle:"",style:""},m=t.label??t.id,d=0,u="class_box",b={labelStyle:c.labelStyle,shape:u,labelText:A(m),classData:t,rx:d,ry:d,class:y,style:c.style,id:t.id,domId:t.domId,tooltip:n.db.getTooltip(t.id)||"",haveCallback:t.haveCallback,link:t.link,width:t.type==="group"?500:void 0,type:t.type,padding:((l=a().flowchart)==null?void 0:l.padding)??((r=a().class)==null?void 0:r.padding)};o.setNode(t.id,b),p.info("setNode",b)})},q=function(s,o,f,n){p.info(s),s.forEach(function(e,i){var l,r;const t=e,y="",c={labelStyle:"",style:""},m=t.text,d=0,u="note",b={labelStyle:c.labelStyle,shape:u,labelText:A(m),noteData:t,rx:d,ry:d,class:y,style:c.style,id:t.id,domId:t.id,tooltip:"",type:"note",padding:((l=a().flowchart)==null?void 0:l.padding)??((r=a().class)==null?void 0:r.padding)};if(o.setNode(t.id,b),p.info("setNode",b),!t.class||!(t.class in n))return;const v=f+i,g={id:`edgeNote${v}`,classes:"relation",pattern:"dotted",arrowhead:"none",startLabelRight:"",endLabelLeft:"",arrowTypeStart:"none",arrowTypeEnd:"none",style:"fill:none",labelStyle:"",curve:C(S.curve,D)};o.setEdge(t.id,t.class,g,v)})},F=function(s,o){const f=a().flowchart;let n=0;s.forEach(function(e){var i;n++;const l={classes:"relation",pattern:e.relation.lineType==1?"dashed":"solid",id:"id"+n,arrowhead:e.type==="arrow_open"?"none":"normal",startLabelRight:e.relationTitle1==="none"?"":e.relationTitle1,endLabelLeft:e.relationTitle2==="none"?"":e.relationTitle2,arrowTypeStart:L(e.relation.type1),arrowTypeEnd:L(e.relation.type2),style:"fill:none",labelStyle:"",curve:C(f==null?void 0:f.curve,D)};if(p.info(l,e),e.style!==void 0){const r=G(e.style);l.style=r.style,l.labelStyle=r.labelStyle}e.text=e.title,e.text===void 0?e.style!==void 0&&(l.arrowheadStyle="fill: #333"):(l.arrowheadStyle="fill: #333",l.labelpos="c",((i=a().flowchart)==null?void 0:i.htmlLabels)??a().htmlLabels?(l.labelType="html",l.label='<span class="edgeLabel">'+e.text+"</span>"):(l.labelType="text",l.label=e.text.replace(E.lineBreakRegex,`
|
||||
`),e.style===void 0&&(l.style=l.style||"stroke: #333; stroke-width: 1.5px;fill:none"),l.labelStyle=l.labelStyle.replace("color:","fill:"))),o.setEdge(e.id1,e.id2,l,n)})},H=function(s){S={...S,...s}},P=function(s,o,f,n){p.info("Drawing class - ",o);const e=a().flowchart??a().class,i=a().securityLevel;p.info("config:",e);const l=(e==null?void 0:e.nodeSpacing)??50,r=(e==null?void 0:e.rankSpacing)??50,t=new I({multigraph:!0,compound:!0}).setGraph({rankdir:n.db.getDirection(),nodesep:l,ranksep:r,marginx:8,marginy:8}).setDefaultEdgeLabel(function(){return{}}),y=n.db.getClasses(),c=n.db.getRelations(),m=n.db.getNotes();p.info(c),z(y,t,o,n),F(c,t),q(m,t,c.length+1,y);let d;i==="sandbox"&&(d=w("#i"+o));const u=i==="sandbox"?w(d.nodes()[0].contentDocument.body):w("body"),b=u.select(`[id="${o}"]`),v=u.select("#"+o+" g");if($(v,t,["aggregation","extension","composition","dependency","lollipop"],"classDiagram",o),R.insertTitle(b,"classTitleText",(e==null?void 0:e.titleTopMargin)??5,n.db.getDiagramTitle()),B(t,b,e==null?void 0:e.diagramPadding,e==null?void 0:e.useMaxWidth),!(e!=null&&e.htmlLabels)){const g=i==="sandbox"?d.nodes()[0].contentDocument:document,N=g.querySelectorAll('[id="'+o+'"] .edgeLabel .label');for(const x of N){const k=x.getBBox(),h=g.createElementNS("http://www.w3.org/2000/svg","rect");h.setAttribute("rx",0),h.setAttribute("ry",0),h.setAttribute("width",k.width),h.setAttribute("height",k.height),x.insertBefore(h,x.firstChild)}}};function L(s){let o;switch(s){case 0:o="aggregation";break;case 1:o="extension";break;case 2:o="composition";break;case 3:o="dependency";break;case 4:o="lollipop";break;default:o="none"}return o}const V={setConf:H,draw:P},te={parser:_,db:T,renderer:V,styles:M,init:s=>{s.class||(s.class={}),s.class.arrowMarkerAbsolute=s.arrowMarkerAbsolute,T.clear()}};export{te as diagram};
|
||||
@@ -1 +1 @@
|
||||
const t=JSON.parse('{"key":"v-5cad49b8","path":"/zh/community.html","title":"加入用户社区","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["公告"],"redirectFrom":"/community.html","description":"作为开源软件,社区动力是胡桃工具箱生态的重要组成部分,你可以在通过下面的方式加入到胡桃的用户社区中。 include(star-request.md) GitHub 讨论 Snap.Hutao Discussion (https://github.com/DGP-Studio/Snap.Hutao/discussions) QQ 群 Snap 一群 (...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/community.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/community.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"加入用户社区"}],["meta",{"property":"og:description","content":"作为开源软件,社区动力是胡桃工具箱生态的重要组成部分,你可以在通过下面的方式加入到胡桃的用户社区中。 include(star-request.md) GitHub 讨论 Snap.Hutao Discussion (https://github.com/DGP-Studio/Snap.Hutao/discussions) QQ 群 Snap 一群 (..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"加入用户社区\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"GitHub 讨论","slug":"github-讨论","link":"#github-讨论","children":[]},{"level":2,"title":"QQ 群","slug":"qq-群","link":"#qq-群","children":[]},{"level":2,"title":"Discord","slug":"discord","link":"#discord","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":0.55,"words":165},"filePathRelative":"zh/community.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
const t=JSON.parse('{"key":"v-5cad49b8","path":"/zh/community.html","title":"加入用户社区","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["公告"],"redirectFrom":"/community.html","description":"作为开源软件,社区动力是胡桃工具箱生态的重要组成部分,你可以在通过下面的方式加入到胡桃的用户社区中。 include(star-request.md) GitHub 讨论 Snap.Hutao Discussion (https://github.com/DGP-Studio/Snap.Hutao/discussions) QQ 群 Snap 一群 (...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/community.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/community.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"加入用户社区"}],["meta",{"property":"og:description","content":"作为开源软件,社区动力是胡桃工具箱生态的重要组成部分,你可以在通过下面的方式加入到胡桃的用户社区中。 include(star-request.md) GitHub 讨论 Snap.Hutao Discussion (https://github.com/DGP-Studio/Snap.Hutao/discussions) QQ 群 Snap 一群 (..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"加入用户社区\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"GitHub 讨论","slug":"github-讨论","link":"#github-讨论","children":[]},{"level":2,"title":"QQ 群","slug":"qq-群","link":"#qq-群","children":[]},{"level":2,"title":"Discord","slug":"discord","link":"#discord","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":0.55,"words":165},"filePathRelative":"zh/community.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
1
assets/community.html-3814f3ad.js
Normal file
1
assets/community.html-3814f3ad.js
Normal file
@@ -0,0 +1 @@
|
||||
import{_ as r,X as a,Y as s,Z as e,$ as o,a0 as t,C as i}from"./framework-caa722f8.js";const l={},u=e("h1",{id:"join-community",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#join-community","aria-hidden":"true"},"#"),o(" Join Community")],-1),c=e("p",null,"As open-source software, community power is an important part of the ecology of Snap Hutao, and you can join our user community by following ways.",-1),h={href:"http://star-request.md",target:"_blank",rel:"noopener noreferrer"},d=e("h2",{id:"github-discussion",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#github-discussion","aria-hidden":"true"},"#"),o(" GitHub Discussion")],-1),p={href:"https://github.com/DGP-Studio/Snap.Hutao/discussions",target:"_blank",rel:"noopener noreferrer"},_=e("h2",{id:"qq-group-cn",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#qq-group-cn","aria-hidden":"true"},"#"),o(" QQ Group (CN)")],-1),f={href:"https://go.hut.ao/qun1",target:"_blank",rel:"noopener noreferrer"},m={href:"https://go.hut.ao/qun2",target:"_blank",rel:"noopener noreferrer"},g={href:"https://go.hut.ao/qun3",target:"_blank",rel:"noopener noreferrer"},b={href:"https://go.hut.ao/qun4",target:"_blank",rel:"noopener noreferrer"},k=e("em",null,"Snap Developer Open Discussion Group",-1),y=e("li",null,"General tech talk, not Snap Hutao Project development group",-1),q=e("li",null,"The Dev group requires some basic tech knowledge",-1),v={href:"https://dev-group.hut.ao",target:"_blank",rel:"noopener noreferrer"},x=e("h2",{id:"discord",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#discord","aria-hidden":"true"},"#"),o(" Discord")],-1),S={href:"https://discord.gg/Yb8bykaUKp",target:"_blank",rel:"noopener noreferrer"};function G(D,j){const n=i("ExternalLinkIcon");return a(),s("div",null,[u,c,e("p",null,[o("@include("),e("a",h,[o("star-request.md"),t(n)]),o(")")]),d,e("p",null,[e("a",p,[o("Snap.Hutao Discussion"),t(n)])]),_,e("ul",null,[e("li",null,[e("a",f,[o("Snap Group #1"),t(n)])]),e("li",null,[e("a",m,[o("Snap Group #2"),t(n)])]),e("li",null,[e("a",g,[o("Snap Group #3"),t(n)])]),e("li",null,[e("a",b,[o("Snap Group #4"),t(n)])]),e("li",null,[k,e("ul",null,[y,q,e("li",null,[o("You can join via "),e("a",v,[o("https://dev-group.hut.ao"),t(n)]),o(" if you are interested to join")])])])]),x,e("p",null,[o("Invite link:"),e("a",S,[o("https://discord.gg/Yb8bykUKp"),t(n)])])])}const H=r(l,[["render",G],["__file","community.html.vue"]]);export{H as default};
|
||||
@@ -1 +0,0 @@
|
||||
import{_ as r,X as a,Y as s,Z as o,$ as t,a0 as n,C as i}from"./framework-caa722f8.js";const l={},u=o("h1",{id:"join-community",tabindex:"-1"},[o("a",{class:"header-anchor",href:"#join-community","aria-hidden":"true"},"#"),t(" Join Community")],-1),c=o("p",null,"As open-source software, community power is an important part of the ecology of Snap Hutao, and you can join our user community by following ways.",-1),h=o("p",null,[o("strong",null,"If you believe Snap Hutao is a good project and helps you, you can support us by the following ways")],-1),d={href:"https://github.com/DGP-Studio/Snap.Hutao",target:"_blank",rel:"noopener noreferrer"},p=o("img",{src:"https://img.shields.io/github/stars/DGP-Studio/Snap.Hutao?style=plastic&color=red",alt:"hutao.stars",loading:"lazy"},null,-1),_={href:"https://github.com/DGP-Studio/Snap.Hutao.Docs",target:"_blank",rel:"noopener noreferrer"},g=o("img",{src:"https://img.shields.io/github/stars/DGP-Studio/Snap.Hutao.Docs?style=plastic&color=red",alt:"hutao.docs.stars",loading:"lazy"},null,-1),m=o("li",null,[t("Rate our App on "),o("a",{href:"ms-windows-store://review/?ProductId=9PH4NXJ2JN52"},"Microsoft Store")],-1),f=o("li",null,"Promote our project in your network",-1),b=o("p",null,[o("img",{src:"https://img.shields.io/github/commit-activity/y/DGP-Studio/Snap.Hutao?style=for-the-badge",alt:"commit_activity",loading:"lazy"}),t(),o("img",{src:"https://img.shields.io/github/last-commit/DGP-Studio/Snap.Hutao?label=Hutao Last Commit&style=for-the-badge",alt:"hutao-last-commit",loading:"lazy"})],-1),y=o("h2",{id:"github-discussion",tabindex:"-1"},[o("a",{class:"header-anchor",href:"#github-discussion","aria-hidden":"true"},"#"),t(" GitHub Discussion")],-1),S={href:"https://github.com/DGP-Studio/Snap.Hutao/discussions",target:"_blank",rel:"noopener noreferrer"},k=o("h2",{id:"qq-group-cn",tabindex:"-1"},[o("a",{class:"header-anchor",href:"#qq-group-cn","aria-hidden":"true"},"#"),t(" QQ Group (CN)")],-1),H={href:"https://go.hut.ao/qun1",target:"_blank",rel:"noopener noreferrer"},D={href:"https://go.hut.ao/qun2",target:"_blank",rel:"noopener noreferrer"},G={href:"https://go.hut.ao/qun3",target:"_blank",rel:"noopener noreferrer"},v={href:"https://go.hut.ao/qun4",target:"_blank",rel:"noopener noreferrer"},w=o("em",null,"Snap Developer Open Discussion Group",-1),P=o("li",null,"General tech talk, not Snap Hutao Project development group",-1),x=o("li",null,"The Dev group requires some basic tech knowledge",-1),j={href:"https://dev-group.hut.ao",target:"_blank",rel:"noopener noreferrer"},q=o("h2",{id:"discord",tabindex:"-1"},[o("a",{class:"header-anchor",href:"#discord","aria-hidden":"true"},"#"),t(" Discord")],-1),N={href:"https://discord.gg/Yb8bykaUKp",target:"_blank",rel:"noopener noreferrer"};function C(I,z){const e=i("ExternalLinkIcon");return a(),s("div",null,[u,c,h,o("ul",null,[o("li",null,[t("Star our project on GitHub ⭐ "),o("ul",null,[o("li",null,[o("a",d,[t("Snap.Hutao"),n(e)]),t(),p]),o("li",null,[o("a",_,[t("Snap.Hutao.Docs"),n(e)]),t(),g])])]),m,f]),b,y,o("p",null,[o("a",S,[t("Snap.Hutao Discussion"),n(e)])]),k,o("ul",null,[o("li",null,[o("a",H,[t("Snap Group #1"),n(e)])]),o("li",null,[o("a",D,[t("Snap Group #2"),n(e)])]),o("li",null,[o("a",G,[t("Snap Group #3"),n(e)])]),o("li",null,[o("a",v,[t("Snap Group #4"),n(e)])]),o("li",null,[w,o("ul",null,[P,x,o("li",null,[t("You can join via "),o("a",j,[t("https://dev-group.hut.ao"),n(e)]),t(" if you are interested to join")])])])]),q,o("p",null,[t("Invite link:"),o("a",N,[t("https://discord.gg/Yb8bykUKp"),n(e)])])])}const B=r(l,[["render",C],["__file","community.html.vue"]]);export{B as default};
|
||||
@@ -1 +0,0 @@
|
||||
import{_ as a,X as r,Y as s,Z as t,$ as e,a0 as n,C as l}from"./framework-caa722f8.js";const i={},h=t("h1",{id:"加入用户社区",tabindex:"-1"},[t("a",{class:"header-anchor",href:"#加入用户社区","aria-hidden":"true"},"#"),e(" 加入用户社区")],-1),u=t("p",null,"作为开源软件,社区动力是胡桃工具箱生态的重要组成部分,你可以在通过下面的方式加入到胡桃的用户社区中。",-1),d=t("p",null,[t("strong",null,"如果你认为胡桃工具箱是一个好的项目或者有帮助到你,你可以通过以下方式支持我们")],-1),c={href:"https://github.com/DGP-Studio/Snap.Hutao",target:"_blank",rel:"noopener noreferrer"},_=t("img",{src:"https://img.shields.io/github/stars/DGP-Studio/Snap.Hutao?style=plastic&color=red",alt:"hutao.stars",loading:"lazy"},null,-1),p={href:"https://github.com/DGP-Studio/Snap.Hutao.Docs",target:"_blank",rel:"noopener noreferrer"},g=t("img",{src:"https://img.shields.io/github/stars/DGP-Studio/Snap.Hutao.Docs?style=plastic&color=red",alt:"hutao.docs.stars",loading:"lazy"},null,-1),m=t("li",null,[e("在"),t("a",{href:"ms-windows-store://review/?ProductId=9PH4NXJ2JN52"},"微软商店"),e("上给出好评")],-1),f=t("li",null,"在更多的地方帮助我们宣传",-1),b=t("p",null,[t("img",{src:"https://img.shields.io/github/commit-activity/y/DGP-Studio/Snap.Hutao?style=for-the-badge",alt:"commit_activity",loading:"lazy"}),t("img",{src:"https://img.shields.io/github/last-commit/DGP-Studio/Snap.Hutao?label=Hutao Last Commit&style=for-the-badge",alt:"hutao-last-commit",loading:"lazy"})],-1),S=t("h2",{id:"github-讨论",tabindex:"-1"},[t("a",{class:"header-anchor",href:"#github-讨论","aria-hidden":"true"},"#"),e(" GitHub 讨论")],-1),k={href:"https://github.com/DGP-Studio/Snap.Hutao/discussions",target:"_blank",rel:"noopener noreferrer"},y=t("h2",{id:"qq-群",tabindex:"-1"},[t("a",{class:"header-anchor",href:"#qq-群","aria-hidden":"true"},"#"),e(" QQ 群")],-1),H={href:"https://go.hut.ao/qun1",target:"_blank",rel:"noopener noreferrer"},D={href:"https://go.hut.ao/qun2",target:"_blank",rel:"noopener noreferrer"},x={href:"https://go.hut.ao/qun3",target:"_blank",rel:"noopener noreferrer"},G={href:"https://go.hut.ao/qun4",target:"_blank",rel:"noopener noreferrer"},P=t("em",null,"Snap 开发交流群",-1),q=t("li",null,"广泛的技术交流群,并非胡桃工具箱开发群",-1),v=t("li",null,"开发群对申请者的技术水平有一定要求",-1),N={href:"https://dev-group.hut.ao",target:"_blank",rel:"noopener noreferrer"},z=t("h2",{id:"discord",tabindex:"-1"},[t("a",{class:"header-anchor",href:"#discord","aria-hidden":"true"},"#"),e(" Discord")],-1),w={href:"https://discord.gg/Yb8bykaUKp",target:"_blank",rel:"noopener noreferrer"};function B(C,E){const o=l("ExternalLinkIcon");return r(),s("div",null,[h,u,d,t("ul",null,[t("li",null,[e("为我们在 GitHub 上的项目加星点赞 ⭐ "),t("ul",null,[t("li",null,[t("a",c,[e("Snap.Hutao"),n(o)]),e(),_]),t("li",null,[t("a",p,[e("Snap.Hutao.Docs"),n(o)]),e(),g])])]),m,f]),b,S,t("p",null,[t("a",k,[e("Snap.Hutao Discussion"),n(o)])]),y,t("ul",null,[t("li",null,[t("a",H,[e("Snap 一群"),n(o)])]),t("li",null,[t("a",D,[e("Snap 二群"),n(o)])]),t("li",null,[t("a",x,[e("Snap 三群"),n(o)])]),t("li",null,[t("a",G,[e("Snap 四群"),n(o)])]),t("li",null,[P,t("ul",null,[q,v,t("li",null,[e("如果你有兴趣可以从"),t("a",N,[e("dev-group.hut.ao"),n(o)]),e("加入开发者交流群")])])])]),z,t("p",null,[e("邀请链接:"),t("a",w,[e("https://discord.gg/Yb8bykaUKp"),n(o)])])])}const L=a(i,[["render",B],["__file","community.html.vue"]]);export{L as default};
|
||||
@@ -1 +1 @@
|
||||
const t=JSON.parse('{"key":"v-082946dd","path":"/en/community.html","title":"Join Community","lang":"en-US","frontmatter":{"headerDepth":0,"category":["Announcement"],"description":"As open-source software, community power is an important part of the ecology of Snap Hutao, and you can join our user community by following ways. include(star-request.md) GitHu...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/community.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/community.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"Join Community"}],["meta",{"property":"og:description","content":"As open-source software, community power is an important part of the ecology of Snap Hutao, and you can join our user community by following ways. include(star-request.md) GitHu..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:17.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:17.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"Join Community\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:17.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"GitHub Discussion","slug":"github-discussion","link":"#github-discussion","children":[]},{"level":2,"title":"QQ Group (CN)","slug":"qq-group-cn","link":"#qq-group-cn","children":[]},{"level":2,"title":"Discord","slug":"discord","link":"#discord","children":[]}],"git":{"createdTime":1679108717000,"updatedTime":1679108717000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":0.37,"words":110},"filePathRelative":"en/community.md","localizedDate":"March 18, 2023","autoDesc":true}');export{t as data};
|
||||
const t=JSON.parse('{"key":"v-082946dd","path":"/en/community.html","title":"Join Community","lang":"en-US","frontmatter":{"headerDepth":0,"category":["Announcement"],"description":"As open-source software, community power is an important part of the ecology of Snap Hutao, and you can join our user community by following ways. include(star-request.md) GitHu...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/community.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/community.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"Join Community"}],["meta",{"property":"og:description","content":"As open-source software, community power is an important part of the ecology of Snap Hutao, and you can join our user community by following ways. include(star-request.md) GitHu..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:17.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:17.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"Join Community\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:17.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"GitHub Discussion","slug":"github-discussion","link":"#github-discussion","children":[]},{"level":2,"title":"QQ Group (CN)","slug":"qq-group-cn","link":"#qq-group-cn","children":[]},{"level":2,"title":"Discord","slug":"discord","link":"#discord","children":[]}],"git":{"createdTime":1679108717000,"updatedTime":1679108717000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":0.37,"words":110},"filePathRelative":"en/community.md","localizedDate":"March 18, 2023","autoDesc":true}');export{t as data};
|
||||
1
assets/community.html-f3736680.js
Normal file
1
assets/community.html-f3736680.js
Normal file
@@ -0,0 +1 @@
|
||||
import{_ as o,X as a,Y as s,Z as e,$ as t,a0 as r,C as l}from"./framework-caa722f8.js";const h={},i=e("h1",{id:"加入用户社区",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#加入用户社区","aria-hidden":"true"},"#"),t(" 加入用户社区")],-1),d=e("p",null,"作为开源软件,社区动力是胡桃工具箱生态的重要组成部分,你可以在通过下面的方式加入到胡桃的用户社区中。",-1),c={href:"http://star-request.md",target:"_blank",rel:"noopener noreferrer"},_=e("h2",{id:"github-讨论",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#github-讨论","aria-hidden":"true"},"#"),t(" GitHub 讨论")],-1),u={href:"https://github.com/DGP-Studio/Snap.Hutao/discussions",target:"_blank",rel:"noopener noreferrer"},p=e("h2",{id:"qq-群",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#qq-群","aria-hidden":"true"},"#"),t(" QQ 群")],-1),f={href:"https://go.hut.ao/qun1",target:"_blank",rel:"noopener noreferrer"},g={href:"https://go.hut.ao/qun2",target:"_blank",rel:"noopener noreferrer"},b={href:"https://go.hut.ao/qun3",target:"_blank",rel:"noopener noreferrer"},m={href:"https://go.hut.ao/qun4",target:"_blank",rel:"noopener noreferrer"},k=e("em",null,"Snap 开发交流群",-1),q=e("li",null,"广泛的技术交流群,并非胡桃工具箱开发群",-1),x=e("li",null,"开发群对申请者的技术水平有一定要求",-1),S={href:"https://dev-group.hut.ao",target:"_blank",rel:"noopener noreferrer"},v=e("h2",{id:"discord",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#discord","aria-hidden":"true"},"#"),t(" Discord")],-1),y={href:"https://discord.gg/Yb8bykaUKp",target:"_blank",rel:"noopener noreferrer"};function B(D,E){const n=l("ExternalLinkIcon");return a(),s("div",null,[i,d,e("p",null,[t("@include("),e("a",c,[t("star-request.md"),r(n)]),t(")")]),_,e("p",null,[e("a",u,[t("Snap.Hutao Discussion"),r(n)])]),p,e("ul",null,[e("li",null,[e("a",f,[t("Snap 一群"),r(n)])]),e("li",null,[e("a",g,[t("Snap 二群"),r(n)])]),e("li",null,[e("a",b,[t("Snap 三群"),r(n)])]),e("li",null,[e("a",m,[t("Snap 四群"),r(n)])]),e("li",null,[k,e("ul",null,[q,x,e("li",null,[t("如果你有兴趣可以从"),e("a",S,[t("dev-group.hut.ao"),r(n)]),t("加入开发者交流群")])])])]),v,e("p",null,[t("邀请链接:"),e("a",y,[t("https://discord.gg/Yb8bykaUKp"),r(n)])])])}const N=o(h,[["render",B],["__file","community.html.vue"]]);export{N as default};
|
||||
53
assets/component-9433b7bd.js
Normal file
53
assets/component-9433b7bd.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
const e=JSON.parse('{"key":"v-5513fe56","path":"/zh/features/daily-notes.html","title":"实时便笺","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":4,"redirectFrom":"/features/daily-notes.html","description":"该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 live-data-tracking 添加角色 点击添加角色按钮; 在弹出的添加角色浮窗中,选择您要添加的游戏角色,并单击其右侧的加号按钮; 此时您添加的游戏角色即可显示在实时便笺页面中; 实时便笺是间隔固定时间自动刷新的; 你可...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/daily-notes.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/daily-notes.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"实时便笺"}],["meta",{"property":"og:description","content":"该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 live-data-tracking 添加角色 点击添加角色按钮; 在弹出的添加角色浮窗中,选择您要添加的游戏角色,并单击其右侧的加号按钮; 此时您添加的游戏角色即可显示在实时便笺页面中; 实时便笺是间隔固定时间自动刷新的; 你可..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"实时便笺\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"添加角色","slug":"添加角色","link":"#添加角色","children":[]},{"level":2,"title":"全局通知设置","slug":"全局通知设置","link":"#全局通知设置","children":[]},{"level":2,"title":"帐号独立设置","slug":"帐号独立设置","link":"#帐号独立设置","children":[]},{"level":2,"title":"删除角色","slug":"删除角色","link":"#删除角色","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":1.85,"words":554},"filePathRelative":"zh/features/daily-notes.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
@@ -1 +0,0 @@
|
||||
const e=JSON.parse('{"key":"v-28566fde","path":"/en/features/daily-notes.html","title":"实时便笺","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":4,"description":"::: info 该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 ::: live-data-tracking 添加角色 点击添加角色按钮; 在弹出的添加角色浮窗中,选择您要添加的游戏角色,并单击其右侧的加号按钮; 此时您添加的游戏角色即可显示在实时便笺页面中; 实时便笺是间隔...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/daily-notes.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/daily-notes.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"实时便笺"}],["meta",{"property":"og:description","content":"::: info 该功能需要你在胡桃工具箱中登录米游社帐号,登录方法可见米游社多帐号切换 (mhy-account-switch.md)文档 ::: live-data-tracking 添加角色 点击添加角色按钮; 在弹出的添加角色浮窗中,选择您要添加的游戏角色,并单击其右侧的加号按钮; 此时您添加的游戏角色即可显示在实时便笺页面中; 实时便笺是间隔..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:25.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:25.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"实时便笺\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:25.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"添加角色","slug":"添加角色","link":"#添加角色","children":[]},{"level":2,"title":"全局通知设置","slug":"全局通知设置","link":"#全局通知设置","children":[]},{"level":2,"title":"帐号独立设置","slug":"帐号独立设置","link":"#帐号独立设置","children":[]},{"level":2,"title":"删除角色","slug":"删除角色","link":"#删除角色","children":[]}],"git":{"createdTime":1673484663000,"updatedTime":1679108725000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":1.84,"words":551},"filePathRelative":"en/features/daily-notes.md","localizedDate":"January 12, 2023","autoDesc":true}');export{e as data};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-83f6294a","path":"/en/features/develop-plan.html","title":"养成计划","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":7,"description":"dev-plan 添加养成目标进入材料清单 基于 WIKI 资料添加 在胡桃工具箱的左侧栏目中,点击角色资料或`武器资料功能; 在\\"胡桃工具箱\\"的整体界面右上部分,点击养成计算按钮; 在弹出的\\"添加到当前养成计划\\"的窗口中,填写角色需要计算的各项属性的起始等级以及目标等级; 基于 WIKI 资料添加的养成目标,默认初始值为1级; 基于玩家数据添加 在\\"...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/develop-plan.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/develop-plan.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"养成计划"}],["meta",{"property":"og:description","content":"dev-plan 添加养成目标进入材料清单 基于 WIKI 资料添加 在胡桃工具箱的左侧栏目中,点击角色资料或`武器资料功能; 在\\"胡桃工具箱\\"的整体界面右上部分,点击养成计算按钮; 在弹出的\\"添加到当前养成计划\\"的窗口中,填写角色需要计算的各项属性的起始等级以及目标等级; 基于 WIKI 资料添加的养成目标,默认初始值为1级; 基于玩家数据添加 在\\"..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:26.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:26.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"养成计划\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:26.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"添加养成目标进入材料清单","slug":"添加养成目标进入材料清单","link":"#添加养成目标进入材料清单","children":[{"level":3,"title":"基于 WIKI 资料添加","slug":"基于-wiki-资料添加","link":"#基于-wiki-资料添加","children":[]},{"level":3,"title":"基于玩家数据添加","slug":"基于玩家数据添加","link":"#基于玩家数据添加","children":[]}]},{"level":2,"title":"背包物品","slug":"背包物品","link":"#背包物品","children":[]},{"level":2,"title":"功能说明","slug":"功能说明","link":"#功能说明","children":[]}],"git":{"createdTime":1673484663000,"updatedTime":1679108726000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":2.07,"words":622},"filePathRelative":"en/features/develop-plan.md","localizedDate":"January 12, 2023","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-83f6294a","path":"/en/features/develop-plan.html","title":"养成计划","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":7,"description":"dev-plan 添加养成目标进入材料清单 基于 WIKI 资料添加 在胡桃工具箱的左侧栏目中,点击角色资料或`武器资料功能; 在\\"胡桃工具箱\\"的整体界面右上部分,点击养成计算按钮; 在弹出的\\"添加到当前养成计划\\"的窗口中,填写角色需要计算的各项属性的起始等级以及目标等级; 基于 WIKI 资料添加的养成目标,默认初始值为1级; 基于玩家数据添加 在\\"...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/develop-plan.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/develop-plan.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"养成计划"}],["meta",{"property":"og:description","content":"dev-plan 添加养成目标进入材料清单 基于 WIKI 资料添加 在胡桃工具箱的左侧栏目中,点击角色资料或`武器资料功能; 在\\"胡桃工具箱\\"的整体界面右上部分,点击养成计算按钮; 在弹出的\\"添加到当前养成计划\\"的窗口中,填写角色需要计算的各项属性的起始等级以及目标等级; 基于 WIKI 资料添加的养成目标,默认初始值为1级; 基于玩家数据添加 在\\"..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:26.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:26.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"养成计划\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:26.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"添加养成目标进入材料清单","slug":"添加养成目标进入材料清单","link":"#添加养成目标进入材料清单","children":[{"level":3,"title":"基于 WIKI 资料添加","slug":"基于-wiki-资料添加","link":"#基于-wiki-资料添加","children":[]},{"level":3,"title":"基于玩家数据添加","slug":"基于玩家数据添加","link":"#基于玩家数据添加","children":[]}]},{"level":2,"title":"背包物品","slug":"背包物品","link":"#背包物品","children":[]},{"level":2,"title":"功能说明","slug":"功能说明","link":"#功能说明","children":[]}],"git":{"createdTime":1673484663000,"updatedTime":1679108726000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":2.07,"words":622},"filePathRelative":"en/features/develop-plan.md","localizedDate":"January 12, 2023","autoDesc":true}');export{e as data};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-7cac7db6","path":"/zh/features/develop-plan.html","title":"养成计划","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":7,"redirectFrom":"/features/developer-plan.html","description":"dev-plan 添加养成目标进入材料清单 基于 WIKI 资料添加 在胡桃工具箱的左侧栏目中,点击角色资料或`武器资料功能; 在\\"胡桃工具箱\\"的整体界面右上部分,点击养成计算按钮; 在弹出的\\"添加到当前养成计划\\"的窗口中,填写角色需要计算的各项属性的起始等级以及目标等级; 基于 WIKI 资料添加的养成目标,默认初始值为1级; 基于玩家数据添加 在\\"...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/develop-plan.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/develop-plan.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"养成计划"}],["meta",{"property":"og:description","content":"dev-plan 添加养成目标进入材料清单 基于 WIKI 资料添加 在胡桃工具箱的左侧栏目中,点击角色资料或`武器资料功能; 在\\"胡桃工具箱\\"的整体界面右上部分,点击养成计算按钮; 在弹出的\\"添加到当前养成计划\\"的窗口中,填写角色需要计算的各项属性的起始等级以及目标等级; 基于 WIKI 资料添加的养成目标,默认初始值为1级; 基于玩家数据添加 在\\"..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"养成计划\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"添加养成目标进入材料清单","slug":"添加养成目标进入材料清单","link":"#添加养成目标进入材料清单","children":[{"level":3,"title":"基于 WIKI 资料添加","slug":"基于-wiki-资料添加","link":"#基于-wiki-资料添加","children":[]},{"level":3,"title":"基于玩家数据添加","slug":"基于玩家数据添加","link":"#基于玩家数据添加","children":[]}]},{"level":2,"title":"背包物品","slug":"背包物品","link":"#背包物品","children":[]},{"level":2,"title":"功能说明","slug":"功能说明","link":"#功能说明","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":2.08,"words":625},"filePathRelative":"zh/features/develop-plan.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-7cac7db6","path":"/zh/features/develop-plan.html","title":"养成计划","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":7,"redirectFrom":"/features/developer-plan.html","description":"dev-plan 添加养成目标进入材料清单 基于 WIKI 资料添加 在胡桃工具箱的左侧栏目中,点击角色资料或`武器资料功能; 在\\"胡桃工具箱\\"的整体界面右上部分,点击养成计算按钮; 在弹出的\\"添加到当前养成计划\\"的窗口中,填写角色需要计算的各项属性的起始等级以及目标等级; 基于 WIKI 资料添加的养成目标,默认初始值为1级; 基于玩家数据添加 在\\"...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/develop-plan.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/develop-plan.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"养成计划"}],["meta",{"property":"og:description","content":"dev-plan 添加养成目标进入材料清单 基于 WIKI 资料添加 在胡桃工具箱的左侧栏目中,点击角色资料或`武器资料功能; 在\\"胡桃工具箱\\"的整体界面右上部分,点击养成计算按钮; 在弹出的\\"添加到当前养成计划\\"的窗口中,填写角色需要计算的各项属性的起始等级以及目标等级; 基于 WIKI 资料添加的养成目标,默认初始值为1级; 基于玩家数据添加 在\\"..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"养成计划\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"添加养成目标进入材料清单","slug":"添加养成目标进入材料清单","link":"#添加养成目标进入材料清单","children":[{"level":3,"title":"基于 WIKI 资料添加","slug":"基于-wiki-资料添加","link":"#基于-wiki-资料添加","children":[]},{"level":3,"title":"基于玩家数据添加","slug":"基于玩家数据添加","link":"#基于玩家数据添加","children":[]}]},{"level":2,"title":"背包物品","slug":"背包物品","link":"#背包物品","children":[]},{"level":2,"title":"功能说明","slug":"功能说明","link":"#功能说明","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":2.08,"words":625},"filePathRelative":"zh/features/develop-plan.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
import{aC as r}from"./mermaid.core-cd13285d.js";import"./app-7d010250.js";import"./framework-caa722f8.js";const e=()=>"",t=e,p={db:{clear:()=>{}},styles:t,renderer:r,parser:{parser:{yy:{}},parse:()=>{}},init:()=>{}};export{p as diagram};
|
||||
1
assets/errorDiagram-bb949655-cba9d858.js
Normal file
1
assets/errorDiagram-bb949655-cba9d858.js
Normal file
@@ -0,0 +1 @@
|
||||
import{aC as r}from"./mermaid.core-ae2b6479.js";import"./app-ad64ba18.js";import"./framework-caa722f8.js";const e=()=>"",t=e,p={db:{clear:()=>{}},styles:t,renderer:r,parser:{parser:{yy:{}},parse:()=>{}},init:()=>{}};export{p as diagram};
|
||||
1
assets/exceptions.html-2169a150.js
Normal file
1
assets/exceptions.html-2169a150.js
Normal file
@@ -0,0 +1 @@
|
||||
const e=JSON.parse('{"key":"v-1a028d16","path":"/en/advanced/exceptions.html","title":"常见的程序异常","lang":"en-US","frontmatter":{"headerDepth":2,"icon":"debug","category":["FAQ"],"order":2,"description":"该文档包含由用户端错误造成的问题 RuntimeEnvironmentException 异常:RuntimeEnvironmentException; 提示:未开启长路径功能,无法设置注册表键值; 问题来源:没有解除 Windows 目录长度限制; 解决方案:下载 EnableLongPaths.zip (https://d.hut.ao/d/too...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/advanced/exceptions.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/advanced/exceptions.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"常见的程序异常"}],["meta",{"property":"og:description","content":"该文档包含由用户端错误造成的问题 RuntimeEnvironmentException 异常:RuntimeEnvironmentException; 提示:未开启长路径功能,无法设置注册表键值; 问题来源:没有解除 Windows 目录长度限制; 解决方案:下载 EnableLongPaths.zip (https://d.hut.ao/d/too..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:38.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:38.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"常见的程序异常\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:38.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"RuntimeEnvironmentException","slug":"runtimeenvironmentexception","link":"#runtimeenvironmentexception","children":[]},{"level":2,"title":"Return Code: -10001","slug":"return-code-10001","link":"#return-code-10001","children":[]},{"level":2,"title":"HttpRequestException 元数据校验文件下载失败","slug":"httprequestexception-元数据校验文件下载失败","link":"#httprequestexception-元数据校验文件下载失败","children":[{"level":3,"title":"403 (Forbidden)","slug":"_403-forbidden","link":"#_403-forbidden","children":[]},{"level":3,"title":"502 (Bad Gateway)","slug":"_502-bad-gateway","link":"#_502-bad-gateway","children":[]}]}],"git":{"createdTime":1679108738000,"updatedTime":1679108738000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":1.51,"words":452},"filePathRelative":"en/advanced/exceptions.md","localizedDate":"March 18, 2023","autoDesc":true}');export{e as data};
|
||||
1
assets/exceptions.html-5834b250.js
Normal file
1
assets/exceptions.html-5834b250.js
Normal file
@@ -0,0 +1 @@
|
||||
const e=JSON.parse('{"key":"v-c8e5b2e0","path":"/zh/advanced/exceptions.html","title":"常见的程序异常","lang":"zh-CN","frontmatter":{"headerDepth":2,"icon":"debug","category":["FAQ"],"order":2,"redirectFrom":"/advanced/exceptions.html","description":"该文档包含由用户端错误造成的问题 RuntimeEnvironmentException 异常:RuntimeEnvironmentException; 提示:未开启长路径功能,无法设置注册表键值; 问题来源:没有解除 Windows 目录长度限制; 解决方案:下载 EnableLongPaths.zip (https://d.hut.ao/d/too...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/advanced/exceptions.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/advanced/exceptions.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"常见的程序异常"}],["meta",{"property":"og:description","content":"该文档包含由用户端错误造成的问题 RuntimeEnvironmentException 异常:RuntimeEnvironmentException; 提示:未开启长路径功能,无法设置注册表键值; 问题来源:没有解除 Windows 目录长度限制; 解决方案:下载 EnableLongPaths.zip (https://d.hut.ao/d/too..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"常见的程序异常\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"RuntimeEnvironmentException","slug":"runtimeenvironmentexception","link":"#runtimeenvironmentexception","children":[]},{"level":2,"title":"Return Code: -10001","slug":"return-code-10001","link":"#return-code-10001","children":[]},{"level":2,"title":"HttpRequestException 元数据校验文件下载失败","slug":"httprequestexception-元数据校验文件下载失败","link":"#httprequestexception-元数据校验文件下载失败","children":[{"level":3,"title":"403 (Forbidden)","slug":"_403-forbidden","link":"#_403-forbidden","children":[]},{"level":3,"title":"502 (Bad Gateway)","slug":"_502-bad-gateway","link":"#_502-bad-gateway","children":[]}]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":1.51,"words":454},"filePathRelative":"zh/advanced/exceptions.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
@@ -1 +0,0 @@
|
||||
const e=JSON.parse('{"key":"v-1a028d16","path":"/en/advanced/exceptions.html","title":"常见的程序异常","lang":"en-US","frontmatter":{"headerDepth":2,"icon":"debug","category":["FAQ"],"order":2,"description":"该文档包含由用户端错误造成的问题 RuntimeEnvironmentException 异常:RuntimeEnvironmentException; 提示:未开启长路径功能,无法设置注册表键值; 问题来源:没有解除 Windows 目录长度限制; 解决方案:下载 EnableLongPaths.zip (https://d.hut.ao/d/too...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/advanced/exceptions.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/advanced/exceptions.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"常见的程序异常"}],["meta",{"property":"og:description","content":"该文档包含由用户端错误造成的问题 RuntimeEnvironmentException 异常:RuntimeEnvironmentException; 提示:未开启长路径功能,无法设置注册表键值; 问题来源:没有解除 Windows 目录长度限制; 解决方案:下载 EnableLongPaths.zip (https://d.hut.ao/d/too..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:38.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:38.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"常见的程序异常\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:38.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"RuntimeEnvironmentException","slug":"runtimeenvironmentexception","link":"#runtimeenvironmentexception","children":[]},{"level":2,"title":"Return Code: -10001","slug":"return-code-10001","link":"#return-code-10001","children":[]},{"level":2,"title":"HttpRequestException 元数据校验文件下载失败","slug":"httprequestexception-元数据校验文件下载失败","link":"#httprequestexception-元数据校验文件下载失败","children":[{"level":3,"title":"403 (Forbidden)","slug":"_403-forbidden","link":"#_403-forbidden","children":[]},{"level":3,"title":"502 (Bad Gateway)","slug":"_502-bad-gateway","link":"#_502-bad-gateway","children":[]}]}],"git":{"createdTime":1679108738000,"updatedTime":1679108738000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":1.51,"words":452},"filePathRelative":"en/advanced/exceptions.md","localizedDate":"March 18, 2023","autoDesc":true}');export{e as data};
|
||||
@@ -1 +0,0 @@
|
||||
const e=JSON.parse('{"key":"v-c8e5b2e0","path":"/zh/advanced/exceptions.html","title":"常见的程序异常","lang":"zh-CN","frontmatter":{"headerDepth":2,"icon":"debug","category":["FAQ"],"order":2,"redirectFrom":"/advanced/exceptions.html","description":"该文档包含由用户端错误造成的问题 RuntimeEnvironmentException 异常:RuntimeEnvironmentException; 提示:未开启长路径功能,无法设置注册表键值; 问题来源:没有解除 Windows 目录长度限制; 解决方案:下载 EnableLongPaths.zip (https://d.hut.ao/d/too...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/advanced/exceptions.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/advanced/exceptions.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"常见的程序异常"}],["meta",{"property":"og:description","content":"该文档包含由用户端错误造成的问题 RuntimeEnvironmentException 异常:RuntimeEnvironmentException; 提示:未开启长路径功能,无法设置注册表键值; 问题来源:没有解除 Windows 目录长度限制; 解决方案:下载 EnableLongPaths.zip (https://d.hut.ao/d/too..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"常见的程序异常\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"RuntimeEnvironmentException","slug":"runtimeenvironmentexception","link":"#runtimeenvironmentexception","children":[]},{"level":2,"title":"Return Code: -10001","slug":"return-code-10001","link":"#return-code-10001","children":[]},{"level":2,"title":"HttpRequestException 元数据校验文件下载失败","slug":"httprequestexception-元数据校验文件下载失败","link":"#httprequestexception-元数据校验文件下载失败","children":[{"level":3,"title":"403 (Forbidden)","slug":"_403-forbidden","link":"#_403-forbidden","children":[]},{"level":3,"title":"502 (Bad Gateway)","slug":"_502-bad-gateway","link":"#_502-bad-gateway","children":[]}]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":1.51,"words":454},"filePathRelative":"zh/advanced/exceptions.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
import{p as a,f as o}from"./add-html-label-fdbf425a.js";import{f as t,a as e}from"./styles-4fe3d1fc-48f2d016.js";import{a4 as i}from"./mermaid.core-cd13285d.js";import"./layout-c96aa3fd.js";import"./isPlainObject-ea877985.js";import"./array-9f3ba611.js";import"./path-53f90ab3.js";import"./index-f9d09cc9-4ae8a0e0.js";import"./edges-65da65dc-c0d21831.js";import"./svgDraw-6a237a99-6be4cb29.js";import"./selectAll-463a728f.js";import"./app-7d010250.js";import"./framework-caa722f8.js";const g={parser:a,db:o,renderer:t,styles:e,init:r=>{r.flowchart||(r.flowchart={}),r.flowchart.arrowMarkerAbsolute=r.arrowMarkerAbsolute,i({flowchart:{arrowMarkerAbsolute:r.arrowMarkerAbsolute}}),t.setConf(r.flowchart),o.clear(),o.setGen("gen-2")}};export{g as diagram};
|
||||
1
assets/flowDiagram-v2-4c9a7611-adbb079c.js
Normal file
1
assets/flowDiagram-v2-4c9a7611-adbb079c.js
Normal file
@@ -0,0 +1 @@
|
||||
import{p as a,f as o}from"./add-html-label-b19e4c9a.js";import{f as t,a as e}from"./styles-4fe3d1fc-596732aa.js";import{a4 as i}from"./mermaid.core-ae2b6479.js";import"./layout-322a865b.js";import"./isPlainObject-6c947fce.js";import"./array-9f3ba611.js";import"./path-53f90ab3.js";import"./index-f9d09cc9-345926e7.js";import"./edges-65da65dc-b49fd70b.js";import"./svgDraw-6a237a99-6623f26c.js";import"./selectAll-a2ae9826.js";import"./app-ad64ba18.js";import"./framework-caa722f8.js";const g={parser:a,db:o,renderer:t,styles:e,init:r=>{r.flowchart||(r.flowchart={}),r.flowchart.arrowMarkerAbsolute=r.arrowMarkerAbsolute,i({flowchart:{arrowMarkerAbsolute:r.arrowMarkerAbsolute}}),t.setConf(r.flowchart),o.clear(),o.setGen("gen-2")}};export{g as diagram};
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-7839fe83","path":"/en/features/game-launcher.html","title":"高级启动器","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":1,"description":"胡桃工具箱提供的高级启动器功能中通过多样的设置选项来允许用户以自定义设置启动游戏; 你可以通过点击左侧菜单栏中的启动游戏进入高级启动器功能; 第一次使用时你会被跳转到设置页面以设置你的游戏路径; 选择游戏路径时,请注意此处选择的应是游戏本身; 形如:$\\\\Genshin Impact\\\\Genshin Impact Game\\\\YuanShen.exe; 而...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/game-launcher.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/game-launcher.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"高级启动器"}],["meta",{"property":"og:description","content":"胡桃工具箱提供的高级启动器功能中通过多样的设置选项来允许用户以自定义设置启动游戏; 你可以通过点击左侧菜单栏中的启动游戏进入高级启动器功能; 第一次使用时你会被跳转到设置页面以设置你的游戏路径; 选择游戏路径时,请注意此处选择的应是游戏本身; 形如:$\\\\Genshin Impact\\\\Genshin Impact Game\\\\YuanShen.exe; 而..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:27.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:27.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"高级启动器\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:27.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"视频指南","slug":"视频指南","link":"#视频指南","children":[]},{"level":2,"title":"切换服务器","slug":"切换服务器","link":"#切换服务器","children":[]},{"level":2,"title":"账号保存","slug":"账号保存","link":"#账号保存","children":[]},{"level":2,"title":"外观选项","slug":"外观选项","link":"#外观选项","children":[]},{"level":2,"title":"高级功能","slug":"高级功能","link":"#高级功能","children":[{"level":3,"title":"游戏客户端多开","slug":"游戏客户端多开","link":"#游戏客户端多开","children":[]}]}],"git":{"createdTime":1673484663000,"updatedTime":1679108727000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":5.63,"words":1688},"filePathRelative":"en/features/game-launcher.md","localizedDate":"January 12, 2023","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-7839fe83","path":"/en/features/game-launcher.html","title":"高级启动器","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":1,"description":"胡桃工具箱提供的高级启动器功能中通过多样的设置选项来允许用户以自定义设置启动游戏; 你可以通过点击左侧菜单栏中的启动游戏进入高级启动器功能; 第一次使用时你会被跳转到设置页面以设置你的游戏路径; 选择游戏路径时,请注意此处选择的应是游戏本身; 形如:$\\\\Genshin Impact\\\\Genshin Impact Game\\\\YuanShen.exe; 而...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/game-launcher.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/game-launcher.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"高级启动器"}],["meta",{"property":"og:description","content":"胡桃工具箱提供的高级启动器功能中通过多样的设置选项来允许用户以自定义设置启动游戏; 你可以通过点击左侧菜单栏中的启动游戏进入高级启动器功能; 第一次使用时你会被跳转到设置页面以设置你的游戏路径; 选择游戏路径时,请注意此处选择的应是游戏本身; 形如:$\\\\Genshin Impact\\\\Genshin Impact Game\\\\YuanShen.exe; 而..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:27.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:27.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"高级启动器\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:27.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"视频指南","slug":"视频指南","link":"#视频指南","children":[]},{"level":2,"title":"切换服务器","slug":"切换服务器","link":"#切换服务器","children":[]},{"level":2,"title":"账号保存","slug":"账号保存","link":"#账号保存","children":[]},{"level":2,"title":"外观选项","slug":"外观选项","link":"#外观选项","children":[]},{"level":2,"title":"高级功能","slug":"高级功能","link":"#高级功能","children":[{"level":3,"title":"游戏客户端多开","slug":"游戏客户端多开","link":"#游戏客户端多开","children":[]}]}],"git":{"createdTime":1673484663000,"updatedTime":1679108727000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":5.63,"words":1688},"filePathRelative":"en/features/game-launcher.md","localizedDate":"January 12, 2023","autoDesc":true}');export{e as data};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-e2f690f0","path":"/zh/features/game-launcher.html","title":"高级启动器","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":1,"redirectFrom":"/features/game-launcher.html","description":"胡桃工具箱提供的高级启动器功能中通过多样的设置选项来允许用户以自定义设置启动游戏; 你可以通过点击左侧菜单栏中的启动游戏进入高级启动器功能; 第一次使用时你会被跳转到设置页面以设置你的游戏路径; 选择游戏路径时,请注意此处选择的应是游戏本身; 形如:$\\\\Genshin Impact\\\\Genshin Impact Game\\\\YuanShen.exe; 而...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/game-launcher.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/game-launcher.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"高级启动器"}],["meta",{"property":"og:description","content":"胡桃工具箱提供的高级启动器功能中通过多样的设置选项来允许用户以自定义设置启动游戏; 你可以通过点击左侧菜单栏中的启动游戏进入高级启动器功能; 第一次使用时你会被跳转到设置页面以设置你的游戏路径; 选择游戏路径时,请注意此处选择的应是游戏本身; 形如:$\\\\Genshin Impact\\\\Genshin Impact Game\\\\YuanShen.exe; 而..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"高级启动器\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"视频指南","slug":"视频指南","link":"#视频指南","children":[]},{"level":2,"title":"切换服务器","slug":"切换服务器","link":"#切换服务器","children":[]},{"level":2,"title":"账号保存","slug":"账号保存","link":"#账号保存","children":[]},{"level":2,"title":"外观选项","slug":"外观选项","link":"#外观选项","children":[]},{"level":2,"title":"高级功能","slug":"高级功能","link":"#高级功能","children":[{"level":3,"title":"解锁帧率上限","slug":"解锁帧率上限","link":"#解锁帧率上限","children":[]},{"level":3,"title":"游戏客户端多开","slug":"游戏客户端多开","link":"#游戏客户端多开","children":[]}]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":5.49,"words":1646},"filePathRelative":"zh/features/game-launcher.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-e2f690f0","path":"/zh/features/game-launcher.html","title":"高级启动器","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":1,"redirectFrom":"/features/game-launcher.html","description":"胡桃工具箱提供的高级启动器功能中通过多样的设置选项来允许用户以自定义设置启动游戏; 你可以通过点击左侧菜单栏中的启动游戏进入高级启动器功能; 第一次使用时你会被跳转到设置页面以设置你的游戏路径; 选择游戏路径时,请注意此处选择的应是游戏本身; 形如:$\\\\Genshin Impact\\\\Genshin Impact Game\\\\YuanShen.exe; 而...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/game-launcher.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/game-launcher.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"高级启动器"}],["meta",{"property":"og:description","content":"胡桃工具箱提供的高级启动器功能中通过多样的设置选项来允许用户以自定义设置启动游戏; 你可以通过点击左侧菜单栏中的启动游戏进入高级启动器功能; 第一次使用时你会被跳转到设置页面以设置你的游戏路径; 选择游戏路径时,请注意此处选择的应是游戏本身; 形如:$\\\\Genshin Impact\\\\Genshin Impact Game\\\\YuanShen.exe; 而..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"高级启动器\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"视频指南","slug":"视频指南","link":"#视频指南","children":[]},{"level":2,"title":"切换服务器","slug":"切换服务器","link":"#切换服务器","children":[]},{"level":2,"title":"账号保存","slug":"账号保存","link":"#账号保存","children":[]},{"level":2,"title":"外观选项","slug":"外观选项","link":"#外观选项","children":[]},{"level":2,"title":"高级功能","slug":"高级功能","link":"#高级功能","children":[{"level":3,"title":"解锁帧率上限","slug":"解锁帧率上限","link":"#解锁帧率上限","children":[]},{"level":3,"title":"游戏客户端多开","slug":"游戏客户端多开","link":"#游戏客户端多开","children":[]}]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":5.49,"words":1646},"filePathRelative":"zh/features/game-launcher.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-6892c29a","path":"/zh/advanced/get-stoken-cookie-from-the-third-party.html","title":"使用第三方工具获取有 Stoken 的 cookie","lang":"zh-CN","frontmatter":{"category":["FAQ","第三方工具"],"icon":"read","order":6,"redirectFrom":"/advanced/get-stoken-cookie-from-the-third-party.html","description":"以下步骤中涉及的软件、开源项目等资源均来源于互联网,与 DGP-Studio 无关; 本说明文档仅提供有关的解决思路,仅供学习使用,具体操作与操作后果与本项目无关; Android Android 用户可以使用开源项目 GetToken 来获取包含 Stoken 字段的 cookie GetToken 开源项目 GitHub:HolographicHa...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/advanced/get-stoken-cookie-from-the-third-party.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/advanced/get-stoken-cookie-from-the-third-party.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"使用第三方工具获取有 Stoken 的 cookie"}],["meta",{"property":"og:description","content":"以下步骤中涉及的软件、开源项目等资源均来源于互联网,与 DGP-Studio 无关; 本说明文档仅提供有关的解决思路,仅供学习使用,具体操作与操作后果与本项目无关; Android Android 用户可以使用开源项目 GetToken 来获取包含 Stoken 字段的 cookie GetToken 开源项目 GitHub:HolographicHa..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"使用第三方工具获取有 Stoken 的 cookie\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"Android","slug":"android","link":"#android","children":[]},{"level":2,"title":"iOS","slug":"ios","link":"#ios","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":1.63,"words":489},"filePathRelative":"zh/advanced/get-stoken-cookie-from-the-third-party.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
const t=JSON.parse('{"key":"v-6892c29a","path":"/zh/advanced/get-stoken-cookie-from-the-third-party.html","title":"使用第三方工具获取有 Stoken 的 cookie","lang":"zh-CN","frontmatter":{"category":["FAQ","第三方工具"],"icon":"read","order":6,"redirectFrom":"/advanced/get-stoken-cookie-from-the-third-party.html","description":"以下步骤中涉及的软件、开源项目等资源均来源于互联网,与 DGP-Studio 无关; 本说明文档仅提供有关的解决思路,仅供学习使用,具体操作与操作后果与本项目无关; Android Android 用户可以使用开源项目 GetToken 来获取包含 Stoken 字段的 cookie GetToken 开源项目 GitHub:HolographicHa...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/advanced/get-stoken-cookie-from-the-third-party.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/advanced/get-stoken-cookie-from-the-third-party.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"使用第三方工具获取有 Stoken 的 cookie"}],["meta",{"property":"og:description","content":"以下步骤中涉及的软件、开源项目等资源均来源于互联网,与 DGP-Studio 无关; 本说明文档仅提供有关的解决思路,仅供学习使用,具体操作与操作后果与本项目无关; Android Android 用户可以使用开源项目 GetToken 来获取包含 Stoken 字段的 cookie GetToken 开源项目 GitHub:HolographicHa..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"使用第三方工具获取有 Stoken 的 cookie\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"Android","slug":"android","link":"#android","children":[]},{"level":2,"title":"iOS","slug":"ios","link":"#ios","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":1.63,"words":489},"filePathRelative":"zh/advanced/get-stoken-cookie-from-the-third-party.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-bd668802","path":"/en/advanced/get-stoken-cookie-from-the-third-party.html","title":"使用第三方工具获取有 Stoken 的 cookie","lang":"en-US","frontmatter":{"category":["FAQ","第三方工具"],"icon":"read","order":6,"description":"以下步骤中涉及的软件、开源项目等资源均来源于互联网,与 DGP-Studio 无关; 本说明文档仅提供有关的解决思路,仅供学习使用,具体操作与操作后果与本项目无关; Android Android 用户可以使用开源项目 GetToken 来获取包含 Stoken 字段的 cookie GetToken 开源项目 GitHub:HolographicHa...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/advanced/get-stoken-cookie-from-the-third-party.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/advanced/get-stoken-cookie-from-the-third-party.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"使用第三方工具获取有 Stoken 的 cookie"}],["meta",{"property":"og:description","content":"以下步骤中涉及的软件、开源项目等资源均来源于互联网,与 DGP-Studio 无关; 本说明文档仅提供有关的解决思路,仅供学习使用,具体操作与操作后果与本项目无关; Android Android 用户可以使用开源项目 GetToken 来获取包含 Stoken 字段的 cookie GetToken 开源项目 GitHub:HolographicHa..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"使用第三方工具获取有 Stoken 的 cookie\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"Android","slug":"android","link":"#android","children":[]},{"level":2,"title":"iOS","slug":"ios","link":"#ios","children":[]}],"git":{"createdTime":1679108739000,"updatedTime":1679108739000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":1.6,"words":481},"filePathRelative":"en/advanced/get-stoken-cookie-from-the-third-party.md","localizedDate":"March 18, 2023","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-bd668802","path":"/en/advanced/get-stoken-cookie-from-the-third-party.html","title":"使用第三方工具获取有 Stoken 的 cookie","lang":"en-US","frontmatter":{"category":["FAQ","第三方工具"],"icon":"read","order":6,"description":"以下步骤中涉及的软件、开源项目等资源均来源于互联网,与 DGP-Studio 无关; 本说明文档仅提供有关的解决思路,仅供学习使用,具体操作与操作后果与本项目无关; Android Android 用户可以使用开源项目 GetToken 来获取包含 Stoken 字段的 cookie GetToken 开源项目 GitHub:HolographicHa...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/advanced/get-stoken-cookie-from-the-third-party.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/advanced/get-stoken-cookie-from-the-third-party.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"使用第三方工具获取有 Stoken 的 cookie"}],["meta",{"property":"og:description","content":"以下步骤中涉及的软件、开源项目等资源均来源于互联网,与 DGP-Studio 无关; 本说明文档仅提供有关的解决思路,仅供学习使用,具体操作与操作后果与本项目无关; Android Android 用户可以使用开源项目 GetToken 来获取包含 Stoken 字段的 cookie GetToken 开源项目 GitHub:HolographicHa..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"使用第三方工具获取有 Stoken 的 cookie\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"Android","slug":"android","link":"#android","children":[]},{"level":2,"title":"iOS","slug":"ios","link":"#ios","children":[]}],"git":{"createdTime":1679108739000,"updatedTime":1679108739000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":1.6,"words":481},"filePathRelative":"en/advanced/get-stoken-cookie-from-the-third-party.md","localizedDate":"March 18, 2023","autoDesc":true}');export{e as data};
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-0eb8e461","path":"/zh/features/hutao-API.html","title":"胡桃数据库/深渊统计","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":6,"redirectFrom":"/features/hutao-API.html","description":"胡桃工具箱提供两个主要的深境螺旋挑战统计的功能 侧栏中的深渊统计是一个旨在通过统计并展示广大玩家深境螺旋挑战数据,来帮助对原神对战系统不熟悉玩家组建队伍、通关深渊、获取奖励的功能; 侧栏中的深渊记录是一个通过保存玩家每一期深境螺旋挑战数据来帮助个人玩家回顾游戏经历及个人数据收集的统计功能; 众多的玩家通过上传个人的深渊记录来形成胡桃数据库的深渊统计数据...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/hutao-API.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/hutao-API.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"胡桃数据库/深渊统计"}],["meta",{"property":"og:description","content":"胡桃工具箱提供两个主要的深境螺旋挑战统计的功能 侧栏中的深渊统计是一个旨在通过统计并展示广大玩家深境螺旋挑战数据,来帮助对原神对战系统不熟悉玩家组建队伍、通关深渊、获取奖励的功能; 侧栏中的深渊记录是一个通过保存玩家每一期深境螺旋挑战数据来帮助个人玩家回顾游戏经历及个人数据收集的统计功能; 众多的玩家通过上传个人的深渊记录来形成胡桃数据库的深渊统计数据..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"胡桃数据库/深渊统计\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"查看深渊数据","slug":"查看深渊数据","link":"#查看深渊数据","children":[]},{"level":2,"title":"上传深境螺旋数据","slug":"上传深境螺旋数据","link":"#上传深境螺旋数据","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":2.7,"words":811},"filePathRelative":"zh/features/hutao-API.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
const t=JSON.parse('{"key":"v-0eb8e461","path":"/zh/features/hutao-API.html","title":"胡桃数据库/深渊统计","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":6,"redirectFrom":"/features/hutao-API.html","description":"胡桃工具箱提供两个主要的深境螺旋挑战统计的功能 侧栏中的深渊统计是一个旨在通过统计并展示广大玩家深境螺旋挑战数据,来帮助对原神对战系统不熟悉玩家组建队伍、通关深渊、获取奖励的功能; 侧栏中的深渊记录是一个通过保存玩家每一期深境螺旋挑战数据来帮助个人玩家回顾游戏经历及个人数据收集的统计功能; 众多的玩家通过上传个人的深渊记录来形成胡桃数据库的深渊统计数据...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/hutao-API.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/hutao-API.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"胡桃数据库/深渊统计"}],["meta",{"property":"og:description","content":"胡桃工具箱提供两个主要的深境螺旋挑战统计的功能 侧栏中的深渊统计是一个旨在通过统计并展示广大玩家深境螺旋挑战数据,来帮助对原神对战系统不熟悉玩家组建队伍、通关深渊、获取奖励的功能; 侧栏中的深渊记录是一个通过保存玩家每一期深境螺旋挑战数据来帮助个人玩家回顾游戏经历及个人数据收集的统计功能; 众多的玩家通过上传个人的深渊记录来形成胡桃数据库的深渊统计数据..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"胡桃数据库/深渊统计\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"查看深渊数据","slug":"查看深渊数据","link":"#查看深渊数据","children":[]},{"level":2,"title":"上传深境螺旋数据","slug":"上传深境螺旋数据","link":"#上传深境螺旋数据","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":2.7,"words":811},"filePathRelative":"zh/features/hutao-API.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-0106e0dc","path":"/en/features/hutao-API.html","title":"胡桃数据库/深渊统计","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":6,"description":"胡桃工具箱提供两个主要的深境螺旋挑战统计的功能 侧栏中的深渊统计是一个旨在通过统计并展示广大玩家深境螺旋挑战数据,来帮助对原神对战系统不熟悉玩家组建队伍、通关深渊、获取奖励的功能; 侧栏中的深渊记录是一个通过保存玩家每一期深境螺旋挑战数据来帮助个人玩家回顾游戏经历及个人数据收集的统计功能; 众多的玩家通过上传个人的深渊记录来形成胡桃数据库的深渊统计数据...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/hutao-API.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/hutao-API.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"胡桃数据库/深渊统计"}],["meta",{"property":"og:description","content":"胡桃工具箱提供两个主要的深境螺旋挑战统计的功能 侧栏中的深渊统计是一个旨在通过统计并展示广大玩家深境螺旋挑战数据,来帮助对原神对战系统不熟悉玩家组建队伍、通关深渊、获取奖励的功能; 侧栏中的深渊记录是一个通过保存玩家每一期深境螺旋挑战数据来帮助个人玩家回顾游戏经历及个人数据收集的统计功能; 众多的玩家通过上传个人的深渊记录来形成胡桃数据库的深渊统计数据..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:27.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:27.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"胡桃数据库/深渊统计\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:27.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"查看深渊数据","slug":"查看深渊数据","link":"#查看深渊数据","children":[]},{"level":2,"title":"上传深境螺旋数据","slug":"上传深境螺旋数据","link":"#上传深境螺旋数据","children":[]}],"git":{"createdTime":1673484663000,"updatedTime":1679108727000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":2.69,"words":808},"filePathRelative":"en/features/hutao-API.md","localizedDate":"January 12, 2023","autoDesc":true}');export{e as data};
|
||||
const t=JSON.parse('{"key":"v-0106e0dc","path":"/en/features/hutao-API.html","title":"胡桃数据库/深渊统计","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":6,"description":"胡桃工具箱提供两个主要的深境螺旋挑战统计的功能 侧栏中的深渊统计是一个旨在通过统计并展示广大玩家深境螺旋挑战数据,来帮助对原神对战系统不熟悉玩家组建队伍、通关深渊、获取奖励的功能; 侧栏中的深渊记录是一个通过保存玩家每一期深境螺旋挑战数据来帮助个人玩家回顾游戏经历及个人数据收集的统计功能; 众多的玩家通过上传个人的深渊记录来形成胡桃数据库的深渊统计数据...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/hutao-API.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/hutao-API.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"胡桃数据库/深渊统计"}],["meta",{"property":"og:description","content":"胡桃工具箱提供两个主要的深境螺旋挑战统计的功能 侧栏中的深渊统计是一个旨在通过统计并展示广大玩家深境螺旋挑战数据,来帮助对原神对战系统不熟悉玩家组建队伍、通关深渊、获取奖励的功能; 侧栏中的深渊记录是一个通过保存玩家每一期深境螺旋挑战数据来帮助个人玩家回顾游戏经历及个人数据收集的统计功能; 众多的玩家通过上传个人的深渊记录来形成胡桃数据库的深渊统计数据..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:27.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:27.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"胡桃数据库/深渊统计\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:27.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"查看深渊数据","slug":"查看深渊数据","link":"#查看深渊数据","children":[]},{"level":2,"title":"上传深境螺旋数据","slug":"上传深境螺旋数据","link":"#上传深境螺旋数据","children":[]}],"git":{"createdTime":1673484663000,"updatedTime":1679108727000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":2.69,"words":808},"filePathRelative":"en/features/hutao-API.md","localizedDate":"January 12, 2023","autoDesc":true}');export{t as data};
|
||||
@@ -1 +1 @@
|
||||
const t=JSON.parse('{"key":"v-16a7a694","path":"/zh/features/hutao-settings.html","title":"软件设置","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":11,"redirectFrom":"/features/hutao-settings.html","description":"以下内容将以胡桃工具箱内的设置功能的条目排列顺序为介绍顺序; 关于 胡桃 胡桃工具箱的图标:您可以在胡桃的首页 (/)查看它的原图; 该图像作品的作者为画画的芦苇 (https://space.bilibili.com/274422134)图标的绘制过程; DGP-Studio (https://github.com/DGP-Studio)已被所有者授...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/hutao-settings.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/hutao-settings.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"软件设置"}],["meta",{"property":"og:description","content":"以下内容将以胡桃工具箱内的设置功能的条目排列顺序为介绍顺序; 关于 胡桃 胡桃工具箱的图标:您可以在胡桃的首页 (/)查看它的原图; 该图像作品的作者为画画的芦苇 (https://space.bilibili.com/274422134)图标的绘制过程; DGP-Studio (https://github.com/DGP-Studio)已被所有者授..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"软件设置\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"关于 胡桃","slug":"关于-胡桃","link":"#关于-胡桃","children":[]},{"level":2,"title":"外观","slug":"外观","link":"#外观","children":[]},{"level":2,"title":"祈愿记录","slug":"祈愿记录","link":"#祈愿记录","children":[]},{"level":2,"title":"游戏","slug":"游戏","link":"#游戏","children":[]},{"level":2,"title":"储存空间","slug":"储存空间","link":"#储存空间","children":[{"level":3,"title":"米游社每日签到","slug":"米游社每日签到","link":"#米游社每日签到","children":[]}]},{"level":2,"title":"危险功能","slug":"危险功能","link":"#危险功能","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":2.72,"words":817},"filePathRelative":"zh/features/hutao-settings.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
const t=JSON.parse('{"key":"v-16a7a694","path":"/zh/features/hutao-settings.html","title":"软件设置","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":11,"redirectFrom":"/features/hutao-settings.html","description":"以下内容将以胡桃工具箱内的设置功能的条目排列顺序为介绍顺序; 关于 胡桃 胡桃工具箱的图标:您可以在胡桃的首页 (/)查看它的原图; 该图像作品的作者为画画的芦苇 (https://space.bilibili.com/274422134)图标的绘制过程; DGP-Studio (https://github.com/DGP-Studio)已被所有者授...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/hutao-settings.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/hutao-settings.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"软件设置"}],["meta",{"property":"og:description","content":"以下内容将以胡桃工具箱内的设置功能的条目排列顺序为介绍顺序; 关于 胡桃 胡桃工具箱的图标:您可以在胡桃的首页 (/)查看它的原图; 该图像作品的作者为画画的芦苇 (https://space.bilibili.com/274422134)图标的绘制过程; DGP-Studio (https://github.com/DGP-Studio)已被所有者授..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-04-01T00:44:30.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-04-01T00:44:30.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"软件设置\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-04-01T00:44:30.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"关于 胡桃","slug":"关于-胡桃","link":"#关于-胡桃","children":[]},{"level":2,"title":"胡桃帐号","slug":"胡桃帐号","link":"#胡桃帐号","children":[]},{"level":2,"title":"外观","slug":"外观","link":"#外观","children":[]},{"level":2,"title":"祈愿记录","slug":"祈愿记录","link":"#祈愿记录","children":[]},{"level":2,"title":"游戏","slug":"游戏","link":"#游戏","children":[]},{"level":2,"title":"储存空间","slug":"储存空间","link":"#储存空间","children":[{"level":3,"title":"米游社每日签到","slug":"米游社每日签到","link":"#米游社每日签到","children":[]}]},{"level":2,"title":"危险功能","slug":"危险功能","link":"#危险功能","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1680309870000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":3.1,"words":929},"filePathRelative":"zh/features/hutao-settings.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
1
assets/hutao-settings.html-8583647e.js
Normal file
1
assets/hutao-settings.html-8583647e.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
const t=JSON.parse('{"key":"v-639b3ef9","path":"/en/features/hutao-settings.html","title":"软件设置","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":11,"description":"以下内容将以胡桃工具箱内的设置功能的条目排列顺序为介绍顺序; 关于 胡桃 胡桃工具箱的图标:您可以在胡桃的首页 (https://hut.ao/)查看它的原图图标的绘制过程 ; 该图像作品的作者为LOFTER@夙夜 (https://dieqi32894.lofter.com/post/4b58ce16_2b6b2d365)并由DGP-Studio (...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/hutao-settings.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/hutao-settings.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"软件设置"}],["meta",{"property":"og:description","content":"以下内容将以胡桃工具箱内的设置功能的条目排列顺序为介绍顺序; 关于 胡桃 胡桃工具箱的图标:您可以在胡桃的首页 (https://hut.ao/)查看它的原图图标的绘制过程 ; 该图像作品的作者为LOFTER@夙夜 (https://dieqi32894.lofter.com/post/4b58ce16_2b6b2d365)并由DGP-Studio (..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:28.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:28.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"软件设置\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:28.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"关于 胡桃","slug":"关于-胡桃","link":"#关于-胡桃","children":[]},{"level":2,"title":"外观","slug":"外观","link":"#外观","children":[]},{"level":2,"title":"祈愿记录","slug":"祈愿记录","link":"#祈愿记录","children":[]},{"level":2,"title":"游戏","slug":"游戏","link":"#游戏","children":[]},{"level":2,"title":"储存空间","slug":"储存空间","link":"#储存空间","children":[{"level":3,"title":"米游社每日签到","slug":"米游社每日签到","link":"#米游社每日签到","children":[]}]},{"level":2,"title":"危险功能","slug":"危险功能","link":"#危险功能","children":[]}],"git":{"createdTime":1673484663000,"updatedTime":1679108728000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":2.77,"words":831},"filePathRelative":"en/features/hutao-settings.md","localizedDate":"January 12, 2023","autoDesc":true}');export{t as data};
|
||||
const t=JSON.parse('{"key":"v-639b3ef9","path":"/en/features/hutao-settings.html","title":"软件设置","lang":"en-US","frontmatter":{"headerDepth":0,"category":["功能","教程"],"order":11,"description":"以下内容将以胡桃工具箱内的设置功能的条目排列顺序为介绍顺序; 关于 胡桃 胡桃工具箱的图标:您可以在胡桃的首页 (https://hut.ao/)查看它的原图图标的绘制过程 ; 该图像作品的作者为LOFTER@夙夜 (https://dieqi32894.lofter.com/post/4b58ce16_2b6b2d365)并由DGP-Studio (...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/hutao-settings.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/hutao-settings.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"软件设置"}],["meta",{"property":"og:description","content":"以下内容将以胡桃工具箱内的设置功能的条目排列顺序为介绍顺序; 关于 胡桃 胡桃工具箱的图标:您可以在胡桃的首页 (https://hut.ao/)查看它的原图图标的绘制过程 ; 该图像作品的作者为LOFTER@夙夜 (https://dieqi32894.lofter.com/post/4b58ce16_2b6b2d365)并由DGP-Studio (..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:28.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:28.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"软件设置\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:28.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"关于 胡桃","slug":"关于-胡桃","link":"#关于-胡桃","children":[]},{"level":2,"title":"外观","slug":"外观","link":"#外观","children":[]},{"level":2,"title":"祈愿记录","slug":"祈愿记录","link":"#祈愿记录","children":[]},{"level":2,"title":"游戏","slug":"游戏","link":"#游戏","children":[]},{"level":2,"title":"储存空间","slug":"储存空间","link":"#储存空间","children":[{"level":3,"title":"米游社每日签到","slug":"米游社每日签到","link":"#米游社每日签到","children":[]}]},{"level":2,"title":"危险功能","slug":"危险功能","link":"#危险功能","children":[]}],"git":{"createdTime":1673484663000,"updatedTime":1679108728000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":2.77,"words":831},"filePathRelative":"en/features/hutao-settings.md","localizedDate":"January 12, 2023","autoDesc":true}');export{t as data};
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
const t=JSON.parse('{"key":"v-27c4e153","path":"/zh/i18n.html","title":"国际化支持","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["公告"],"redirectFrom":"/i18n.html","description":"国际化进度 Snap Hutao 虽然基于原神国服提供功能,但项目也有意提升国际化支持,包括语言本土化和功能国际化。目前国际化进度如下: Snap Hutao 主项目; [x] 语言本土化技术框架; [ ] 客户端翻译; 进度:!Crowdin (https://badges.crowdin.net/snap-hutao/localized.svg);...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/i18n.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/i18n.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"国际化支持"}],["meta",{"property":"og:description","content":"国际化进度 Snap Hutao 虽然基于原神国服提供功能,但项目也有意提升国际化支持,包括语言本土化和功能国际化。目前国际化进度如下: Snap Hutao 主项目; [x] 语言本土化技术框架; [ ] 客户端翻译; 进度:!Crowdin (https://badges.crowdin.net/snap-hutao/localized.svg);..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"国际化支持\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"国际化进度","slug":"国际化进度","link":"#国际化进度","children":[]},{"level":2,"title":"参与国际化","slug":"参与国际化","link":"#参与国际化","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":1.17,"words":350},"filePathRelative":"zh/i18n.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
const t=JSON.parse('{"key":"v-27c4e153","path":"/zh/i18n.html","title":"国际化支持","lang":"zh-CN","frontmatter":{"headerDepth":0,"category":["公告"],"redirectFrom":"/i18n.html","description":"国际化进度 Snap Hutao 虽然基于原神国服提供功能,但项目也有意提升国际化支持,包括语言本土化和功能国际化。目前国际化进度如下: Snap Hutao 主项目; [x] 语言本土化技术框架; [ ] 客户端翻译; 进度:!Crowdin (https://badges.crowdin.net/snap-hutao/localized.svg);...","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/i18n.html"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/i18n.html"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"国际化支持"}],["meta",{"property":"og:description","content":"国际化进度 Snap Hutao 虽然基于原神国服提供功能,但项目也有意提升国际化支持,包括语言本土化和功能国际化。目前国际化进度如下: Snap Hutao 主项目; [x] 语言本土化技术框架; [ ] 客户端翻译; 进度:!Crowdin (https://badges.crowdin.net/snap-hutao/localized.svg);..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-04-01T00:44:30.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-04-01T00:44:30.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"国际化支持\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-04-01T00:44:30.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"国际化进度","slug":"国际化进度","link":"#国际化进度","children":[]},{"level":2,"title":"参与国际化","slug":"参与国际化","link":"#参与国际化","children":[]}],"git":{"createdTime":1679366029000,"updatedTime":1680309870000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":3}]},"readingTime":{"minutes":1.18,"words":353},"filePathRelative":"zh/i18n.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
1
assets/i18n.html-664a6213.js
Normal file
1
assets/i18n.html-664a6213.js
Normal file
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-038e810e","path":"/en/i18n.html","title":"Localization","lang":"en-US","frontmatter":{"description":"Localization Process Snap Hutao Project features were originally based on the China server, but we are also trying to expand the coverage globally through the support of the MiH...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/i18n.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/i18n.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"Localization"}],["meta",{"property":"og:description","content":"Localization Process Snap Hutao Project features were originally based on the China server, but we are also trying to expand the coverage globally through the support of the MiH..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:17.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:17.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"Localization\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:17.000Z\\",\\"author\\":[]}"]]},"headers":[{"level":2,"title":"Localization Process","slug":"localization-process","link":"#localization-process","children":[]},{"level":2,"title":"Engage our Localization","slug":"engage-our-localization","link":"#engage-our-localization","children":[]}],"git":{"createdTime":1679108717000,"updatedTime":1679108717000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":0.63,"words":188},"filePathRelative":"en/i18n.md","localizedDate":"March 18, 2023","autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-038e810e","path":"/en/i18n.html","title":"Localization","lang":"en-US","frontmatter":{"description":"Localization Process Snap Hutao Project features were originally based on the China server, but we are also trying to expand the coverage globally through the support of the MiH...","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/i18n.html"}],["meta",{"property":"og:url","content":"https://hut.ao/en/i18n.html"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"Localization"}],["meta",{"property":"og:description","content":"Localization Process Snap Hutao Project features were originally based on the China server, but we are also trying to expand the coverage globally through the support of the MiH..."}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:17.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:17.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"Localization\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:17.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[{"level":2,"title":"Localization Process","slug":"localization-process","link":"#localization-process","children":[]},{"level":2,"title":"Engage our Localization","slug":"engage-our-localization","link":"#engage-our-localization","children":[]}],"git":{"createdTime":1679108717000,"updatedTime":1679108717000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":0.63,"words":188},"filePathRelative":"en/i18n.md","localizedDate":"March 18, 2023","autoDesc":true}');export{e as data};
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
const t=JSON.parse('{"key":"v-c4bb0cba","path":"/zh/statements/","title":"声明和公告","lang":"zh-CN","frontmatter":{"headerDepth":0,"comment":false,"index":false,"redirectFrom":"/statements/","description":"","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/statements/"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/statements/"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"声明和公告"}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"声明和公告\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":0.05,"words":15},"filePathRelative":"zh/statements/README.md","localizedDate":"2023年3月21日","autoDesc":true}');export{t as data};
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
const e=JSON.parse('{"key":"v-8daa1a0e","path":"/","title":"","lang":"en-US","frontmatter":{"title":"","article":false,"feed":false,"sitemap":false,"description":"","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/"}],["meta",{"property":"og:url","content":"https://hut.ao/"}],["meta",{"property":"og:type","content":"website"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"WebPage\\",\\"name\\":\\"\\"}"]]},"headers":[],"git":{},"readingTime":{"minutes":0.03,"words":10},"filePathRelative":null,"autoDesc":true}');export{e as data};
|
||||
const e=JSON.parse('{"key":"v-8daa1a0e","path":"/","title":"","lang":"en-US","frontmatter":{"title":"","article":false,"feed":false,"sitemap":false,"description":"","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/"}],["meta",{"property":"og:url","content":"https://hut.ao/"}],["meta",{"property":"og:type","content":"website"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"WebPage\\",\\"name\\":\\"\\"}"]]},"headers":[],"git":{},"readingTime":{"minutes":0.03,"words":10},"filePathRelative":null,"autoDesc":true}');export{e as data};
|
||||
1
assets/index.html-5ea4fd1f.js
Normal file
1
assets/index.html-5ea4fd1f.js
Normal file
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
import{_ as n,X as r,Y as i,Z as t,$ as e,a0 as a,a1 as s,C as l}from"./framework-caa722f8.js";const c={},u=t("h2",{id:"contribute",tabindex:"-1"},[t("a",{class:"header-anchor",href:"#contribute","aria-hidden":"true"},"#"),e(" Contribute")],-1),d=t("p",null,"Snap Hutao is a free software maintained by open-source community, and we hope more players with same ambitions can join together to provide more features to the community.",-1),h=t("p",null,"You can make contribution by the following ways:",-1),p={href:"https://github.com/DGP-Studio/Snap.Hutao/pulls",target:"_blank",rel:"noopener noreferrer"},m={href:"https://translate.hut.ao/",target:"_blank",rel:"noopener noreferrer"},g={href:"https://translate-docs.hut.ao/",target:"_blank",rel:"noopener noreferrer"},_={href:"https://github.com/DGP-Studio/Snap.Hutao.Docs",target:"_blank",rel:"noopener noreferrer"},f=t("p",null,[t("strong",null,"If you believe Snap Hutao is a good project and helps you, you can support us by the following ways")],-1),b={href:"https://github.com/DGP-Studio/Snap.Hutao",target:"_blank",rel:"noopener noreferrer"},y=t("img",{src:"https://img.shields.io/github/stars/DGP-Studio/Snap.Hutao?style=plastic&color=red",alt:"hutao.stars",loading:"lazy"},null,-1),w={href:"https://github.com/DGP-Studio/Snap.Hutao.Docs",target:"_blank",rel:"noopener noreferrer"},S=t("img",{src:"https://img.shields.io/github/stars/DGP-Studio/Snap.Hutao.Docs?style=plastic&color=red",alt:"hutao.docs.stars",loading:"lazy"},null,-1),H=t("li",null,[e("Rate our App on "),t("a",{href:"ms-windows-store://review/?ProductId=9PH4NXJ2JN52"},"Microsoft Store")],-1),k=t("li",null,"Promote our project in your network",-1),v=s('<p><img src="https://img.shields.io/github/commit-activity/y/DGP-Studio/Snap.Hutao?style=for-the-badge" alt="commit_activity" loading="lazy"> <img src="https://img.shields.io/github/last-commit/DGP-Studio/Snap.Hutao?label=Hutao Last Commit&style=for-the-badge" alt="hutao-last-commit" loading="lazy"></p><h2 id="service-used" tabindex="-1"><a class="header-anchor" href="#service-used" aria-hidden="true">#</a> Service Used</h2><p>Snap Hutao is currently using software from the following service providers.</p><p><a href="https://www.netlify.com"><img src="https://www.netlify.com/v3/img/components/netlify-light.svg" alt="Deploys by Netlify"></a><a href="https://crowdin.com/?utm_source=badge&utm_medium=referral&utm_campaign=badge-add-on" rel="nofollow"><img style="width:140;height:40px;" src="https://badges.crowdin.net/badge/light/crowdin-on-dark.png" srcset="https://badges.crowdin.net/badge/light/crowdin-on-dark.png 1x, https://badges.crowdin.net/badge/light/crowdin-on-dark@2x.png 2x" alt="Crowdin | Agile localization for tech companies"></a></p>',4);function x(D,P){const o=l("ExternalLinkIcon");return r(),i("div",null,[u,d,h,t("ol",null,[t("li",null,[t("a",p,[e("Make Pull Requests to our code"),a(o)])]),t("li",null,[e("Improve localization by translating the project on Crowdin "),t("ol",null,[t("li",null,[t("a",m,[e("Snap Hutao"),a(o)])]),t("li",null,[t("a",g,[e("Snap Hutao Document"),a(o)])])])]),t("li",null,[t("a",_,[e("Update document"),a(o)])])]),f,t("ul",null,[t("li",null,[e("Star our project on GitHub ⭐ "),t("ul",null,[t("li",null,[t("a",b,[e("Snap.Hutao"),a(o)]),e(),y]),t("li",null,[t("a",w,[e("Snap.Hutao.Docs"),a(o)]),e(),S])])]),H,k]),v])}const N=n(c,[["render",x],["__file","index.html.vue"]]);export{N as default};
|
||||
@@ -1 +0,0 @@
|
||||
const e=JSON.parse('{"key":"v-0bbe1b6a","path":"/zh/features/","title":"功能指南","lang":"zh-CN","frontmatter":{"headerDepth":0,"comment":false,"index":false,"redirectFrom":"/features/","description":"","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"功能指南"}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"功能指南\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":0.05,"words":14},"filePathRelative":"zh/features/README.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
1
assets/index.html-952217e3.js
Normal file
1
assets/index.html-952217e3.js
Normal file
@@ -0,0 +1 @@
|
||||
const e=JSON.parse('{"key":"v-0bbe1b6a","path":"/zh/features/","title":"功能指南","lang":"zh-CN","frontmatter":{"headerDepth":0,"comment":false,"index":false,"redirectFrom":"/features/","description":"","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/features/"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/features/"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"功能指南"}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"功能指南\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":0.05,"words":14},"filePathRelative":"zh/features/README.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
1
assets/index.html-99d97bf7.js
Normal file
1
assets/index.html-99d97bf7.js
Normal file
@@ -0,0 +1 @@
|
||||
import{_ as a,X as r,Y as l,Z as e,$ as t,a0 as o,a1 as s,C as i}from"./framework-caa722f8.js";const d={},c=e("h2",{id:"贡献",tabindex:"-1"},[e("a",{class:"header-anchor",href:"#贡献","aria-hidden":"true"},"#"),t(" 贡献")],-1),h=e("p",null,"Snap Hutao 是一个由开源社区维护的免费项目,我们希望有更多志同道合的开发者能参与到项目中,为 Snap Hutao 带来更多的功能。",-1),p=e("p",null,"你可以通过以下方法为项目作出贡献:",-1),_={href:"https://github.com/DGP-Studio/Snap.Hutao/pulls",target:"_blank",rel:"noopener noreferrer"},u={href:"https://translate.hut.ao/",target:"_blank",rel:"noopener noreferrer"},g={href:"https://translate-docs.hut.ao/",target:"_blank",rel:"noopener noreferrer"},f={href:"https://github.com/DGP-Studio/Snap.Hutao.Docs",target:"_blank",rel:"noopener noreferrer"},m={href:"http://star-request.md",target:"_blank",rel:"noopener noreferrer"},b=s('<h2 id="平台" tabindex="-1"><a class="header-anchor" href="#平台" aria-hidden="true">#</a> 平台</h2><p>Snap Hutao 目前使用了以下软件厂商提供的服务</p><p><a href="https://www.netlify.com"><img src="https://www.netlify.com/v3/img/components/netlify-light.svg" alt="Deploys by Netlify"></a><a href="https://crowdin.com/?utm_source=badge&utm_medium=referral&utm_campaign=badge-add-on" rel="nofollow"><img style="width:140;height:40px;" src="https://badges.crowdin.net/badge/light/crowdin-on-dark.png" srcset="https://badges.crowdin.net/badge/light/crowdin-on-dark.png 1x, https://badges.crowdin.net/badge/light/crowdin-on-dark@2x.png 2x" alt="Crowdin | Agile localization for tech companies"></a></p>',3);function w(x,k){const n=i("ExternalLinkIcon");return r(),l("div",null,[c,h,p,e("ol",null,[e("li",null,[e("a",_,[t("向我们提交 PR"),o(n)])]),e("li",null,[t("在 Crowdin 上进行本地化翻译 "),e("ol",null,[e("li",null,[e("a",u,[t("主项目"),o(n)])]),e("li",null,[e("a",g,[t("文档"),o(n)])])])]),e("li",null,[e("a",f,[t("为我们更新文档"),o(n)])])]),e("p",null,[t("@include("),e("a",m,[t("star-request.md"),o(n)]),t(")")]),b])}const y=a(d,[["render",w],["__file","index.html.vue"]]);export{y as default};
|
||||
@@ -1 +0,0 @@
|
||||
const e=JSON.parse('{"key":"v-5f449840","path":"/en/advanced/","title":"高级","lang":"en-US","frontmatter":{"comment":false,"index":false,"description":"","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/advanced/"}],["meta",{"property":"og:url","content":"https://hut.ao/en/advanced/"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"高级"}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:36.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:36.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"高级\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:36.000Z\\",\\"author\\":[]}"]]},"headers":[],"git":{"createdTime":1679108736000,"updatedTime":1679108736000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":0.03,"words":8},"filePathRelative":"en/advanced/README.md","localizedDate":"March 18, 2023","autoDesc":true}');export{e as data};
|
||||
1
assets/index.html-ad89f155.js
Normal file
1
assets/index.html-ad89f155.js
Normal file
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
const e=JSON.parse('{"key":"v-16d7d7b6","path":"/zh/advanced/","title":"高级","lang":"zh-CN","frontmatter":{"comment":false,"index":false,"redirectFrom":"/advanced/","description":"","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/advanced/"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/advanced/"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"高级"}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"高级\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[]}"]]},"headers":[],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":0.03,"words":10},"filePathRelative":"zh/advanced/README.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
1
assets/index.html-c0ce48ff.js
Normal file
1
assets/index.html-c0ce48ff.js
Normal file
@@ -0,0 +1 @@
|
||||
const e=JSON.parse('{"key":"v-5f449840","path":"/en/advanced/","title":"高级","lang":"en-US","frontmatter":{"comment":false,"index":false,"description":"","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/advanced/"}],["meta",{"property":"og:url","content":"https://hut.ao/en/advanced/"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"高级"}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:36.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:36.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"高级\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:36.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[],"git":{"createdTime":1679108736000,"updatedTime":1679108736000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":1}]},"readingTime":{"minutes":0.03,"words":8},"filePathRelative":"en/advanced/README.md","localizedDate":"March 18, 2023","autoDesc":true}');export{e as data};
|
||||
1
assets/index.html-c16a5239.js
Normal file
1
assets/index.html-c16a5239.js
Normal file
@@ -0,0 +1 @@
|
||||
const e=JSON.parse('{"key":"v-16d7d7b6","path":"/zh/advanced/","title":"高级","lang":"zh-CN","frontmatter":{"comment":false,"index":false,"redirectFrom":"/advanced/","description":"","head":[["link",{"rel":"alternate","hreflang":"en-us","href":"https://hut.ao/en/advanced/"}],["meta",{"property":"og:url","content":"https://hut.ao/zh/advanced/"}],["meta",{"property":"og:site_name","content":"胡桃工具箱"}],["meta",{"property":"og:title","content":"高级"}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"zh-CN"}],["meta",{"property":"og:locale:alternate","content":"en-US"}],["meta",{"property":"og:updated_time","content":"2023-03-26T04:27:39.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-26T04:27:39.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"高级\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-26T04:27:39.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[],"git":{"createdTime":1679366029000,"updatedTime":1679804859000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":2}]},"readingTime":{"minutes":0.03,"words":10},"filePathRelative":"zh/advanced/README.md","localizedDate":"2023年3月21日","autoDesc":true}');export{e as data};
|
||||
1
assets/index.html-c354a5e4.js
Normal file
1
assets/index.html-c354a5e4.js
Normal file
@@ -0,0 +1 @@
|
||||
const e=JSON.parse('{"key":"v-30f089b6","path":"/en/features/","title":"功能指南","lang":"en-US","frontmatter":{"headerDepth":0,"comment":false,"index":false,"description":"","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"功能指南"}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:22.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:22.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"功能指南\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:22.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[],"git":{"createdTime":1664419063000,"updatedTime":1679108722000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":5}]},"readingTime":{"minutes":0.04,"words":12},"filePathRelative":"en/features/README.md","localizedDate":"September 29, 2022","autoDesc":true}');export{e as data};
|
||||
@@ -1 +0,0 @@
|
||||
const t=JSON.parse('{"key":"v-a4f9d2c4","path":"/en/statements/","title":"Statements","lang":"en-US","frontmatter":{"headerDepth":0,"comment":"statements and Announcements","index":false,"description":"","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/statements/"}],["meta",{"property":"og:url","content":"https://hut.ao/en/statements/"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"Statements"}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T05:59:58.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T05:59:58.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"Statements\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T05:59:58.000Z\\",\\"author\\":[]}"]]},"headers":[],"git":{"createdTime":1664419063000,"updatedTime":1679119198000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":4}]},"readingTime":{"minutes":0.04,"words":11},"filePathRelative":"en/statements/README.md","localizedDate":"September 29, 2022","autoDesc":true}');export{t as data};
|
||||
1
assets/index.html-c41eac72.js
Normal file
1
assets/index.html-c41eac72.js
Normal file
@@ -0,0 +1 @@
|
||||
const t=JSON.parse('{"key":"v-a4f9d2c4","path":"/en/statements/","title":"Statements","lang":"en-US","frontmatter":{"headerDepth":0,"comment":"statements and Announcements","index":false,"description":"","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/statements/"}],["meta",{"property":"og:url","content":"https://hut.ao/en/statements/"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"Statements"}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T05:59:58.000Z"}],["meta",{"property":"article:author","content":"DGP-Studio"}],["meta",{"property":"article:modified_time","content":"2023-03-18T05:59:58.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"Statements\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T05:59:58.000Z\\",\\"author\\":[{\\"@type\\":\\"Person\\",\\"name\\":\\"DGP-Studio\\",\\"url\\":\\"https://github.com/DGP-Studio\\"}]}"]]},"headers":[],"git":{"createdTime":1664419063000,"updatedTime":1679119198000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":4}]},"readingTime":{"minutes":0.04,"words":11},"filePathRelative":"en/statements/README.md","localizedDate":"September 29, 2022","autoDesc":true}');export{t as data};
|
||||
@@ -1 +0,0 @@
|
||||
const e=JSON.parse('{"key":"v-30f089b6","path":"/en/features/","title":"功能指南","lang":"en-US","frontmatter":{"headerDepth":0,"comment":false,"index":false,"description":"","head":[["link",{"rel":"alternate","hreflang":"zh-cn","href":"https://hut.ao/zh/features/"}],["meta",{"property":"og:url","content":"https://hut.ao/en/features/"}],["meta",{"property":"og:site_name","content":"Snap Hutao"}],["meta",{"property":"og:title","content":"功能指南"}],["meta",{"property":"og:type","content":"article"}],["meta",{"property":"og:locale","content":"en-US"}],["meta",{"property":"og:locale:alternate","content":"zh-CN"}],["meta",{"property":"og:updated_time","content":"2023-03-18T03:05:22.000Z"}],["meta",{"property":"article:modified_time","content":"2023-03-18T03:05:22.000Z"}],["script",{"type":"application/ld+json"},"{\\"@context\\":\\"https://schema.org\\",\\"@type\\":\\"Article\\",\\"headline\\":\\"功能指南\\",\\"image\\":[\\"\\"],\\"dateModified\\":\\"2023-03-18T03:05:22.000Z\\",\\"author\\":[]}"]]},"headers":[],"git":{"createdTime":1664419063000,"updatedTime":1679108722000,"contributors":[{"name":"Masterain","email":"i@irain.in","commits":5}]},"readingTime":{"minutes":0.04,"words":12},"filePathRelative":"en/features/README.md","localizedDate":"September 29, 2022","autoDesc":true}');export{e as data};
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user