Just a small update this time, which introduces styling. There isn't too much to say about this one, other than that some lines are now in bold, and the currently selected bookmark appears in yellow (and bold) to stand out more. Particularly useful if you have a lot of bookmarks and you tend to lose track of the cursor.
I had contemplated for a while if I should also use styling in the Typer to indicate the current position instead of using ;
as a cursor, but I finally opted not to since it would probably be more confusing. Instead, there is still a 'physical' cursor, but it's |
instead of ;
, and it's bold and yellow to stand out a bit more and make it more obviously a cursor instead of just another character in the string.
And while I was at it with the Typer and its cursor, I thought I might as well change the way the DEL
button works. Instead of deleting the whole string, it instead just deletes the one character after the cursor, like it works in all text processors. The reason I had the original function for the DEL
button is because it was a pain to clear the whole string because you had to repeatedly tap the BACKSPACE
button. But now you can hold it and clear any string with little to no effort, so the old functionality of the DEL
button wasn't needed anymore.
I plan to add custom styling to the bookmark names as well, but for now, I've disabled ASS tags, because it can break a few things here and there. I will have this added to the next release.
The undo/redo functions are coming. I just have to figure out what's the best way to handle them. I have a few good ideas, though.
New in version 1.3.1:
DEL
button now deletes the character after the cursor instead of clearing the whole string- Styling added for certain lines
- Currently selected line is now bold and yellow
- Typer cursor changed from
;
to a bold and yellow|
Future plans:
- Allow custom tags for bookmark styling
- Undo function
- Redo function