From 66c903424cb23c443714cd5e8b1aba16b5baff6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kleines=20Filmr=C3=B6llchen?= Date: Fri, 21 Oct 2022 16:57:39 +0200 Subject: [PATCH] Base: Add an example presentation This contains CatDog and uses most of the currently supported features. --- .../Documents/Example Presentation.presenter | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 Base/home/anon/Documents/Example Presentation.presenter diff --git a/Base/home/anon/Documents/Example Presentation.presenter b/Base/home/anon/Documents/Example Presentation.presenter new file mode 100644 index 0000000000..6e7f4267ab --- /dev/null +++ b/Base/home/anon/Documents/Example Presentation.presenter @@ -0,0 +1,66 @@ +{ + "version": 1, + "metadata": { + "author": "CatDog", + "title": "Example presentation", + "last-modified": "2022-10-21T14:50:00", + "width": 320, + "aspect": "16:9" + }, + "templates": {}, + "slides": [ + { + "title": "Introduction", + "objects": [ + { + "type": "text", + + "text": "Welcome to Presenter!", + + "rect": [20, 20, 280, 30], + "color": "#000000", + "font": "Liberation Serif", + "font-size": 18, + "font-weight": "Bold", + "text-alignment": "Center" + }, + { + "type": "text", + + "text": "This program is very cool. It supports:\n - Scaling properly to the window\n - Text\n - Switching between slides\n - that's all for now lol", + + "rect": [20, 60, 280, 140], + "color": "#2f0000", + "font": "Liberation Serif", + "font-size": 8, + "font-weight": "Regular", + "text-alignment": "TopLeft" + } + ] + }, + { + "title": "The Second Slide", + "objects": [ + { + "type": "text", + "text": "CatDog likes this program!", + + "rect": [20, 10, 280, 40], + "color": "#2f0000", + "font": "Liberation Serif", + "font-size": 7, + "font-weight": "Regular", + "text-alignment": "Center" + }, + { + "type": "image", + + "rect": [50, 50, 200, 100], + "path": "/res/icons/catdog/alert.png", + "scaling": "fit-smallest", + "scaling-mode": "nearest-neighbor" + } + ] + } + ] +}