Comfy Org PR Bot
bf80ae7295
[chore] Update litegraph to 0.14.1 ( #3627 )
...
Co-authored-by: webfiltered <176114999+webfiltered@users.noreply.github.com >
2025-04-26 02:38:46 +10:00
Comfy Org PR Bot
de0f0ebac1
0.14.1 ( #969 )
...
Patch version increment to 0.14.1
Co-authored-by: webfiltered <176114999+webfiltered@users.noreply.github.com >
2025-04-26 02:34:16 +10:00
filtered
38dd58ae23
Fix new link follows pointer until context menu closed ( #968 )
...
- Resolves https://github.com/Comfy-Org/ComfyUI_frontend/issues/3618
2025-04-26 02:33:28 +10:00
filtered
c10ce1caa1
[API] Add deprecated warning logging ( #967 )
...
Adds a global API to notify devs / users of deprecated features.
- Custom callbacks may be added
- By default, remembers message text and only sends each message once
- Sends to console.warn by default
```ts
// Add a custom notification when a warning is encountered
const warnMessage = (message: string, source?: object) => {
addToast({ message, detail: object })
}
LiteGraph.onDeprecationWarning.push(warnMessage)
```
```ts
// Debugging flag. Repeats deprecation warnings every time they are reported.
// May impact performance.
LiteGraph.alwaysRepeatWarnings = true
```
Generate a warning
```ts
import { warnDeprecated } from "@/utils/feedback"
warnDeprecated(
"[DEPRECATED] graph.oldFeature() will be removed from Litegraph. " +
"Please use graph.newFeature() instead. https://helpful.site/faq ",
objectThatCausedThis
)
```
2025-04-26 02:16:01 +10:00
Yiximail
44348180f5
Fix long-press to open contextmenu on touch devices ( #3624 )
2025-04-25 11:30:13 -04:00
Benjamin Lu
4e12800336
Expand component test coverage to BrowserTabTitle ( #3623 )
...
Co-authored-by: Benjamin Lu <templu1107@proton.me >
2025-04-25 11:03:46 -04:00
Yiximail
d883448b86
Fix incorrect touch event handling by accurately tracking touch points ( #3622 )
2025-04-25 10:54:34 -04:00
Benjamin Lu
1c59e3b51b
[nit] Use TorchMirrorUrl ( #3617 )
...
Co-authored-by: Benjamin Lu <templu1107@proton.me >
2025-04-25 10:52:52 -04:00
filtered
63407abf3c
Reduce input socket hitbox for widgets ( #966 )
...
Restores the full left-arrow button click area for widgets. Previously
lost ~5 canvas pixels to clicks intercepted by input sockets.
Supporting refactors:
- Maps concrete node slot impls. to private array, once per frame
- Converts slot boundingRect to use absolute canvas pos (same as other
elements)
- Stores parent node ref in concrete slot classes
2025-04-25 14:12:09 +00:00
Chenlei Hu
b79cbf69af
Use PrimeVue Avatar component ( #3615 )
2025-04-24 21:49:03 -04:00
Chenlei Hu
b05407ffdd
[Refactor] Split authStore into authStore and authService ( #3612 )
...
Co-authored-by: github-actions <github-actions@github.com >
2025-04-24 20:45:30 -04:00
Benjamin Lu
2a62f7ec7f
ignore Vite timestamped config modules in .gitignore ( #3614 )
...
Co-authored-by: Benjamin Lu <templu1107@proton.me >
2025-04-24 20:40:18 -04:00
Benjamin Lu
bf757c11ef
Reland "Add unified sidebar width setting" ( #3611 )
...
Co-authored-by: Benjamin Lu <templu1107@proton.me >
Co-authored-by: github-actions <github-actions@github.com >
2025-04-24 17:45:25 -04:00
Chenlei Hu
0ed29a198d
[Cleanup] Remove unnecessary null check on auth ( #3610 )
2025-04-24 17:36:16 -04:00
Chenlei Hu
31d5671f24
Revert "Add unified sidebar width setting" ( #3609 )
2025-04-24 17:14:01 -04:00
Benjamin Lu
ba3e2edb8a
Add unified sidebar width setting ( #3605 )
...
Co-authored-by: Benjamin Lu <templu1107@proton.me >
Co-authored-by: github-actions <github-actions@github.com >
2025-04-24 16:41:46 -04:00
Benjamin Lu
9c2300d780
Update README with Recommended Code Editor Configuration ( #3606 )
...
Co-authored-by: Benjamin Lu <templu1107@proton.me >
2025-04-24 16:34:38 -04:00
Benjamin Lu
3f85ff751c
Remove Release Summary section in README ( #3607 )
...
Co-authored-by: Benjamin Lu <templu1107@proton.me >
2025-04-24 16:34:07 -04:00
Chenlei Hu
0caf1686c3
Add Comfy.User.SignOut command ( #3608 )
...
Co-authored-by: github-actions <github-actions@github.com >
2025-04-24 16:33:26 -04:00
Chenlei Hu
26f98d24fb
[Refactor] Async load all setting panels ( #3604 )
2025-04-24 13:00:42 -04:00
Comfy Org PR Bot
fcbdee54ec
1.18.0 ( #3552 )
...
Co-authored-by: huchenlei <20929282+huchenlei@users.noreply.github.com >
Co-authored-by: Chenlei Hu <huchenlei@proton.me >
v1.18.0
2025-04-24 12:43:44 -04:00
filtered
a944372f39
Improve default node sizes ( #3596 )
...
Co-authored-by: github-actions <github-actions@github.com >
2025-04-24 12:42:16 -04:00
Comfy Org PR Bot
df51e89311
[chore] Update litegraph to 0.14.0 ( #3602 )
...
Co-authored-by: webfiltered <176114999+webfiltered@users.noreply.github.com >
Co-authored-by: github-actions <github-actions@github.com >
2025-04-25 01:00:15 +10:00
Comfy Org PR Bot
0fd47a767d
0.14.0 ( #964 )
...
Minor version increment to 0.14.0
Co-authored-by: webfiltered <176114999+webfiltered@users.noreply.github.com >
2025-04-25 00:33:35 +10:00
filtered
080a8da8f4
Overhaul node computeSize - use actual text width ( #962 )
...
### Node resize overhaul
- Precisely calculates node minimum size
- Prevents input & output overlap
- Prevents (normal*) widgets from rendering text over the edge of nodes
- Performance impact was sub-millisecond for normal usage in a 500-node
graph

_Minimum size for a few example node configurations_
### Widgets
- Converts hard-coded draw render values to class static properties
- Adds widget button draw function for left/right arrow widgets
_*_ Exception: `control_after_generate`, as it is not a true input /
widget. A check may be added later to handle this special case.
2025-04-25 00:31:34 +10:00
filtered
79ce3199d4
[Cleanup] Documentation ( #963 )
...
Adds / cleans JSDoc.
2025-04-24 22:47:20 +10:00
Terry Jia
b314435f81
add importmap for vue-i18n ( #3595 )
2025-04-23 22:34:19 -04:00
Chenlei Hu
ba367c0214
[nit] Rename credit history to invoice history ( #3598 )
...
Co-authored-by: github-actions <github-actions@github.com >
2025-04-23 22:33:52 -04:00
Chenlei Hu
64ad6a9bb0
Re-style TopUpCreditDialog to match design ( #3597 )
2025-04-23 22:28:35 -04:00
AustinMroz
3819db5ec4
Introduce widgetType option to inputSpec ( #3550 )
2025-04-23 20:36:01 -04:00
filtered
80517e8204
[Test] Add test expectation ( #3593 )
2025-04-24 08:48:06 +10:00
Comfy Org PR Bot
40034e77f9
1.17.11 ( #3592 )
...
Co-authored-by: webfiltered <176114999+webfiltered@users.noreply.github.com >
v1.17.11
2025-04-24 08:04:24 +10:00
filtered
2ef8b7cfd7
Fix opening search from context menu ( #3591 )
...
Co-authored-by: github-actions <github-actions@github.com >
2025-04-24 07:54:27 +10:00
Comfy Org PR Bot
9cf3a0e568
1.17.10 ( #3590 )
...
Co-authored-by: huchenlei <20929282+huchenlei@users.noreply.github.com >
v1.17.10
2025-04-23 15:19:22 -04:00
Chenlei Hu
f562cf27cd
[API Node] Workaround custom node hijack on api.queuePrompt ( #3589 )
...
Co-authored-by: filtered <176114999+webfiltered@users.noreply.github.com >
2025-04-23 15:18:37 -04:00
Chenlei Hu
4244a0a258
[Cleanup] Remove unused dialog functions ( #3588 )
2025-04-23 11:46:50 -04:00
Comfy Org PR Bot
ad3d2fe2e9
1.17.9 ( #3585 )
...
Co-authored-by: huchenlei <20929282+huchenlei@users.noreply.github.com >
v1.17.9
2025-04-23 11:16:46 -04:00
Chenlei Hu
4c23cfbd4d
[API Node] Better execution error handling ( #3587 )
...
Co-authored-by: github-actions <github-actions@github.com >
2025-04-23 11:15:38 -04:00
Chenlei Hu
9e10e55633
[Schema] Add api_node flag to node def schema ( #3586 )
2025-04-23 10:47:08 -04:00
filtered
d70260615b
[Refactor] Split NodeSlot out to separate files ( #960 )
...
Split files only; no code changes. New files moved to `/node`.
2025-04-23 14:43:55 +00:00
Christian Byrne
59cbe90fd3
[API Node] Reset password ( #3578 )
...
Co-authored-by: github-actions <github-actions@github.com >
2025-04-23 10:13:17 -04:00
Christian Byrne
16bd9abccd
Translate user and credits settings categories ( #3580 )
...
Co-authored-by: github-actions <github-actions@github.com >
2025-04-23 10:12:14 -04:00
Christian Byrne
e84bdc96cf
Update FAQ link ( #3579 )
2025-04-23 10:12:02 -04:00
Comfy Org PR Bot
a57be36d4d
1.17.8 ( #3573 )
...
Co-authored-by: huchenlei <20929282+huchenlei@users.noreply.github.com >
v1.17.8
2025-04-22 22:26:48 -04:00
Christian Byrne
3bd508c001
Use generalized prod config var ( #3574 )
2025-04-22 22:26:31 -04:00
Chenlei Hu
612500a4dc
[nit] Fix typo ( #3577 )
2025-04-22 21:35:26 -04:00
Christian Byrne
e9723407d8
[API Node] Fix credits fetch condition ( #3575 )
2025-04-22 21:33:44 -04:00
Christian Byrne
a01aa39423
[API Node] Show error toast ( #3576 )
2025-04-22 21:32:52 -04:00
Chenlei Hu
ab94a55858
Show user avatar on top menu if available ( #3572 )
2025-04-22 19:47:34 -04:00
Christian Byrne
1bcf5e28d4
[API Node] Contact support button ( #3571 )
...
Co-authored-by: github-actions <github-actions@github.com >
2025-04-22 19:47:23 -04:00