New icons and update rpm/deb/macOS scripts

loading-screen
Noah 2021-03-31 21:22:13 -07:00
parent dc1f0721c2
commit f5d814283c
10 changed files with 13 additions and 13 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 750 B

After

Width:  |  Height:  |  Size: 785 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -1,12 +1,12 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=Project: Doodle
GenericName=Project Doodle
X-GNOME-FullName=Project: Doodle - A drawing-based maze game
Name=Sketchy Maze
GenericName=Maze Game
X-GNOME-FullName=Sketchy Maze - A drawing-based maze game
Comment=A drawing-based maze game.
Exec=/opt/project-doodle/doodle
Path=/opt/project-doodle
Exec=/opt/sketchy-maze/doodle
Path=/opt/sketchy-maze
Icon=project-doodle
StartupNotify=true
Keywords=game;maze;

View File

@ -3,7 +3,7 @@
# fpm-bundle: create bundles for the app.
VERSION=`egrep -e 'Version\s+=' ../../pkg/branding/branding.go | head -n 1 | cut -d '"' -f 2`
INSTALL_ROOT="/opt/project-doodle"
INSTALL_ROOT="/opt/sketchy-maze"
LAUNCHER_FILE="../../etc/linux/net.kirsle.ProjectDoodle.desktop"
LAUNCHER_ROOT="/usr/share/applications" # Where the .desktop file goes.
ICON_ROOT="/usr/share/icons/hicolor/"
@ -47,17 +47,17 @@ echo =====================
# RPM Package
fpm -C ./root -s dir -t rpm \
-d SDL2 -d SDL2_ttf -a x86_64 \
-n project-doodle -v ${VERSION} \
-n sketchy-maze -v ${VERSION} \
--license="Copyright" \
--maintainer=noah@kirsle.net \
--description="Project: Doodle - A drawing-based maze game." \
--url="https://www.kirsle.net/doodle"
--description="Sketchy Maze - A drawing-based maze game." \
--url="https://www.sketchymaze.com"
# Debian Package
fpm -C ./root -s dir -t deb \
-d libsdl2 -d libsdl2-ttf -a x86_64 \
-n project-doodle -v ${VERSION} \
-n sketchy-maze -v ${VERSION} \
--license="Copyright" \
--maintainer=noah@kirsle.net \
--description="Project: Doodle - A drawing-based maze game." \
--url="https://www.kirsle.net/doodle"
--description="Sketchy Maze - A drawing-based maze game." \
--url="https://www.sketchymaze.com"

View File

@ -4,7 +4,7 @@
# containing the doodad binaries (subdirectory of /dist from git repo root)
VERSION=`grep -e 'Version =' ../../pkg/branding/branding.go | head -n 1 | cut -d '"' -f 2`
INSTALL_ROOT="/opt/project-doodle"
INSTALL_ROOT="/opt/sketchy-maze"
APP_NAME="Project Doodle.app"
APP_FOLDER="../../etc/macos/$APP_NAME"
APP_CONTENTS="$APP_NAME/Contents"