Skip to content

Commit f790b6f

Browse files
committed
test
1 parent 4660dfa commit f790b6f

File tree

19 files changed

+560
-1
lines changed

19 files changed

+560
-1
lines changed

.idea/codeStyles/Project.xml

Lines changed: 57 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/hmcl-docs.iml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/prettier.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_changelogs/stable/3.11/3.11.2.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
---
3+
4+
[详细版本介绍 (Bilibili)](https://www.bilibili.com/opus/1173336042553475112)
5+
6+
- 账户
7+
- GP-5610: 优化设备代码流登录流程 (by Glavo)
8+
- 错误修复
9+
- GP-5550: 修复安装整合包时任务弹窗可能空白的问题 (by 辞庐)
10+
- GP-5549: 修复微软登录报错的超链接显示 (by Xirren)
11+
- GP-5584: 修复打开登录微软对话框时加载指示器一闪而过的问题 (by 辞庐)
12+
- GP-5585, GP-5602: 修复下载源失效时刷新版本列表不会回退到备用下载源的问题 (by Glavo)
13+
- GP-5575: 修复无法使用授权代码流登录微软账户的问题 (by 辞庐)

_data/settings.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
appearance_color:
2+
type: radio
3+
default: light
4+
options:
5+
- light
6+
- dark
7+
- auto
8+
appearance_color_switcher:
9+
type: radio
10+
default: enable
11+
options:
12+
- enable
13+
- disable
14+
appearance_skin:
15+
type: multi-radio
16+
children:
17+
light:
18+
default: default
19+
dark:
20+
default: dark
21+
options:
22+
- default
23+
- air
24+
- aqua
25+
- contrast
26+
- dark
27+
- dirt
28+
- neon
29+
- mint
30+
- plum
31+
- sunrise

_layouts/default.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
layout: compress
3+
---
4+
5+
<!doctype html>
6+
{% include copyright.html %}
7+
<html lang="{{ site.locale | replace: "_", "-" | default: "en" }}" class="no-js">
8+
<head>
9+
{% include head.html %}
10+
{% include head/custom.html %}
11+
</head>
12+
13+
<body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}" dir="{% if site.rtl %}rtl{% else %}ltr{% endif %}">
14+
{% if site.preview and site.preview.pr-number %}
15+
<div class="notice--warning text-center preview">当前站点为预览构建而非官方文档。如需反馈问题,请前往 <a href="https://github.com/HMCL-dev/HMCL-docs/pull/{{ site.preview.pr-number }}">#{{ site.preview.pr-number }}</a> 留言。</div>
16+
{% endif %}
17+
18+
{% include_cached skip-links.html %}
19+
{% include_cached masthead.html %}
20+
21+
<div class="initial-content">
22+
{{ content }}
23+
{% include after-content.html %}
24+
</div>
25+
26+
{% if site.search == true %}
27+
<div class="search-content">
28+
{% include_cached search/search_form.html %}
29+
</div>
30+
{% endif %}
31+
32+
<div id="footer" class="page__footer">
33+
<footer>
34+
{% include footer/custom.html %}
35+
{% include_cached footer.html %}
36+
</footer>
37+
</div>
38+
39+
{% include scripts.html %}
40+
</body>
41+
</html>

0 commit comments

Comments
 (0)