diff --git a/etc/icons/1024.png b/etc/icons/1024.png index 0b942cf..7d0ea83 100644 Binary files a/etc/icons/1024.png and b/etc/icons/1024.png differ diff --git a/etc/icons/128.png b/etc/icons/128.png index 4ec8629..559ffaf 100644 Binary files a/etc/icons/128.png and b/etc/icons/128.png differ diff --git a/etc/icons/16.png b/etc/icons/16.png index bb712b7..46428d2 100644 Binary files a/etc/icons/16.png and b/etc/icons/16.png differ diff --git a/etc/icons/256.png b/etc/icons/256.png index 48917c8..0b8e7b3 100644 Binary files a/etc/icons/256.png and b/etc/icons/256.png differ diff --git a/etc/icons/32.png b/etc/icons/32.png index e13160f..2899bfc 100644 Binary files a/etc/icons/32.png and b/etc/icons/32.png differ diff --git a/etc/icons/512.png b/etc/icons/512.png index 0cbb6fd..ab086e3 100644 Binary files a/etc/icons/512.png and b/etc/icons/512.png differ diff --git a/etc/icons/64.png b/etc/icons/64.png index 86de463..b98f729 100644 Binary files a/etc/icons/64.png and b/etc/icons/64.png differ diff --git a/etc/linux/net.kirsle.ProjectDoodle.desktop b/etc/linux/net.kirsle.ProjectDoodle.desktop index 3db6da4..8167cfc 100755 --- a/etc/linux/net.kirsle.ProjectDoodle.desktop +++ b/etc/linux/net.kirsle.ProjectDoodle.desktop @@ -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; diff --git a/scripts/fpm-bundle.sh b/scripts/fpm-bundle.sh index 101b15a..e81003a 100755 --- a/scripts/fpm-bundle.sh +++ b/scripts/fpm-bundle.sh @@ -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" diff --git a/scripts/mac-app.sh b/scripts/mac-app.sh index e9cc3b9..52d22c8 100755 --- a/scripts/mac-app.sh +++ b/scripts/mac-app.sh @@ -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"