Skip to content

Commit

Permalink
update 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nimadez committed Aug 26, 2023
1 parent 9964e45 commit 56c3885
Show file tree
Hide file tree
Showing 5 changed files with 278 additions and 183 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ UIX improvement and code management is not included in this file.
- fixed comfy error when the input is not flagged changed
- improve comparison opacity slider
- improve outpaint to support multiple paddings (https://github.com/nimadez/mental-diffusion/issues/9)
- mask image is not draggable anymore, pseudo code removed (we will revert the change later)
- improve metadata-pool
- improve compatibility with comfyui features
- improve dimensions, canvas is not resized when the width and height values are changed
(canvas dimensions are available in the canvas editor)

[0.2.3]
- new preview and progress bar
Expand All @@ -28,6 +30,8 @@ UIX improvement and code management is not included in this file.
- instant comfy bridge, no delay
- vscode editor-menu is now optional

--------------------------------------

[0.2.1]
- the comfyui bridge was successfully constructed and the MD is relatively stable
- styles revision (simplified but more intelligent)
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,15 @@ Version 0.2.4 alpha<br>
#### Keyboard shortcuts
| *Key* | *Action* |
| --- | --- |
| P | Toggle metadata pool |
| 0 - 9 | Select workflows |
| D | Drag tool |
| B | Brush tool |
| L | Line tool |
| E | Eraser tool |
| M | Mask tool |
| I | Activate Eyedropper |
| I | Activate eyedropper |
| P | Toggle metadata pool |
| R | Reset canvas zoom |
| ] | Increase tool size |
| [ | Decrease tool size |
| + | Increase tool opacity |
Expand Down Expand Up @@ -140,6 +141,10 @@ How to speed up rendering?
Why did you switch to ComfyUI?
- I do not have the necessary hardware to expand the Diffusers features
- ComfyUI is a must-have SD package, there's a good chance you already have it
Why does the width and height change after the input?
- Width and height must be divisible by 8
- If you enter 500, it will be reduced to 496
```

## History
Expand Down
4 changes: 2 additions & 2 deletions scripts/clear_comfy_output.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
title Clear Mental Diffusion Output
title Clear ComfyUI Output

pause
del "\..\.output\*.*" /s /q /f
del "D:\Apps\ComfyUI\ComfyUI\output\*.*" /s /q /f
8 changes: 4 additions & 4 deletions src/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ const path = require('path');
const fs = require('fs');

const WORKFLOWS = [
"default_txt2img_api.json",
"default_txt2img_api.json",
"default_txt2img_vae_api.json",
"default_img2img_api.json",
"default_inpaint_api.json",
"default_inpaint_pro_api.json"
"default_img2img_api.json",
"default_inpaint_api.json",
"default_inpaint_pro_api.json"
]
let pathMD = null;
let pathComfy = null;
Expand Down

0 comments on commit 56c3885

Please sign in to comment.