Our build system now produce linux files that are not recognized by Ubuntu file explorer as executables though they are.
I wrote yet another simple script

to install dash-qt from downloaded archive and to give it a nice icon.
Here is what you need to do:
1) After you extracted downloaded archive you should have dash-0.12.0 folder somewhere.
Go inside it, create a file named install_dash_qt.sh and edit it with your favorite editor:
#!/bin/bash
sudo -s install -m 0755 -o root -g root -tusr/local/bin bin/dash-qt
echo "[Desktop Entry]
Name=Dash-Qt
Comment=Dash - Reinventing Cryptocurrency https://www.dashpay.io
Type=Application
Exec=dash-qt %u
Terminal=false
Icon=/usr/share/pixmaps/dash128.xpm
MimeType=x-scheme-handler/dash
Categories=Applications;Finance;" > ~/Desktop/Dash-Qt.desktop
chmod u+x ~/Desktop/Dash-Qt.desktop
sudo cp ~/Desktop/Dash-Qt.desktopusr/share/applications/
sudo wget -Ousr/share/pixmaps/dash128.xpm https://github.com/dashpay/dash/raw/master/share/pixmaps/bitcoin128.xpm
2) Right click on empty space in that folder and choose "Open in Terminal". In command line issue:
chmod u+x install_dash_qt.sh
to make file executable and
./install_dash_qt.sh
to run it.
Enter your password and shortly after you should have a nice icon on your Desktop and the same icon in Applications.
Enjoy!

PS. This script reguires wget. Install it first if you don't have it already
sudo apt-get install wget
EDIT:
"su -c" requires you to set root password which "normal"/non-developer users do not have at all (by ubuntu's default)
Changed script to use "sudo -s" instead, give it a try if you had problems before