# Description
This fork addresses the out of date Dockerfile, Dockerfile_base,
Dockerfile_runpod, and the missing userconfig_streamlit.yaml issues that
prevent an up-to-date docker image from being compiled.
Closes: Docker Files out of Date; compiled Docker Container does not
function #1702
# Checklist:
- [*] I have changed the base branch to `dev`
- [*] I have performed a self-review of my own code
- [*] I have commented my code in hard-to-understand areas
- [*] I have made corresponding changes to the documentation
Updates the Dockerfile to include a copy and rename action to create a userconfig_streamlit.yaml out of a webui-streamlit.yaml to provide a permanent userconfig file without causing issues for non dockerized deployments.
Added a second copy for webui_streamlit.yaml and rename it to userconfig_streamlit.yaml. This makes it available for the docker without causing issues for non dockerized instances.
Moved entrypoint.sh copy to be the first command in the copy chain.
Added a copy command for "optimizedSD" folder, as the docker could not run in optimized mode without the files.
Without an existing file, the docker image does not create the file. This makes the environmental variable work to have Docker create a persistent user configuration file outside of the container. This means that the container dumps the settings every time it's created.
# Description
More update/changes to flet wedui, still WIP.
added re-orderable layers panel.
added messages to bottom panel.
changed appbar to row.
# Checklist:
- [x] I have changed the base branch to `dev`
- [x] I have performed a self-review of my own code
- [x] I have commented my code in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
# Description
Frame generation is being done in chunks of the number of samples
chosen, so when you needed 120 frames but set 200 samples, it would
generate 200 frames.
* Added a break to stop frames from generating once total_frames is
reached
# Checklist:
- [x] I have changed the base branch to `dev`
- [x] I have performed a self-review of my own code
- [ ] I have commented my code in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- Fixed issue with new ldm folder requiring the personalization_config
to be set even if empty.
- Added shutup as a dependency to shutup python warnings for good.