diff --git a/README.md b/README.md index e8f74ff..37979eb 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ @@ -31,7 +32,7 @@ Available for Windows, macOS and Linux in [Releases](https://github.com/Pedro-Be Requires a github account to download and are only available for a 90 days after creation. - > WARNING May be completely broken and unusable + > May be completely broken and unusable ## Key Features diff --git a/src/icons/dsda-Launcher.desktop b/src/icons/dsda-Launcher.desktop index 8c551c7..0850c9e 100644 --- a/src/icons/dsda-Launcher.desktop +++ b/src/icons/dsda-Launcher.desktop @@ -1,10 +1,10 @@ [Desktop Entry] Type=Application Name=DSDA-Launcher -Comment=launcher for a enhanced clone of the classic first-person shooter Doom +Comment=This is a launcher GUI for the dsda-doom source port Icon=dsda-launcher TryExec=dsda-doom Exec=dsda-launcher Categories=Game;ActionGame; MimeType=application/x-doom-wad; -Keywords=first;person;shooter;doom;boom;mbf;prboom; +Keywords=first;person;shooter;doom;boom;mbf;prboom;dsda; diff --git a/src/icons/dsda-launcher.icns b/src/icons/dsda-launcher.icns index c9d078d..5ad8af0 100644 Binary files a/src/icons/dsda-launcher.icns and b/src/icons/dsda-launcher.icns differ diff --git a/src/icons/dsda-launcher.ico b/src/icons/dsda-launcher.ico old mode 100755 new mode 100644 index 5965713..76dbe7e Binary files a/src/icons/dsda-launcher.ico and b/src/icons/dsda-launcher.ico differ diff --git a/src/icons/dsda-launcher.png b/src/icons/dsda-launcher.png index c7d1972..e51ad77 100644 Binary files a/src/icons/dsda-launcher.png and b/src/icons/dsda-launcher.png differ diff --git a/src/icons/dsda-launcher.svg b/src/icons/dsda-launcher.svg new file mode 100644 index 0000000..612b010 --- /dev/null +++ b/src/icons/dsda-launcher.svg @@ -0,0 +1,81 @@ + + + + diff --git a/src/icons/icon-mac.sh b/src/icons/icon-mac.sh deleted file mode 100755 index 567b61e..0000000 --- a/src/icons/icon-mac.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env sh - -export PROJECT=dsda-launcher -export ICONDIR=$PROJECT.iconset -export PNGICON=$PROJECT.png - -mkdir -p $ICONDIR - -# Normal screen icons -for SIZE in 16 32 64 128 256 512; do -sips -z $SIZE $SIZE $PNGICON --out $ICONDIR/icon_${SIZE}x${SIZE}.png ; -done - -# Retina display icons -for SIZE in 32 64 256 512; do -sips -z $SIZE $SIZE $PNGGICON --out \ - $ICONDIR/icon_$(expr $SIZE / 2)x$(expr $SIZE / 2)x2.png ; -done - -# Make a multi-resolution Icon -iconutil -c icns -o $PROJECT.icns $ICONDIR -rm -rf $ICONDIR #it is useless now