update doc

pull/79/head
butaixianran 2023-03-29 19:20:50 +08:00
parent d73c03e33d
commit 5ddeb151f8
4 changed files with 11 additions and 5 deletions

View File

@ -37,6 +37,9 @@ Stable Diffusion Webui 扩展Civitai助手用于更轻松的管理和使用Ci
# 使用方法 # 使用方法
## 不要使用双语对照插件
本插件无法在那个双语对照插件下工作,请换用普通中文化插件。
## 更新你的SD webui ## 更新你的SD webui
本扩展需要取到 Extra Network的卡片列表id。**这个是2023-02-06才添加到SD webui里面的。** 本扩展需要取到 Extra Network的卡片列表id。**这个是2023-02-06才添加到SD webui里面的。**

View File

@ -44,6 +44,9 @@ Everytime you install or update this extension, you need to shutdown SD Webui an
Done. Done.
# How to Use # How to Use
## Do not use bilingual localization
This extension can not work with bilingual localization extension. Disable it before using this extension.
## Update Your SD Webui ## Update Your SD Webui
This extension need to get extra network's cards id. Which is added since **2023-02-06**. This extension need to get extra network's cards id. Which is added since **2023-02-06**.
**If your SD webui is an earlier version, you need to update it!** **If your SD webui is an earlier version, you need to update it!**

View File

@ -341,10 +341,10 @@ onUiLoaded(() => {
let model_type_list = ["textual_inversion", "hypernetworks", "checkpoints", "lora"]; let model_type_list = ["textual_inversion", "hypernetworks", "checkpoints", "lora"];
//get translated label list //get translated label list
let model_type_label_list = [ let model_type_label_list = [
getTranslation("Textual Inversion")??"Textual Inversion", (getTranslation("Textual Inversion")??"Textual Inversion").trim(),
getTranslation("Hypernetworks")??"Hypernetworks", (getTranslation("Hypernetworks")??"Hypernetworks").trim(),
getTranslation("Checkpoints")??"Checkpoints", (getTranslation("Checkpoints")??"Checkpoints").trim(),
getTranslation("Lora")??"Lora", (getTranslation("Lora")??"Lora").trim(),
]; ];
let cardid_suffix = "cards"; let cardid_suffix = "cards";

View File

@ -6,7 +6,7 @@ import requests
import shutil import shutil
version = "1.6.1" version = "1.6.1.1"
def_headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} def_headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'}