<feed xmlns='http://www.w3.org/2005/Atom'>
<title>picarones/picarones-elm, branch master</title>
<subtitle>"next slide please!" as a service
</subtitle>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/picarones/'/>
<entry>
<title>layout adjustments for the display mode</title>
<updated>2021-03-15T20:17:40+00:00</updated>
<author>
<name>stuebinm</name>
</author>
<published>2021-03-15T20:17:40+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/picarones/commit/?id=bb28425a3773c54ab1a7d83c4bb1c85000f3b0bd'/>
<id>bb28425a3773c54ab1a7d83c4bb1c85000f3b0bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a display view which does nothing but display the slides</title>
<updated>2021-03-15T17:38:02+00:00</updated>
<author>
<name>stuebinm</name>
</author>
<published>2021-03-15T17:38:02+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/picarones/commit/?id=0596b9f6c561daa67945adb81570efd30650dffd'/>
<id>0596b9f6c561daa67945adb81570efd30650dffd</id>
<content type='text'>
(should be useful e.g. as input for a screen recorder)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(should be useful e.g. as input for a screen recorder)
</pre>
</div>
</content>
</entry>
<entry>
<title>small bugfixes</title>
<updated>2021-03-08T19:24:11+00:00</updated>
<author>
<name>stuebinm</name>
</author>
<published>2021-03-08T19:24:11+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/picarones/commit/?id=baaaa849feeee2403c70cc0141c766c3fe214403'/>
<id>baaaa849feeee2403c70cc0141c766c3fe214403</id>
<content type='text'>
 - delete copy of example folder in picarones-elm which broke the build
 - actually check if the service should be enabled before building it
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - delete copy of example folder in picarones-elm which broke the build
 - actually check if the service should be enabled before building it
</pre>
</div>
</content>
</entry>
<entry>
<title>Added basic nixos module (and restructured some files)</title>
<updated>2021-03-07T22:52:19+00:00</updated>
<author>
<name>stuebinm</name>
</author>
<published>2021-03-07T22:52:19+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/picarones/commit/?id=92c1ef1af95740077282d773242fdd1820c8d15b'/>
<id>92c1ef1af95740077282d773242fdd1820c8d15b</id>
<content type='text'>
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)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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)
</pre>
</div>
</content>
</entry>
<entry>
<title>add example pdftoppm command to the cover</title>
<updated>2021-03-07T21:32:54+00:00</updated>
<author>
<name>stuebinm</name>
</author>
<published>2021-03-07T21:32:54+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/picarones/commit/?id=09eeb58abb279e1049493460a7a99124aa4d9a78'/>
<id>09eeb58abb279e1049493460a7a99124aa4d9a78</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add simple cover which lets users create new links</title>
<updated>2021-03-07T21:04:42+00:00</updated>
<author>
<name>stuebinm</name>
</author>
<published>2021-03-07T21:04:42+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/picarones/commit/?id=d8925def7fa6a359e11e612527d12a0280f44d84'/>
<id>d8925def7fa6a359e11e612527d12a0280f44d84</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>do not load all slides at once</title>
<updated>2021-03-07T18:38:32+00:00</updated>
<author>
<name>stuebinm</name>
</author>
<published>2021-03-07T18:38:32+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/picarones/commit/?id=f5c19d2061e03ef28c45efd839bb211e446b25f6'/>
<id>f5c19d2061e03ef28c45efd839bb211e446b25f6</id>
<content type='text'>
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).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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).
</pre>
</div>
</content>
</entry>
<entry>
<title>Load slides from url given in uri fragment</title>
<updated>2021-03-07T17:37:10+00:00</updated>
<author>
<name>stuebinm</name>
</author>
<published>2021-03-07T17:37:10+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/picarones/commit/?id=8b3ca704c66d7815e6f932e92a493f9aae44d74b'/>
<id>8b3ca704c66d7815e6f932e92a493f9aae44d74b</id>
<content type='text'>
Syntax is: https://domain-to-app#&lt;prefix-for-slides&gt;#&lt;number-of-slides&gt;

Slides must be .png image files numbered as 01.png, 02.png ...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Syntax is: https://domain-to-app#&lt;prefix-for-slides&gt;#&lt;number-of-slides&gt;

Slides must be .png image files numbered as 01.png, 02.png ...
</pre>
</div>
</content>
</entry>
<entry>
<title>Join subtrees and integrate meta info / gitignore</title>
<updated>2021-03-07T17:36:43+00:00</updated>
<author>
<name>stuebinm</name>
</author>
<published>2021-03-07T15:59:38+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/picarones/commit/?id=090041fadec2e2896c3b82ef518096313d452c13'/>
<id>090041fadec2e2896c3b82ef518096313d452c13</id>
<content type='text'>
git-subtree-dir: picarones-elm
git-subtree-mainline: 2ad5d413aa958a1c2fe75ce7aa155576e9a80345
git-subtree-split: f4a1ee55987b7c58745dc5865c4ecf30874a3564
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-subtree-dir: picarones-elm
git-subtree-mainline: 2ad5d413aa958a1c2fe75ce7aa155576e9a80345
git-subtree-split: f4a1ee55987b7c58745dc5865c4ecf30874a3564
</pre>
</div>
</content>
</entry>
</feed>
