Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Ikaros-521 authored Jun 13, 2024
2 parents d217150 + 43bf63a commit 27c0ea3
Show file tree
Hide file tree
Showing 285 changed files with 74,319 additions and 166,269 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Auto detect text files and perform LF normalization
data/text2vec_models filter=lfs diff=lfs merge=lfs -text
*.js linguist-language=Python
24 changes: 0 additions & 24 deletions .github/ISSUE_TEMPLATE/template-bug.md

This file was deleted.

67 changes: 67 additions & 0 deletions .github/ISSUE_TEMPLATE/template-bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: 🐛 Bug 反馈 | Bug Report
title: "🐛 Bug: 出现异常"
description: 提交 Bug 反馈以帮助我们改进代码
labels: ["bug"]
body:
- type: dropdown
id: env-os
attributes:
label: 操作系统
description: 选择运行 AI Vtuber 的操作系统
options:
- Windows
- MacOS
- Linux
- Other
validations:
required: true

- type: input
id: env-python-ver
attributes:
label: Python 版本
description: 填写运行 AI Vtuber 的 Python 版本
placeholder: e.g. 3.10.11
validations:
required: true

- type: input
id: env-nb-ver
attributes:
label: AI Vtuber 版本
description: 填写 AI Vtuber 版本(日期)
placeholder: e.g. 20240510
validations:
required: true

- type: textarea
id: describe
attributes:
label: 描述问题
description: 清晰简洁地说明问题是什么 https://lug.ustc.edu.cn/wiki/doc/smart-questions
validations:
required: true

- type: textarea
id: reproduction
attributes:
label: 复现步骤
description: 提供能复现此问题的详细操作步骤
placeholder: |
1. 首先……
2. 然后……
3. 发生……
validations:
required: true

- type: textarea
id: expected
attributes:
label: 期望的结果
description: 清晰简洁地描述你期望发生的事情

- type: textarea
id: logs
attributes:
label: 截图或日志
description: 提供有助于诊断问题的任何日志和截图
12 changes: 0 additions & 12 deletions .github/ISSUE_TEMPLATE/template-feature.md

This file was deleted.

20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/template-feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 🚀 功能建议 | Feature Request
title: "🚀 Feature: 功能描述"
description: 提出关于项目新功能的想法
labels: ["enhancement"]
body:
- type: textarea
id: problem
attributes:
label: 希望能解决的问题
description: 在使用中遇到什么问题而需要新的功能?
validations:
required: true

- type: textarea
id: feature
attributes:
label: 描述所需要的功能
description: 请说明需要的功能或解决方法
validations:
required: true
32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/template-question.md

This file was deleted.

67 changes: 67 additions & 0 deletions .github/ISSUE_TEMPLATE/template-question.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: 🙋 问题交流 | Question Report
title: "🙋 问题交流"
description: 搜索打开和关闭的 [GitHub 问题](https://github.com/eryajf/go-ldap-admin/issues) 请在提交问题之前回答这些问题,谢谢。 | Please answer these questions before submitting them. Thank you.
labels: ["question"]
body:
- type: dropdown
id: env-os
attributes:
label: 操作系统
description: 选择运行 AI Vtuber 的系统
options:
- Windows
- MacOS
- Linux
- Other
validations:
required: true

- type: input
id: env-python-ver
attributes:
label: Python 版本
description: 填写运行 AI Vtuber 的 Python 版本
placeholder: e.g. 3.10.11
validations:
required: true

- type: input
id: env-nb-ver
attributes:
label: AI Vtuber 版本
description: 填写 AI Vtuber 版本(日期)
placeholder: e.g. 20240510
validations:
required: true

- type: textarea
id: describe
attributes:
label: 描述问题
description: 清晰简洁地说明问题是什么 https://lug.ustc.edu.cn/wiki/doc/smart-questions
validations:
required: true

- type: textarea
id: reproduction
attributes:
label: 复现步骤
description: 提供能复现此问题的详细操作步骤
placeholder: |
1. 首先……
2. 然后……
3. 发生……
validations:
required: true

- type: textarea
id: expected
attributes:
label: 期望的结果
description: 清晰简洁地描述你期望发生的事情

- type: textarea
id: logs
attributes:
label: 截图或日志
description: 提供有助于诊断问题的任何日志和截图
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -231,4 +231,10 @@ out/copy*/*.wav

tests/test_faster_whisper/*.wav

out/图像识别/*.png
out/图像识别/*.png

main copy.py

data/*.db

locales
Empty file removed .nojekyll
Empty file.
10 changes: 9 additions & 1 deletion 1.双击我启动程序.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
@echo off
Miniconda3\python.exe webui.py

SET CONDA_PATH=.\Miniconda3

REM 激活base环境
CALL %CONDA_PATH%\Scripts\activate.bat %CONDA_PATH%

SET KMP_DUPLICATE_LIB_OK=TRUE

python webui.py

cmd /k
16 changes: 16 additions & 0 deletions 2-1.强制更新至主线版本(得先安装git).bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@echo off
chcp 65001
where git > nul 2>&1
if %errorlevel% neq 0 (
echo Git 命令没找到,请先安装git客户端.
pause
exit /b
)

echo 先执行一个备份脚本,免得你配置丢失了捏
Miniconda3\python.exe bak_config_data.py

git fetch --all
git reset --hard origin/main
echo 拉取完毕(如果没报错的话).
pause
Binary file removed Live2D/live2d-model/Mao/Mao.2048/texture_00.png
Binary file not shown.
Loading

0 comments on commit 27c0ea3

Please sign in to comment.