2 Commits
Author SHA1 Message Date
Ikey Doherty c8a45b7303 Promote 0.7.1
Signed-off-by: Ikey Doherty <ikey@solus-project.com>
2017-12-19 14:22:20 +00:00
Ikey Doherty 1b932e94fa redirect: Demote debug to info
Signed-off-by: Ikey Doherty <ikey@solus-project.com>
2017-12-19 14:21:59 +00:00
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
project(
'linux-steam-integration',
['c'],
version: '0.7',
version: '0.7.1',
license: [
'LGPL-2.1',
],
+1 -1
View File
@@ -5,7 +5,7 @@ git submodule init
git submodule update
# Script for ikey because he went with meson. *shrug*
VERSION="0.7"
VERSION="0.7.1"
NAME="linux-steam-integration"
git-archive-all.sh --format tar --prefix ${NAME}-${VERSION}/ --verbose -t HEAD ${NAME}-${VERSION}.tar
xz -9 "${NAME}-${VERSION}.tar"
+4 -4
View File
@@ -612,10 +612,10 @@ static FILE *lsi_unity_redirect(const char *p, const char *modes)
return NULL;
}
lsi_log_info("fopen64(%s): Redirecting unity config '%s' to shm(%s)",
modes,
p,
lsi_table.unity3d.shm_path);
lsi_log_debug("fopen64(%s): Redirecting unity config '%s' to shm(%s)",
modes,
p,
lsi_table.unity3d.shm_path);
return ret;
}