You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a list of ideas for cleaning up the application
Make ui.rs a module folder and break out components
Evaluate using a trait or struct for image operators
Move the message sender into the Player and remove the need to pass it to load()
Make paint a normal image operator
Use egui input for shortcuts
Add lints, such as forced documentation
Add clippy lint to CI
Move channel display to a shader
Evaluate using system fonts for Simplified Chinese, Japanese, Korean and Arabic
Send egui context to threads and functions that need to repaint instead of relying on the app entering the next frame.
Work around the fact that notan egui does not calculate the rect that is not covered by panels (calculate the size by storing a rect that starts from info panel to edit panel). This rect should be used to center elements and act as a clip rect for operations such as annotate, measure and operators like crop.
Make sure image is premultiplied when image stack is processed
Replace webp-sys with webp from image
Make sure webp animations work
The text was updated successfully, but these errors were encountered:
Keeping names consistent should be here as well! For example, things like "caret" are still left over in several parts (including my own parts like icons) and should be "chevron" going forwards.
This is a list of ideas for cleaning up the application
Player
and remove the need to pass it toload()
The text was updated successfully, but these errors were encountered: