psychedelicious
cd2f9b1884
fix(ui): do not floor stage coords, add util to sync stage attrs
2024-09-15 10:18:43 +10:00
psychedelicious
25964bed18
fix(ui): checkerboard background slightly larger than canvas
...
The checkerboard background was rendered as a separate DOM element that stretched to fill the canvas container.
While the canvas width and height are always integers, this background element could have non-integer dimensions, depending on panel sizes.As a result, it could be slightly larger than the canvas, introducing a fine border around the canvas.
This is purely a visual issue, but it's very noticeable when you use the bbox overlay. It also can be noticed with masks that extend beyond the edge of the visible canvas.
- Refactor the checkerboard background to be rendered by the canvas instead of as a DOM element, resolving the issue.
- Add a helper method to get the scaled rect of the stage, updating a few places where we need such a rect.
- Rename `CanvasStageModule.getScaledPixels` method to `unscale`, clarifying its purpose.
2024-09-15 10:18:43 +10:00
psychedelicious
19201768b0
feat(ui): use phosphor icons
...
There were some scattered places where we used other icon packs. Changed all to use phosphor icons for consistency.
2024-09-15 10:18:43 +10:00
psychedelicious
e48ec1ce6d
feat(ui): rename "Generation" tab to "Canvas", updated icons
2024-09-15 10:18:43 +10:00
psychedelicious
2241d115c3
feat(ui): revised icons/names for canvas context menu
2024-09-15 10:18:43 +10:00
psychedelicious
e4aecf5616
fix(ui): output only masked regions was inverted
2024-09-15 10:18:43 +10:00
psychedelicious
00328f8bae
fix(ui): alert layouts
2024-09-15 10:18:43 +10:00
psychedelicious
f9232cd45f
feat(ui): preserve mask
2024-09-15 10:18:43 +10:00
psychedelicious
ae6bf6f5c0
feat(ui): more detailed repr outputs for canvas
2024-09-15 10:18:43 +10:00
psychedelicious
d9cb718e33
fix(ui): bbox interactability
2024-09-15 10:18:43 +10:00
psychedelicious
ae7440b721
fix(ui): cursor sometimes hidden during staging
...
Need a to track a few more things to ensure we update the cursor correctly in all situations.
2024-09-15 10:18:43 +10:00
psychedelicious
b1cf0306bf
fix(ui): disable transformer when canvas is busy
2024-09-15 10:18:43 +10:00
psychedelicious
7aaeb95ab5
feat(ui): add bbox overlay, dimming area outside bbox
2024-09-15 10:18:43 +10:00
psychedelicious
39867d11a3
feat(ui): move canvas reset button out of settings
2024-09-15 10:18:43 +10:00
psychedelicious
dd0f75a67c
fix(ui): errors when doing stuff w/ IP Adapters
...
Closes #6852
2024-09-15 10:18:43 +10:00
psychedelicious
0e5077a96b
feat(ui): move nanostores fallback atoms to util
2024-09-15 10:18:43 +10:00
Ryan Dick
51df5aa94d
Invert the expected denoise_mask parameter to the FLUX Denoise node to match the behaviour of Denoise Latents node used for SD.
2024-09-14 00:42:31 +03:00
psychedelicious
865f419ffe
feat(ui): region starts w/ no prompts or ip adapters
2024-09-13 22:33:34 +10:00
psychedelicious
dc2ed2f1c1
feat(ui): bbox has black and white outline
2024-09-13 22:33:34 +10:00
psychedelicious
818a7a01cc
chore(ui): lint
2024-09-13 22:33:34 +10:00
psychedelicious
218b216ebd
feat(ui): filter process button does immediate processing
2024-09-13 22:33:34 +10:00
psychedelicious
eee3b7acf3
feat(ui): on-theme checkboard pattern colors
...
They were pure grayscale before. Now are tinted according to our base color.
2024-09-13 22:33:34 +10:00
psychedelicious
0a923cc77b
feat(ui): add filter/transform/delete to canvas context menu
2024-09-13 22:33:34 +10:00
psychedelicious
07df5c2d39
feat(ui): handle errors when saving canvas to gallery
2024-09-13 22:33:34 +10:00
psychedelicious
153533157f
docs(ui): update canvasToBlob docstring
2024-09-13 22:33:34 +10:00
psychedelicious
3898e09b8c
feat(ui): revised Result implementation
...
Use classes with `isOk` and `isErr` methods instead of separate type guard functions. Update tests and usage.
2024-09-13 22:33:34 +10:00
psychedelicious
277498bceb
feat(ui): show alert when selected layer is empty
2024-09-13 22:33:34 +10:00
psychedelicious
08078440cb
feat(ui): "Composite Masked Regions" -> "Output Only Masked Regions"
2024-09-13 22:33:34 +10:00
psychedelicious
73ea5cb42a
feat(ui): global canvas hotkey interaction restrictions
2024-09-13 22:33:34 +10:00
psychedelicious
3aaaae4d1c
feat(ui): more interaction restrictions
2024-09-13 22:33:34 +10:00
psychedelicious
fbe02e3d1d
fix(ui): do not show/hide objects when filtering
...
This is a holdover from before the buffer renderer was split out.
2024-09-13 22:33:34 +10:00
psychedelicious
790195854e
fix(ui): set opacity to 1 when rasterizing for filter
2024-09-13 22:33:34 +10:00
psychedelicious
a1179eb227
fix(ui): off-by-one layer zIndex
2024-09-13 22:33:34 +10:00
psychedelicious
e5792278b9
feat(ui): revised canvas "busyness" state tracking
...
Track various canvas states:
- Filtering an entity
- Transforming an entity
- Rasterizing an entity
- Compositing
- Busy (derived from all of the above)
Also track individual entity states:
- Locked
- Disabled
- All of type are hidden
- Has objects
- Interactable (derived from all of the above)
These states then gate various actions. For example:
- Cannot invoke while the canvas is busy.
- Cannot transform, filter, duplicate, or delete when the canvas is busy.
Tool interaction restrictions are not yet implemented.
2024-09-13 22:33:34 +10:00
psychedelicious
452e612235
fix(ui): wrong translation used for transform fit to bbox
2024-09-13 22:33:34 +10:00
psychedelicious
241fc18d69
feat(ui): add upload button to control layer
2024-09-13 22:33:34 +10:00
psychedelicious
eafd3d1ec7
feat(ui): select layer when dropping image on it to replace its data
2024-09-13 22:33:34 +10:00
psychedelicious
8506d98f34
feat(ui): brighter border around fill color buttons
2024-09-13 22:33:34 +10:00
psychedelicious
cb53772722
feat(ui): add setting to disable progress images on canvas
2024-09-13 22:33:34 +10:00
psychedelicious
5a8ce724db
feat(ui): close viewer on send image to canvas
2024-09-13 22:33:34 +10:00
psychedelicious
867026f11f
chore: release v5.0.0.a5
2024-09-13 22:31:17 +10:00
psychedelicious
a802b92684
fix(ui): allow canceling filter when config is invalid
2024-09-13 07:24:58 +10:00
psychedelicious
fd19b0691a
fix(ui): spandrel filter translations
2024-09-13 07:24:58 +10:00
psychedelicious
91a08086c0
fix(ui): spandrel filter infinite loop when no models installed
...
Closes #6835
2024-09-13 07:24:58 +10:00
Ryan Dick
2b3e4e123d
Split LoRA layer implementations into separate files.
2024-09-12 15:53:30 +00:00
psychedelicious
2622f7dc02
chore: release v5.0.0.a4
2024-09-13 00:04:07 +10:00
psychedelicious
1a598873de
fix(ui): show send to toggle on canvas only
2024-09-12 23:42:21 +10:00
psychedelicious
12cab9fc31
revert(ui): miniviewer
...
toodles
2024-09-12 23:42:21 +10:00
psychedelicious
6fb8e45761
feat(ui): do not show canvas progress in viewer
2024-09-12 23:42:21 +10:00
psychedelicious
637960d67e
fix(ui): remove unused setting, fix missing translation for alerts
2024-09-12 23:42:21 +10:00