1. 25 3月, 2023 28 次提交
  2. 24 3月, 2023 4 次提交
  3. 23 3月, 2023 4 次提交
    • J
      Fix "masked content" in loopback script · a9eef1fb
      James Railton 提交于
      The loopback script did not set masked content to original after first loop. So each loop would apply a fill, or latent mask. This would essentially reset progress each loop.
      
      The desired behavior is to use the mask for the first loop, then continue to iterate on the results of the previous loop.
      a9eef1fb
    • C
      fix variable typo · 92e173d4
      carat-johyun 提交于
      92e173d4
    • C
      Expose inpainting mask and composite · caf84e82
      catboxanon 提交于
      For inpainting, this exposes the mask and masked composite and gives
      the user the ability to display these in the web UI,
      save to disk, or both.
      caf84e82
    • S
      Fix scripts load order · cd3cd0fc
      sumof2primes 提交于
       - 1st webui, 2nd extensions-builtin, 3rd extensions
       - to load scripts independent of --data-dir
       - change load order key [x.basedir, x.filename, x.path] to [orderby(x.basedir), x.filename, x.path]
      
      e.g., scripts/xyz_grid.py dependent extentions should loaded later
      extensions\sd-webui-controlnet\scripts\xyz_grid_support.py
      extensions\sd-webui-additional-networks\scripts\xyz_grid_support.py
      cd3cd0fc
  4. 22 3月, 2023 3 次提交
    • S
      Fix scripts load order · 64b7e838
      sumof2primes 提交于
       - 1st webui, 2nd extensions-builtin, 3rd extensions
       - to load scripts independent of --data-dir
       - change load order key [x.basedir, x.filename, x.path] to [orderby(x.basedir), x.filename, x.path]
      
      e.g., scripts/xyz_grid.py dependent extentions should loaded later
      extensions\sd-webui-controlnet\scripts\xyz_grid_support.py
      extensions\sd-webui-additional-networks\scripts\xyz_grid_support.py
      64b7e838
    • E
      fixes xyz extra_generation_params not being saved · e7ac09b2
      EllangoK 提交于
      e7ac09b2
    • J
      Loopback Script Updates · 33b85391
      James Railton 提交于
      - Improved user experience. You can now pick the denoising strength of the final loop and one of three curves. Previously you picked a multiplier such as 0.98 or 1.03 to define the change to the denoising strength for each loop. You had to do a ton of math in your head to visualize what was happening. The new UX makes it very easy to understand what's going on and tweak.
      - For batch sizes over 1, intermediate images no longer returned. For a batch size of 1, intermediate images from each loop will continue to be returned. When more than 1 image is returned, a grid will also be generated. Previously for larger jobs, you'd get back a mess of many grids and potentially hundreds of images with no organization. To make large jobs usable, only final images are returned.
      - Added support for skipping current image. Fixed interrupt to cleanly end and return images. Previously these would throw.
      - Improved tooltip descriptions
      - Fix some edge cases
      33b85391
  5. 21 3月, 2023 1 次提交