0.9.0.0 (2023-09-13)
* Add proper support for speaker notes (#142)
You can configure `patat` to write the speaker notes for the current slide
to a file whenever the slide changes:
patat:
speakerNotes:
file: /tmp/notes.txt
Then, you can display these in a second terminal (presumably on a second
monitor) by just displaying this file whenever it changes. [entr] is one
way to do that:
echo /tmp/notes.txt | entr -s 'clear; cat /tmp/notes.txt'
[entr]: http://eradman.com/entrproject/
Alternatively, just use a second `patat` instance with `--watch` enabled:
patat -w /tmp/notes.txt
* Add support for showing plain text files (#141)
This isn't super useful on its own, it's meant to support speaker notes.
* Add syntaxDefinitions to settings (#140)
This allows users to add custom kate highlighting XML files in the settings:
---
patat:
syntaxDefinitions:
- 'impurescript.xml'
...
Here is some *im*purescript:
```impurescript
...
```