diff --git a/todo.org b/todo.org index 8379d96..5388bc0 100644 --- a/todo.org +++ b/todo.org @@ -1,10 +1,10 @@ #+TITLE: The Task list for Lumina -* TODO [#A] Develop DnD for library items -This is limited by the fact that I need to develop this in cosmic. I am honestly thinking that I'll need to build my own drag and drop system or at least work with system76 to fix their dnd system on other systems. - -This needs lots more attention +* TODO Move text_generation function to be asynchronous so that UI doesn't lock up during song editing. +* TODO Build a video editor +* TODO Build an image editor +* TODO Build a presentation editor * TODO [#A] Need to fix tests now that the basic app is working @@ -23,13 +23,15 @@ This also means in our custom widget with our custom fork, we can animate each i ** Actually..... I tried out a way of generating the svg and rasterizing it ahead of time and then storing it in the file system to be cached. This works out very well. The text is one whole image for a slides text that gets layered on top of the background, but it works out well for now. -* TODO Check into =mupdf-rs= for loading PDF's. +The problem with this approach is that every change to a song's text or font metrics means we need to rebuild all the text items for that song. I need to think of a way for the text generation to be done asynchronously so that the ui isn't locked up. * TODO [#C] Make the presenter more modular so things are easier to change. * TODO Build library to see all available songs, images, videos, presentations, and slides ** DONE Develop ui for libraries I've got the library basic layer done, I need to develop a way to open the libraries accordion button and then show the list of items in the library +** TODO Need to do search and creation systems yet + * TODO [#B] Build editors for each possible item ** TODO Develop ui for editors @@ -39,8 +41,10 @@ I've got the library basic layer done, I need to develop a way to open the libra * TODO [#B] Functions for text alignments This will need to be matched on for the =TextAlignment= from the user + * TODO [#C] Figure out why the Video element seems to have problems when moving the mouse around -* TODO [#B] Find a way to load and discover every font on the system for slide building + +* DONE [#B] Find a way to load and discover every font on the system for slide building This may not be necessary since it is possible to create a font using =Box::leak()=. #+begin_src rust let font = self.current_slide.font().into_boxed_str(); @@ -60,8 +64,15 @@ This code creates a font by leaking the Box to a ='static &str=. I just am not s Krimzin on Discord told me that maybe the =update= method is a better place for this Box to be created or updated and then maybe I could generate the view from there. +* DONE [#A] Develop DnD for library items +This is limited by the fact that I need to develop this in cosmic. I am honestly thinking that I'll need to build my own drag and drop system or at least work with system76 to fix their dnd system on other systems. + +This needs lots more attention + * DONE Use Rich Text instead of normal text for slides This will make it so that we can add styling to the text like borders and backgrounds or highlights. Maybe in the future it'll add shadows too. +* DONE Check into =mupdf-rs= for loading PDF's. + * DONE Find a way for text to pass through a service item to a slide i.e. content piece This proved easier by just creating the =Slide= first and inserting it into the =ServiceItem=. * DONE [#A] Change return type of all components to an Action enum instead of the Task type [0%] [0/0]