This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efm2.
View the commit online.
commit a65c5c385df4b6115c5c721300fc229213e1545e
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Tue Sep 12 22:47:39 2023 +0100
move thumbs into efm dir
---
src/backends/default/open.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/backends/default/open.c b/src/backends/default/open.c
index ba11475..a7673cd 100644
--- a/src/backends/default/open.c
+++ b/src/backends/default/open.c
@@ -96,7 +96,7 @@ _file_thumb_flush(void)
// build thumb command:
// thumb FILE_PATH MIME THUMBNAIL_PATH
// e.g.
- // thumb /path/to/f.jpg image/jpeg /home/u/.e/e/thumbs/f8/2a18.eet
+ // thumb /path/to/f.jpg image/jpeg /home/u/.e/e/efm/thumbs/f8/2a18.eet
eina_strbuf_reset(strbuf);
eina_strbuf_append(strbuf, getenv("EFM_BACKEND_DIR"));
eina_strbuf_append(strbuf, "/thumb ");
@@ -124,7 +124,7 @@ _file_thumb_find(const char *path, const char *mime EINA_UNUSED)
eina_sha1((const unsigned char *)path, strlen(path), sha);
sha1_str(sha, shastr);
- snprintf(buf, sizeof(buf), "%s/thumbs/%c%c/%s.eet", config_dir,
+ snprintf(buf, sizeof(buf), "%s/efm/thumbs/%c%c/%s.eet", config_dir,
shastr[0], shastr[1], shastr + 2);
return strdup(buf);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.