update doc
parent
d73c03e33d
commit
5ddeb151f8
|
|
@ -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里面的。**
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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!**
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
|
|
|
||||||
|
|
@ -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'}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue