aboutsummaryrefslogtreecommitdiff
path: root/picarones-elm (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-03-07Added basic nixos module (and restructured some files)stuebinm5-46/+54
Right now, this is capable of setting up a running instance of picarones in a couple lines of config (both backend server and the webapp, using nginx). More options should still be added, especially to make the backend's port configurable (but this requires adding features to the haskell code)
2021-03-07add example pdftoppm command to the coverstuebinm1-3/+5
2021-03-07Add simple cover which lets users create new linksstuebinm5-5/+117
2021-03-07do not load all slides at oncestuebinm1-1/+5
to prevent noticable load times when switching slides, picarones previously loaded all slides at once, and then only displayed whichever one was applicable. This cause problems with larger slidesets; instead, it now loads the current slides and the two previous and next slides (wrapping around at the end/beginning).
2021-03-07Load slides from url given in uri fragmentstuebinm3-10/+17
Syntax is: https://domain-to-app#<prefix-for-slides>#<number-of-slides> Slides must be .png image files numbered as 01.png, 02.png ...