add texture alpha transparency feature to changelog

master
poikilos 2019-04-08 23:48:01 -04:00
parent 49ac8c9a5b
commit 34d07b3d18
3 changed files with 6 additions and 3 deletions

2
.gitignore vendored
View File

@ -35,4 +35,4 @@ Makefile*
# QtCtreator CMake
CMakeLists.txt.user
nohup.out

View File

@ -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/<model basename>.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)

View File

@ -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"