mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-16 18:02:58 +08:00
enhance: badge - hide built-in option is added
This commit is contained in:
parent
d547952bc5
commit
9b363cc9bd
@ -17,7 +17,7 @@ import http.client
|
|||||||
import re
|
import re
|
||||||
import signal
|
import signal
|
||||||
|
|
||||||
version = "V1.5.1"
|
version = "V1.5.2"
|
||||||
print(f"### Loading: ComfyUI-Manager ({version})")
|
print(f"### Loading: ComfyUI-Manager ({version})")
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -425,7 +425,9 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
let badge_combo = document.createElement("select");
|
let badge_combo = document.createElement("select");
|
||||||
badge_combo.appendChild($el('option', { value: 'none', text: 'Badge: None' }, []));
|
badge_combo.appendChild($el('option', { value: 'none', text: 'Badge: None' }, []));
|
||||||
badge_combo.appendChild($el('option', { value: 'nick', text: 'Badge: Nickname' }, []));
|
badge_combo.appendChild($el('option', { value: 'nick', text: 'Badge: Nickname' }, []));
|
||||||
|
badge_combo.appendChild($el('option', { value: 'nick_hide', text: 'Badge: Nickname (hide built-in)' }, []));
|
||||||
badge_combo.appendChild($el('option', { value: 'id_nick', text: 'Badge: #ID Nickname' }, []));
|
badge_combo.appendChild($el('option', { value: 'id_nick', text: 'Badge: #ID Nickname' }, []));
|
||||||
|
badge_combo.appendChild($el('option', { value: 'id_nick_hide', text: 'Badge: #ID Nickname (hide built-in)' }, []));
|
||||||
|
|
||||||
api.fetchApi('/manager/badge_mode')
|
api.fetchApi('/manager/badge_mode')
|
||||||
.then(response => response.text())
|
.then(response => response.text())
|
||||||
@ -722,14 +724,19 @@ app.registerExtension({
|
|||||||
|
|
||||||
if (!this.flags.collapsed && badge_mode != 'none' && nodeType.title_mode != LiteGraph.NO_TITLE) {
|
if (!this.flags.collapsed && badge_mode != 'none' && nodeType.title_mode != LiteGraph.NO_TITLE) {
|
||||||
let text = "";
|
let text = "";
|
||||||
if (badge_mode == 'id_nick')
|
if (badge_mode.startsWith('id_nick'))
|
||||||
text = `#${this.id} `;
|
text = `#${this.id} `;
|
||||||
|
|
||||||
if (nicknames[nodeData.name.trim()]) {
|
if (nicknames[nodeData.name.trim()]) {
|
||||||
let nick = nicknames[nodeData.name.trim()];
|
let nick = nicknames[nodeData.name.trim()];
|
||||||
|
|
||||||
if (nick == 'ComfyUI') {
|
if (nick == 'ComfyUI') {
|
||||||
nick = "🦊"
|
if(badge_mode.endsWith('hide')) {
|
||||||
|
nick = "";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
nick = "🦊"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nick.length > 25) {
|
if (nick.length > 25) {
|
||||||
@ -772,14 +779,19 @@ app.registerExtension({
|
|||||||
|
|
||||||
if (!this.flags.collapsed && badge_mode != 'none') {
|
if (!this.flags.collapsed && badge_mode != 'none') {
|
||||||
let text = "";
|
let text = "";
|
||||||
if (badge_mode == 'id_nick')
|
if (badge_mode.startsWith('id_nick'))
|
||||||
text = `#${this.id} `;
|
text = `#${this.id} `;
|
||||||
|
|
||||||
if (nicknames[node.type.trim()]) {
|
if (nicknames[node.type.trim()]) {
|
||||||
let nick = nicknames[node.type.trim()];
|
let nick = nicknames[node.type.trim()];
|
||||||
|
|
||||||
if (nick == 'ComfyUI') {
|
if (nick == 'ComfyUI') {
|
||||||
nick = "🦊"
|
if(badge_mode.endsWith('hide')) {
|
||||||
|
nick = "";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
nick = "🦊"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nick.length > 25) {
|
if (nick.length > 25) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user