Skip to content

Commit 4066f58

Browse files
feat: tooltip and doc for PrefixArtist
1 parent ce07964 commit 4066f58

7 files changed

Lines changed: 11 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ For example, by preparing the following CSV, you can quickly insert correspondin
169169
- **Max suggestions**: Maximum number of autocomplete suggestions to display.
170170
- **Auto-Insert Comma**: Automatically insert a comma after tags when inserting from autocomplete.
171171
- **Replace '_' with 'Space'**: Replaces underscores with spaces when inserting tags. This setting also affects related tag display.
172+
- **String to add before artist tags**: Text to prepend when inserting an artist tag. For Anima models, specify `@`.
172173
- **Enable Loras and Embeddings**: Display Lora and Embedding in the suggestions.
173174
- **Use Fast Search**: Switch autocomplete suggestions search to fast processing (see [About Fast Search for Autocomplete](#about-fast-search-for-autocomplete) for details).
174175

docs/README_jp.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ worst_quality,5,9999999,
167167
- **Max Suggestions**: オートコンプリート候補の最大表示件数
168168
- **Auto-Insert Comma**: タグの挿入時、末尾にカンマを追加する
169169
- **Replace '_' with 'Space'**: タグ挿入時にアンダースコアをスペースに置き換えます。この設定は関連タグ表示にも影響します
170+
- **String to add before artist tags**: アーティストタグを挿入する際に付加する文字列。 Anima モデルの場合は「@」を指定します
170171
- **Enable Loras and Embeddings**: LoraとEmbeddingを候補に表示する
171172
- **Use Fast Search**: オートコンプリート候補の検索を高速な処理に切り替える(詳細は [オートコンプリートの高速検索について](#オートコンプリートの高速検索について) を確認してください)
172173

locales/en/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"name": "Enable Loras and Embeddings"
3333
},
3434
"AutocompletePlus_Autocompletion_PrefixArtist": {
35-
"name": "String to add before artist tags"
35+
"name": "String to add before artist tags",
36+
"tooltip": "Text to prepend when inserting an artist tag via autocomplete.\ne.g. '@' -> '@artist_name'."
3637
},
3738
"AutocompletePlus_Autocompletion_ReplaceUnderscoreWithSpace": {
3839
"name": "Replace '_' with 'Space'",

locales/ja/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"name": "LoraとEmbeddingを候補に表示する"
3333
},
3434
"AutocompletePlus_Autocompletion_PrefixArtist": {
35-
"name": "アーティストタグの前に追加する文字列"
35+
"name": "アーティストタグの前に追加する文字列",
36+
"tooltip": "オートコンプリートからアーティストタグを挿入する際に付加する文字列。\n例: '@' -> '@artist_name'"
3637
},
3738
"AutocompletePlus_Autocompletion_ReplaceUnderscoreWithSpace": {
3839
"name": "'_' を 'スペース' に置き換える",

locales/zh-TW/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"name": "顯示Lora和Embedding"
3333
},
3434
"AutocompletePlus_Autocompletion_PrefixArtist": {
35-
"name": "在藝術家標籤前添加的字串"
35+
"name": "在藝術家標籤前添加的字串",
36+
"tooltip": "透過自動完成插入藝術家標籤時,在標籤前添加的文字。\n例: '@' -> '@artist_name'"
3637
},
3738
"AutocompletePlus_Autocompletion_ReplaceUnderscoreWithSpace": {
3839
"name": "將'_'替換為'空格'",

locales/zh/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"name": "显示Lora和Embedding"
3333
},
3434
"AutocompletePlus_Autocompletion_PrefixArtist": {
35-
"name": "在艺术家标签前添加的字符串"
35+
"name": "在艺术家标签前添加的字符串",
36+
"tooltip": "通过自动完成插入艺术家标签时,在标签前添加的文本。\n例: '@' -> '@artist_name'"
3637
},
3738
"AutocompletePlus_Autocompletion_ReplaceUnderscoreWithSpace": {
3839
"name": "将'_'替换为'空格'",

web/js/main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,7 @@ app.registerExtension({
383383
{
384384
id: id + ".Autocompletion.PrefixArtist",
385385
name: "String to add before artist tags",
386+
tooltip: "Text to prepend when inserting an artist tag via autocomplete.\ne.g. '@' -> '@artist_name'.",
386387
type: "text",
387388
defaultValue: '',
388389
category: [name, "Autocompletion", "String to add before artist tags"],

0 commit comments

Comments
 (0)