diff --git a/.gitignore b/.gitignore index fa24b2e..f81d245 100644 --- a/.gitignore +++ b/.gitignore @@ -35,4 +35,4 @@ Makefile* # QtCtreator CMake CMakeLists.txt.user - +nohup.out diff --git a/CHANGELOG.md b/CHANGELOG.md index d8a768f..748d33a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ * unified checkboxes with m_* booleans, by tracking whether box is checked via INDEX_ variables for each ID of GUI elements. * look for ../textures/.png & .jpg 1st time pressing `t` +* Use alpha on textures by default + (see EMT_TRANSPARENT_ALPHA_CHANNEL_REF in Engine.cpp) ## [git] - 2019-03-09 (poikilos) diff --git a/build/install.sh b/build/install.sh index 003fb03..d4fba9d 100755 --- a/build/install.sh +++ b/build/install.sh @@ -70,8 +70,8 @@ fi if [ "@$PROFILE_ENABLE" = "@true" ]; then if [ ! -d "$dest_bin_dir" ]; then mkdir "$dest_bin_dir"; fi cp -f $src_path "$dest_bin_dir/" - icons_root="$USER/.local/share/icons" - applications_path="$USER/.local/share/applications" + icons_root="$HOME/.local/share/icons" + applications_path="$HOME/.local/share/applications" MIMETYPES_DB_PATH="$USER_MIMETYPES_DB_PATH" fi if [ ! -d "$icons_root" ]; then @@ -90,6 +90,7 @@ fi #if [ "@$PROFILE_ENABLE" = "@true" ]; then # always rewrite, since PREFIX may differ +echo "Rewriting $applications_path/$shortcut_name..." if [ -f "$shortcut_src_path" ]; then cat "$shortcut_src_path" | grep -v Exec= | grep -v Icon= > "$applications_path/$shortcut_name" echo "Exec=$dest_bin_dir/$project_unix_name" >> "$applications_path/$shortcut_name"