just update readme this time

This commit is contained in:
tim h 2022-12-29 22:00:04 -06:00
parent 668e461457
commit 90c9c38b76
2 changed files with 3 additions and 3 deletions

View file

@ -94,11 +94,11 @@ do
done
# Actual file processing
for htmlfile in $(find -type f -name \*.html)
for htmlfile in $(find -type f -name \*.html -not -path "./node_modules/*")
do
echo -e "${BIBlue}[info] Processing '${htmlfile}' for cache busting...${Color_Off}"
for resourcefile in $(find -type f -regex '.*\.css\|.*\.js' | sed 's/\.\///g')
for resourcefile in $(find -type f -regex '.*\.css\|.*\.js' -not -path "./node_modules/*" | sed 's/\.\///g')
do
# Check if resource is used in html file
resourceusage=$(grep -i "$resourcefile" "$htmlfile")

View file

@ -56,7 +56,7 @@ A1111 webUI must be launched with the `--api` flag enabled, and the `--cors-allo
### surprising incompatibilities
- [microsoft editor extension for chrome/edge seems to disable the overmask slider]()
- [microsoft editor extension for chrome/edge seems to disable the overmask slider](https://github.com/zero01101/openOutpaint/discussions/88#discussioncomment-4498341)
- [duckduckgo privacy extension for firefox breaks outpainting, resulting in pure black output](https://github.com/zero01101/openOutpaint-webUI-extension/issues/3#issuecomment-1367694000) - add an exception for your openOutpaint host (likely localhost or 127.0.0.1)
### quickstart speedrun