├── .gitignore ├── LICENSE ├── README.md ├── images └── readme-normal.png └── scripts ├── maji_merger ├── generator.py ├── merger.py ├── tabs │ ├── sd.py │ ├── sdxl.py │ └── vae.py └── ui.py └── maji_merger_extension.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/maji-merger/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/maji-merger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/maji-merger/HEAD/README.md -------------------------------------------------------------------------------- /images/readme-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/maji-merger/HEAD/images/readme-normal.png -------------------------------------------------------------------------------- /scripts/maji_merger/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/maji-merger/HEAD/scripts/maji_merger/generator.py -------------------------------------------------------------------------------- /scripts/maji_merger/merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/maji-merger/HEAD/scripts/maji_merger/merger.py -------------------------------------------------------------------------------- /scripts/maji_merger/tabs/sd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/maji-merger/HEAD/scripts/maji_merger/tabs/sd.py -------------------------------------------------------------------------------- /scripts/maji_merger/tabs/sdxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/maji-merger/HEAD/scripts/maji_merger/tabs/sdxl.py -------------------------------------------------------------------------------- /scripts/maji_merger/tabs/vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/maji-merger/HEAD/scripts/maji_merger/tabs/vae.py -------------------------------------------------------------------------------- /scripts/maji_merger/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/maji-merger/HEAD/scripts/maji_merger/ui.py -------------------------------------------------------------------------------- /scripts/maji_merger_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddPn08/maji-merger/HEAD/scripts/maji_merger_extension.py --------------------------------------------------------------------------------