From 5e9f4eea451a77ba3b93db3747841ed2bd969e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 30 Sep 2018 14:09:20 +0200 Subject: New upstream version 0.30.1 --- src/AppDirs.vala | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'src/AppDirs.vala') diff --git a/src/AppDirs.vala b/src/AppDirs.vala index ffea859..74b045f 100644 --- a/src/AppDirs.vala +++ b/src/AppDirs.vala @@ -258,6 +258,15 @@ class AppDirs { return subdir; } +#if ENABLE_FACES + public static File get_resources_dir() { + File? install_dir = get_install_dir(); + + return (install_dir != null) ? install_dir.get_child("share").get_child("shotwell") + : get_exec_dir(); + } +#endif + public static File get_lib_dir() { File? install_dir = get_install_dir(); @@ -302,6 +311,11 @@ class AppDirs { // If we're running installed. f = AppDirs.get_libexec_dir () .get_child ("shotwell").get_child (filename); } + + if (!f.query_exists()) { + f = AppDirs.get_libexec_dir().get_parent().get_child("thumbnailer").get_child(filename); + } + return f; } @@ -314,5 +328,25 @@ class AppDirs { } return f; } + +#if ENABLE_FACES + public static File get_facedetect_bin() { + const string filename = "shotwell-facedetect"; + File f = AppDirs.get_libexec_dir().get_parent().get_child("facedetect").get_child (filename); + if (!f.query_exists()) { + f = AppDirs.get_libexec_dir().get_child("shotwell").get_child(filename); + } + return f; + } + + public static File get_haarcascade_file() { + File f = File.new_for_path(AppDirs.get_exec_dir().get_parent().get_parent().get_child("facedetect").get_child("facedetect-haarcascade.xml").get_path()); + if (f.query_exists()) {//testing meson builddir + return f; + } + return get_resources_dir().get_child("facedetect-haarcascade.xml"); + } +#endif + } -- cgit v1.2.3