Skip to content

8.0.0

Compare
Choose a tag to compare
@AbdBarho AbdBarho released this 24 Jun 08:07
· 29 commits to master since this release
cdde93b

Breaking changes

Due to the increasing number of models and folders required for the UIs and extensions, the folder structure have been changed, now it looks something like this:

.
├── data
│   ├── .cache         # cache for intermediary packages
│   ├── config         # UI specific config
│   ├── embeddings     # embeddings
│   └── models         # all the models that were previously scattered around in /data
                       # this folder will be mounted replacing `auto`s model folder, so any extensions
                       # that write or read from this folder should see it

There is a migration script that would restructure the files for you, you can run it in bash or in WSL from the root of this repo:

sudo ./.devscripts/migratev7tov8.sh

Notes

  • Now automatically installs extension dependencies in auto if any are found, the startup.sh script will still be executed AFTER the installation finishes.
  • Bump comfy to torch 2.0.1

Full Changelog: 7.0.0...8.0.0