summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-23 16:35:43 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-23 16:35:43 +0200
commiteedb4f6b2f60d1b80aa8d17eaace5d213b7be82d (patch)
treee739acd526099fd4186badd2be9d294a48e82833 /Kernel
parentcf0d05d54a54279cf4f543c4bb9c674c66b54e57 (diff)
downloadserenity-eedb4f6b2f60d1b80aa8d17eaace5d213b7be82d.zip
QuickShow: Allow panning and zooming the image instead of stretching it.
This needs more work and polish, but it's a step in a more pleasant and useful direction. Also turn QuickShow into a fully-fledged "application". (By that, I really just mean giving it its own Applications/ subdirectory.)
Diffstat (limited to 'Kernel')
-rwxr-xr-xKernel/build-root-filesystem.sh2
-rwxr-xr-xKernel/makeall.sh1
2 files changed, 3 insertions, 0 deletions
diff --git a/Kernel/build-root-filesystem.sh b/Kernel/build-root-filesystem.sh
index 8850ed8b65..2ceb29e49b 100755
--- a/Kernel/build-root-filesystem.sh
+++ b/Kernel/build-root-filesystem.sh
@@ -72,6 +72,7 @@ cp ../Applications/Taskbar/Taskbar mnt/bin/Taskbar
cp ../Applications/Terminal/Terminal mnt/bin/Terminal
cp ../Applications/TextEditor/TextEditor mnt/bin/TextEditor
cp ../Applications/PaintBrush/PaintBrush mnt/bin/PaintBrush
+cp ../Applications/QuickShow/QuickShow mnt/bin/QuickShow
cp ../Demos/HelloWorld/HelloWorld mnt/bin/HelloWorld
cp ../Demos/RetroFetch/RetroFetch mnt/bin/RetroFetch
cp ../Demos/WidgetGallery/WidgetGallery mnt/bin/WidgetGallery
@@ -99,6 +100,7 @@ ln -s VisualBuilder mnt/bin/vb
ln -s WidgetGallery mnt/bin/wg
ln -s TextEditor mnt/bin/te
ln -s PaintBrush mnt/bin/pb
+ln -s QuickShow mnt/bin/qs
echo "done"
# Run local sync script, if it exists
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh
index 12d5edfb7b..6ab41fec29 100755
--- a/Kernel/makeall.sh
+++ b/Kernel/makeall.sh
@@ -30,6 +30,7 @@ build_targets="$build_targets ../Applications/IRCClient"
build_targets="$build_targets ../Applications/Taskbar"
build_targets="$build_targets ../Applications/Downloader"
build_targets="$build_targets ../Applications/PaintBrush"
+build_targets="$build_targets ../Applications/QuickShow"
build_targets="$build_targets ../DevTools/VisualBuilder"
build_targets="$build_targets ../Games/Minesweeper"
build_targets="$build_targets ../Games/Snake"