Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions built-in-nodes/WanImageToVideo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ mode: wide

The WanImageToVideo node prepares conditioning and latent representations for video generation tasks. It creates an empty latent space for video generation and can optionally incorporate starting images and CLIP vision outputs to guide the video generation process. The node modifies both positive and negative conditioning inputs based on the provided image and vision data.

**Output video frame rate:** The generated video uses a fixed frame rate of **16 FPS**. To calculate the output duration, divide the `length` (frame count) by 16. For example, the default length of 81 frames produces approximately 5 seconds of video.

## Inputs

| Parameter | Description | Data Type | Required | Range |
Expand Down
31 changes: 31 additions & 0 deletions installation/update_comfyui.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,37 @@ git checkout master
</Tab>
</Tabs>

## How to Update ComfyUI Manager

ComfyUI Manager is a custom node that provides installation and management of other custom nodes, models, and snapshots. It is separate from the ComfyUI core code and has its own update process.

<AccordionGroup>
<Accordion title="Update via Manager UI (recommended)">
The simplest way to update Manager is through its own interface:

1. Open the **ComfyUI Manager** dialog by clicking the **Manager** button in the ComfyUI toolbar
2. Go to the **Custom Nodes** tab (New UI) or the node list (Legacy UI)
3. Find **ComfyUI-Manager** in the list and click the **Update** or **Install/Update** button
4. Restart ComfyUI after the update completes
</Accordion>

<Accordion title="Update via Git (manual installation)">
If you installed ComfyUI Manager manually via Git, update it with:

```bash
cd custom_nodes/ComfyUI-Manager
git pull
```

Then restart ComfyUI.
</Accordion>

<Accordion title="Portable version">
For the Windows Portable version, ComfyUI Manager is built into the core. Update it by updating ComfyUI itself using one of the update scripts in the `update/` folder, or through the Manager UI as described above.
</Accordion>
</AccordionGroup>

<Note>If the Manager is missing or disabled after an update, re-enable it via `--enable-manager` launch flag. See the [ComfyUI Manager Overview](/manager/overview) for details.</Note>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win

Clarify which flag must be changed.

--enable-manager enables Manager, but it does not restore the UI when --disable-manager-ui is present. Tell users to remove --disable-manager-ui in that case. One flag, one fix, fewer clicks.

Proposed wording
-<Note>If the Manager is missing or disabled after an update, re-enable it via `--enable-manager` launch flag. See the [ComfyUI Manager Overview](/manager/overview) for details.</Note>
+<Note>If the Manager is not enabled after an update, start ComfyUI with the `--enable-manager` launch flag. If only the Manager UI is disabled, remove the `--disable-manager-ui` flag. See the [ComfyUI Manager Overview](/manager/overview) for details.</Note>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<Note>If the Manager is missing or disabled after an update, re-enable it via `--enable-manager` launch flag. See the [ComfyUI Manager Overview](/manager/overview) for details.</Note>
<Note>If the Manager is not enabled after an update, start ComfyUI with the `--enable-manager` launch flag. If only the Manager UI is disabled, remove the `--disable-manager-ui` flag. See the [ComfyUI Manager Overview](/manager/overview) for details.</Note>
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@installation/update_comfyui.mdx` at line 164, Update the Note near the
ComfyUI Manager update instructions to distinguish the two flags: retain
--enable-manager for a missing or disabled Manager, and instruct users to remove
--disable-manager-ui when the Manager UI is hidden. Keep the existing Manager
Overview link and explain the applicable single-flag fix for each case.


## ComfyUI Version Types

Expand Down
Loading