1. 12 Apr, 2024 2 commits
  2. 06 Apr, 2024 1 commit
    • Gorka Eguileor's avatar
      Improve A1111 metadata parsing (#3216) · de172f8b
      Gorka Eguileor authored
      * A1111 import: Set VAE name
      
      This patch sets the VAE name for the `VAELoader` when present in the png
      metadata.
      
      * A1111 import: Skip all hashes
      
      When importing from A1111 the parsing assumes that values of a key will
      never contain a ":", which is not correct.
      
      There are 2 cases where we can have ":" in the value:
      
      - Inside a string. E.g.:
        Lora hashes: "xl_more_art-full_v1: fe3b4816be83, add-detail-xl: 9c783c8ce46c"
      
      - When the value is a json dictionary. E.g.:
        Hashes: {"vae": "63aeecb90f", "embed:negativeXL_D": "fff5d51ab6"}
      
      This patch changes how we parse the metadata to take those 2 cases into
      account and also skips the following additional keys that are present in
      some Forge images:
      
      - Version
      - VAE hash
      - TI hashes
      - Lora hashes
      - Hashes
      
      * A1111 import: Parse Hires steps
      
      This patch parses the `Hires steps` parameter that is part of the High
      Resolution Upscale configuration when it  is present, and fallbacks to
      the one from the `samplerNode` (like the code currently does) if it's
      not present.
      de172f8b
  3. 05 Apr, 2024 1 commit
  4. 19 Feb, 2024 1 commit
  5. 11 Feb, 2024 2 commits
  6. 06 Feb, 2024 2 commits
  7. 03 Feb, 2024 1 commit
  8. 02 Feb, 2024 1 commit
  9. 01 Feb, 2024 1 commit
  10. 31 Jan, 2024 2 commits
  11. 30 Jan, 2024 3 commits
  12. 29 Jan, 2024 1 commit
  13. 24 Jan, 2024 1 commit
  14. 23 Jan, 2024 1 commit
  15. 22 Jan, 2024 2 commits
  16. 16 Jan, 2024 2 commits
  17. 15 Jan, 2024 1 commit
  18. 14 Jan, 2024 1 commit
  19. 13 Jan, 2024 5 commits
  20. 08 Jan, 2024 1 commit
    • pythongosssss's avatar
      Store user settings/data on the server and multi user support (#2160) · 235727fe
      pythongosssss authored
      * wip per user data
      
      * Rename, hide menu
      
      * better error
      rework default user
      
      * store pretty
      
      * Add userdata endpoints
      Change nodetemplates to userdata
      
      * add multi user message
      
      * make normal arg
      
      * Fix tests
      
      * Ignore user dir
      
      * user tests
      
      * Changed to default to browser storage and add server-storage arg
      
      * fix crash on empty templates
      
      * fix settings added before load
      
      * ignore parse errors
      235727fe
  21. 31 Dec, 2023 1 commit
  22. 27 Dec, 2023 2 commits
  23. 26 Dec, 2023 1 commit
  24. 21 Dec, 2023 1 commit
    • comfyanonymous's avatar
      Litegraph updates. · d35267e8
      comfyanonymous authored
      Update from upstream repo.
      
      Auto select value in prompt.
      
      Increase maximum number of nodes to 10k.
      d35267e8
  25. 19 Dec, 2023 1 commit
  26. 16 Dec, 2023 1 commit
  27. 13 Dec, 2023 1 commit
    • pythongosssss's avatar
      Group node fixes (#2259) · 39007890
      pythongosssss authored
      * Prevent cleaning graph state on undo/redo
      
      * Remove pause rendering due to LG bug
      
      * Fix crash on disconnected internal reroutes
      
      * Fix widget inputs being incorrect order and value
      
      * Fix initial primitive values on connect
      
      * basic support for basic rerouted converted inputs
      
      * Populate primitive to reroute input
      
      * dont crash on bad primitive links
      
      * Fix convert to group changing control value
      
      * reduce restrictions
      
      * fix random crash in tests
      39007890