-updated ramdisk class so the project is compilable on older qt
 builds < v6.5.
-more fixes to build.py to work with newer versions of qt and
 less manual steps to take.
This commit is contained in:
zii 2025-02-02 16:01:48 -05:00
parent f4b2f0ce72
commit 5093ee6c8b
4 changed files with 9 additions and 6 deletions

11
build.py Normal file → Executable file
View File

@ -19,6 +19,9 @@ def get_app_name(text):
def get_qt_path():
try:
if os.path.exists("/usr/lib/qt6/bin"):
return "/usr/lib/qt6/bin"
return str(subprocess.check_output(["qtpaths6", "--binaries-dir"]), 'utf-8').strip()
except:
@ -26,8 +29,8 @@ def get_qt_path():
return input("Please enter the QT bin path (leave blank to cancel the build): ")
def get_qt_lib_path():
output = str(subprocess.check_output(["qtpaths6", "--query"]), 'utf-8').strip()
def get_qt_lib_path(qt_bin):
output = str(subprocess.check_output([qt_bin + "/qtpaths6", "--query"]), 'utf-8').strip()
lines = output.split("\n")
ret = ""
@ -196,7 +199,7 @@ def platform_setup():
ins_packages = list_installed_packages()
like_distro = get_like_distro()
dep_pkgs_a = ["pkg-config", "make", "g++"]
dep_pkgs_b = ["ffmpeg", "libfuse-dev", "fuse3", "imagemagick", "qt6-base-dev"]
dep_pkgs_b = ["ffmpeg", "libfuse3-dev", "libfuse-dev", "fuse3", "imagemagick", "qt6-base-dev"]
if not list_of_words_in_text(dep_pkgs_a, ins_packages) or not list_of_words_in_text(dep_pkgs_b, ins_packages):
if ("ubuntu" in like_distro) or ("debian" in like_distro) or ("linuxmint" in like_distro):
@ -231,7 +234,7 @@ def main():
qt_bin = get_qt_path()
if qt_bin != "":
qt_lib = get_qt_lib_path()
qt_lib = get_qt_lib_path(qt_bin)
if qt_lib == "":
exit(1)

0
install.py Normal file → Executable file
View File

View File

@ -41,7 +41,7 @@
using namespace std;
#define APP_VERSION "3.6.t8"
#define APP_VERSION "3.6.t9"
#define APP_NAME "JustMotion"
#define APP_TARGET "jmotion"
#define DATETIME_FMT "yyyyMMddhhmmss"

View File

@ -252,7 +252,7 @@ QString RamDisk::getFileName(const QString &basePath, const QString &fullPath)
if (name.startsWith("/"))
{
name.removeFirst();
name = name.mid(1);
}
if (name.indexOf("/") == -1)