Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.DS_Store
path_recorder.txt
__pycache__
28 changes: 20 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,26 @@
# stable-diffusion-webui-images-browser
## stable-diffusion-webui-images-browser

This an extension for [stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui)
A custom extension for [AUTOMATIC1111/stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui).

This an images browser for browsing past generated pictures, view their generated infomations,send the prompt to txt2img or img2img, collect images to your "faveries" fold, delete the images you no longer need, and you can also browse images in any folds in your computer
![image](https://s6.jpg.cm/2022/10/24/PJjuZt.png)
This is an image browser for browsing past generated pictures, view their generated informations, send that information to txt2img, img2img and others, collect images to your "favorites" folder and delete the images you no longer need.

go to the directory \<stable-diffusion-webui project path\>/extensions and run command to install:
## Installation

`git clone https://github.com/yfszzx/stable-diffusion-webui-images-browser `
The extension can be installed directly from within the **Extensions** tab within the Webui.

and restart your stable-diffusion-webui, then you can see the new tab "Images Browser"
You can also install it manually by running the following command from within the webui directory:

[See here for more install details](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Extensions)
git clone https://github.com/AlUlkesh/stable-diffusion-webui-images-browser/ extensions/stable-diffusion-webui-images-browser

## Recent updates
- Recyle bin option
- Add/Remove from saved directories, via buttons
- New dropdown with subdirs
- Option to not show the images from subdirs
- Refresh button
- Sort order
- View and save favorites with individual folder depth

## Credit

Credit goes above all to the original maintainer of this extension: https://github.com/yfszzx/stable-diffusion-webui-images-browser
4 changes: 4 additions & 0 deletions install.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import launch

if not launch.is_installed("send2trash"):
launch.run_pip("install Send2Trash", "requirement for images-browser")
Loading