Compare commits

..

11 Commits

Author SHA1 Message Date
Valentino Orlandi 96cd211988
Update
Updated Linux/BSD paths
2022-12-04 11:55:12 +01:00
Valentino Orlandi ef3d8a40e7
Fix 2022-11-22 23:01:08 +01:00
Valentino Orlandi 0b3fb7c6b6
Update
Version update: 1.01
2022-11-16 22:21:07 +01:00
Valentino Orlandi 3ae7c02e50
Updated translation files 2022-11-16 22:20:49 +01:00
Valentino Orlandi 68bcd41c60
Updated installation process 2022-11-16 22:20:18 +01:00
Valentino Orlandi 1a49f9d0b8
Added LICENSE 2022-10-23 16:59:48 +02:00
Valentino Orlandi 3397592442
Added CMake project file 2022-10-23 16:52:08 +02:00
Valentino Orlandi fbc8fb80f2
Added translation files and resources 2022-10-23 16:51:41 +02:00
Valentino Orlandi b91535735a
Added fonts licenses 2022-10-23 16:50:10 +02:00
Valentino Orlandi a920c5508c
Added resources 2022-10-23 16:47:14 +02:00
Valentino Orlandi 1a1b517f16
Added modules 2022-10-23 16:45:48 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -898,12 +898,12 @@ bool MainWindow::copyIcon()
bool ok = true;
std::error_code err;
const std::filesystem::path src_path = "installation_stuff/logdoctor.svg";
const std::filesystem::path src_path = "installation_stuff/LogDoctor.svg";
std::filesystem::path dst_path;
switch ( this->OS ) {
case 1:
// unix
dst_path = "/usr/share/icons/logdoctor.svg";
dst_path = "/usr/share/LogDoctor/LogDoctor.svg";
break;
case 2:
// windows

View File

@ -76,7 +76,7 @@ private:
const unsigned int OS = 1;
const std::filesystem::path exec_path = "/usr/bin";
const std::filesystem::path conf_path = home_path + "/.config/LogDoctor";
const std::filesystem::path data_path = home_path + "/.local/share/LogDoctor";
const std::filesystem::path data_path = "/usr/share/LogDoctor";
#else
#error "System not supported"
#endif