forked from pool/FreeFileSync
Eric Schirra
acf7cca251
- Update to 11.0 - Revised file layout on main grid - Skip download/upload when copying Google Drive files inside account - Support moving Google Drive files between shared drives and My Drive - Support copying Google Drive shortcuts between accounts - Support copying Google Docs, Sheets, Slides, etc. within account - Fixed parsing uninitialized Google Drive modification time - Fixed Google Drive file already existing check running too late - Ignore slash/backslash differences during manual search - Avoid creating orphan database entry if one DB file fails to load - Limit modification time error count for log file warning message - Support copying WSL symlinks - Avoid duplicate MTP/Google Drive item creation from multiple threads - Fixed TMPDIR not found during startup (macOS) - Added sync variant icons - Avoid redundant icon format conversions - Buffer high-DPI image scaling results - Improved MTP thumbnail scaling performance - Avoid race condition during parallel file icon rendering (Linux) - Allow creating folder name with leading/trailing spaces - Start supporting GTK3 (Linux) OBS-URL: https://build.opensuse.org/request/show/824675 OBS-URL: https://build.opensuse.org/package/show/network/FreeFileSync?expand=0&rev=34
13 lines
485 B
Diff
13 lines
485 B
Diff
--- FreeFileSync_11.0_Source_orig/FreeFileSync/Source/ffs_paths.cpp 2020-07-22 13:22:20.000000000 +0200
|
|
+++ FreeFileSync_11.0_Source/FreeFileSync/Source/ffs_paths.cpp 2020-08-04 15:21:24.667813874 +0200
|
|
@@ -64,7 +64,8 @@
|
|
|
|
Zstring fff::getResourceDirPf()
|
|
{
|
|
- return getProcessParentFolderPath() + FILE_NAME_SEPARATOR + Zstr("Resources") + FILE_NAME_SEPARATOR;
|
|
+ // for opensuse install to /usr/share/FreeFileSync specificly
|
|
+ return Zstr("/usr/share/FreeFileSync/");
|
|
}
|
|
|
|
|