diff -Nru appimagelauncher-202004192046-stable/BUILD.md appimagelauncher-202004252016-stable/BUILD.md --- appimagelauncher-202004192046-stable/BUILD.md 1970-01-01 00:00:00.000000000 +0000 +++ appimagelauncher-202004252016-stable/BUILD.md 2020-04-25 20:16:48.000000000 +0000 @@ -0,0 +1,62 @@ +# How to build AppImageLauncher + +If there are no pre-build binaries for your platform you may consider to build AppImageLauncher yourself. Please follow these instructions. + + +## Download source + +This step is only required if you would like to build the source from GitHub. *If you have a local copy, please skip this section.* + +You can download the source either using Git or by mannually downloading a tarball on the [Releases page](https://github.com/TheAssassin/AppImageLauncher/releases). + +The branch can be customized by setting the `-b` or `--branch` argument. Select `stable` to download the current stable source or use `master` to get the most current unstable source containing the latest features. + +```shell +git clone https://github.com/TheAssassin/AppImageLauncher.git -b stable +cd AppImageLauncher +git submodule update --init --recursive +``` + + +## Dependencies + +All dependencies need to be installed as development libraries. Some names may differ on your system. + + - make + - cmake + - glib-2 + - cairo + - librsvg + - fuse + - libarchive + - libXpm + - qt5 + - libcurl + - boost + + +## Build + +Please update the `PREFIX` if you want. The prefix is the location the final application will be installed to. Usual locations may be `/usr/local` (default), `/usr`, `~/.local` or `/opt`. + +```shell +export PREFIX="/usr/local/" +mkdir build +cd build + +cmake .. -DCMAKE_INSTALL_PREFIX="$PREFIX" + +# See https://github.com/TheAssassin/AppImageLauncher/issues/251 for more details why this is required +make libappimage libappimageupdate libappimageupdate-qt +cmake . + +make +``` + +Now you may create a distribution package or alternatively install the source for testing purpose. + +*Note: This may harm your system. It's highly recommended to build and install distribution packages instead.* + +```shell +sudo make install +``` diff -Nru appimagelauncher-202004192046-stable/cmake/cpack_deb.cmake appimagelauncher-202004252016-stable/cmake/cpack_deb.cmake --- appimagelauncher-202004192046-stable/cmake/cpack_deb.cmake 2020-04-19 20:46:31.000000000 +0000 +++ appimagelauncher-202004252016-stable/cmake/cpack_deb.cmake 2020-04-25 20:16:48.000000000 +0000 @@ -87,7 +87,7 @@ @ONLY ) configure_file( - ${PROJECT_SOURCE_DIR}//resources/install-scripts/post-uninstall.in + ${PROJECT_SOURCE_DIR}/resources/install-scripts/post-uninstall.in ${PROJECT_BINARY_DIR}/cmake/debian/postrm @ONLY ) diff -Nru appimagelauncher-202004192046-stable/cmake/install.cmake appimagelauncher-202004252016-stable/cmake/install.cmake --- appimagelauncher-202004192046-stable/cmake/install.cmake 2020-04-19 20:46:31.000000000 +0000 +++ appimagelauncher-202004252016-stable/cmake/install.cmake 2020-04-25 20:16:48.000000000 +0000 @@ -1,6 +1,9 @@ -# define private libraries install destionation +# define private libraries install destination include(GNUInstallDirs) -message(${CMAKE_INSTALL_LIBDIR}) + +# debugging: libdir should be lib/ +message(STATUS "CMAKE_INSTALL_LIBDIR: ${CMAKE_INSTALL_LIBDIR}") + if(NOT IS_ABSOLUTE ${CMAKE_INSTALL_LIBDIR}) set(_libdir ${CMAKE_INSTALL_LIBDIR}) else() diff -Nru appimagelauncher-202004192046-stable/cmake/versioning.cmake appimagelauncher-202004252016-stable/cmake/versioning.cmake --- appimagelauncher-202004192046-stable/cmake/versioning.cmake 2020-04-19 20:46:31.000000000 +0000 +++ appimagelauncher-202004252016-stable/cmake/versioning.cmake 2020-04-25 20:16:48.000000000 +0000 @@ -1,6 +1,6 @@ set(V_MAJOR 2) set(V_MINOR 1) -set(V_PATCH 2) +set(V_PATCH 3) set(V_SUFFIX "") set(APPIMAGELAUNCHER_VERSION ${V_MAJOR}.${V_MINOR}.${V_PATCH}${V_SUFFIX}) diff -Nru appimagelauncher-202004192046-stable/debian/changelog appimagelauncher-202004252016-stable/debian/changelog --- appimagelauncher-202004192046-stable/debian/changelog 2020-04-19 20:46:35.000000000 +0000 +++ appimagelauncher-202004252016-stable/debian/changelog 2020-04-25 20:16:55.000000000 +0000 @@ -1,8 +1,8 @@ -appimagelauncher (202004192046-stable-e405182~ubuntu19.10.1) eoan; urgency=low +appimagelauncher (202004252016-stable-7408819~ubuntu19.10.1) eoan; urgency=low * Auto build. - -- Launchpad Package Builder Sun, 19 Apr 2020 20:46:35 +0000 + -- Launchpad Package Builder Sat, 25 Apr 2020 20:16:55 +0000 appimagelauncher (1.2.2+dfsg-1) unstable; urgency=medium diff -Nru appimagelauncher-202004192046-stable/debian/git-build-recipe.manifest appimagelauncher-202004252016-stable/debian/git-build-recipe.manifest --- appimagelauncher-202004192046-stable/debian/git-build-recipe.manifest 2020-04-19 20:46:35.000000000 +0000 +++ appimagelauncher-202004252016-stable/debian/git-build-recipe.manifest 2020-04-25 20:16:55.000000000 +0000 @@ -1,3 +1,3 @@ -# git-build-recipe format 0.4 deb-version 202004192046-stable-e405182 -lp:appimagelauncher git-commit:e405182e23ca8b6b753f334ae69f69b330ef0d7e +# git-build-recipe format 0.4 deb-version 202004252016-stable-7408819 +lp:appimagelauncher git-commit:7408819cc359950a137a7c626a69486f45a70be1 merge packaging lp:~appimagelauncher-team/appimagelauncher/+git/packaging git-commit:8fb01e65738f4ddf6a8d6841a84eea2d63606df7 diff -Nru appimagelauncher-202004192046-stable/i18n/desktopfiles.nl.json appimagelauncher-202004252016-stable/i18n/desktopfiles.nl.json --- appimagelauncher-202004192046-stable/i18n/desktopfiles.nl.json 1970-01-01 00:00:00.000000000 +0000 +++ appimagelauncher-202004252016-stable/i18n/desktopfiles.nl.json 2020-04-25 20:16:48.000000000 +0000 @@ -0,0 +1,4 @@ +{ + "Desktop Action remove/Name": "AppImage deïnstalleren", + "Desktop Action update/Name": "AppImage bijwerken" +} diff -Nru appimagelauncher-202004192046-stable/i18n/desktopfiles.pl.json appimagelauncher-202004252016-stable/i18n/desktopfiles.pl.json --- appimagelauncher-202004192046-stable/i18n/desktopfiles.pl.json 1970-01-01 00:00:00.000000000 +0000 +++ appimagelauncher-202004252016-stable/i18n/desktopfiles.pl.json 2020-04-25 20:16:48.000000000 +0000 @@ -0,0 +1,4 @@ +{ + "Desktop Action remove/Name": "Usuń AppImage z systemu", + "Desktop Action update/Name": "Uaktualnij AppImage" +} diff -Nru appimagelauncher-202004192046-stable/i18n/ui.nl.ts appimagelauncher-202004252016-stable/i18n/ui.nl.ts --- appimagelauncher-202004192046-stable/i18n/ui.nl.ts 1970-01-01 00:00:00.000000000 +0000 +++ appimagelauncher-202004252016-stable/i18n/ui.nl.ts 2020-04-25 20:16:48.000000000 +0000 @@ -0,0 +1,766 @@ + + + + + FirstRunDialog + + + First run + Eerste opstart + + + + <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> + <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welkom bij AppImageLauncher!</span></p><p>Dit hulpprogramma is ontworpen om je AppImage-ervaring te verbeteren.</p><p>Het lijkt er op dat dit de eerste opstart is. Neem een minuutje de tijd om je voorkeuren op te geven. Je kunt alles achteraf nog aanpassen middels het configuratiescherm.</p></body></html> + + + + Ask me whether to move new AppImages into a central location + Vragen of AppImages moeten worden verplaatst naar een centrale locatie + + + + Integration target destination directory: + Integratie-doelmap: + + + + Customize + Aanpassen + + + + Choose integration destination dir + Kies de integratie-doelmap + + + + (default) + (standaard) + + + + QMessageBox + + + Warning + Waarschuwing + + + AppImage has already been integrated, but it is not in the current integration destination directory. + +Do you want to move it into the new destination? +Choosing No will run the AppImage once, and leave the AppImage in its current directory. + AppImage is al geïntegreerd, maar staat nog niet in de integratiemap. + +Wil je het daarheen verplaatsen? +Kies 'Nee' om de AppImage eenmalig op te starten en in de huidige map te laten. + + + + AppImage %1 has already been integrated, but it is not in the current integration destination directory. + +Do you want to move it into the new destination? + +Choosing No will run the AppImage once, and leave the AppImage in its current directory. + + + AppImage is al geïntegreerd, maar staat nog niet in de integratiemap. + +Wil je het daarheen verplaatsen? + +Kies 'Nee' om de AppImage eenmalig op te starten en in de huidige map te laten. + + + + + + + Error + Foutmelding + + + + Failed to unregister AppImage before re-integrating it + Kan AppImage niet weghalen alvorens opnieuw te integreren + + + + Could not parse desktop file translations: +Could not open file for reading: + +%1 + Kan de vertalingen niet verwerken: +Kan het volgende bestand niet uitlezen: + +%1 + + + + Could not parse desktop file translations: +Invalid syntax: + +%1 + Kan de vertalingen niet verwerken: +Ongeldige syntax: + +%1 + + + + File %1 is owned by another user: %2 + Het bestand, %1, is eigendom van een andere gebruiker: %2 + + + + Permissions problem + Machtigingsprobleem + + + File %1 is owned by another user: %2 + +Relaunch with their permissions? + Het bestand, %1, is eigendom van een andere gebruiker: %2 + +Wil je het openen met zijn/haar machtigingen? + + + + Failed to run permissions helper, exited with return code %1 + Kan de machtigingshelper niet starten: %1 + + + + Could not find suitable permissions helper, aborting + Kan geen geschikte machtigingshelper starten + + + + QObject + + + + + + + + + Error + Foutmelding + + + + AppImageLauncher does not support type %1 AppImages at the moment. + AppImageLauncher heeft momenteel geen ondersteuning voor %1. + + + + Could not make AppImage executable: %1 + Kan AppImage niet uitvoerbaar maken: %1 + + + Failed to open AppImage for reading: %1 + Kan AppImage niet uitlezen: %1 + + + Failed to create temporary directory + Kan geen tijdelijke werkmap maken + + + Failed to create temporary copy of type 1 AppImage + Kan geen tijdelijke kopie maken van AppImage type 1 + + + Failed to open temporary AppImage copy for writing + Kan geen tijdelijke AppImage-kopie wegschrijven + + + Failed to remove magic bytes from temporary AppImage copy + Kan de magische bytes niet weghalen uit de tijdelijke AppImage-kopie + + + execv() failed: %1 + error message + execv() mislukt: %1 + + + runtime not found: no such file or directory: %1 + runtime niet aangetroffen: bestand of map bestaat niet: %1 + + + + execv() failed: %1 + execv() mislukt: %1 + + + + Usage: %1 [options] <path> + Gebruik: %1 [opties] <pad> + + + + Desktop integration helper for AppImages, for use by Linux distributions. + Werkomgevingshelper voor AppImages, voor gebruik door Linux-distributies. + + + + Options: + Opties: + + + + Display this help and exit + Toon dit hulpbericht en sluit af + + + + Display version and exit + Toon de versie en sluit af + + + + Arguments: + Argumenten: + + + + Path to AppImage (mandatory) + Pad naar AppImage (vereist) + + + + Failed to clean up old desktop files + Kan de oude .desktop-bestanden niet opruimen + + + + Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service + Kan AppImage niet vastleggen in AppImageLauncherFS: fout tijdens starten van appimagelauncherfs.service + + + + Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 + Fout tijdens vastleggen van AppImage in AppImageLauncherFS: kan AppImage-pad %1 niet vastleggen + + + + Failed to register AppImage in AppImageLauncherFS: could not open map file + Kan AppImage niet vastleggen in AppImageLauncherFS: kan kaartbestand niet openen + + + + Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage + Kan AppImage niet vastleggen in AppImageLauncherFS: kan virtueel bestand van AppImage niet vinden + + + + Failed to register AppImage in AppImageLauncherFS: unknown failure + Kan AppImage niet vastleggen in AppImageLauncherFS: onbekende fout + + + + + Failed to clean up AppImage trash bin: %1 + Kan de AppImage-prullenbak niet legen: %1 + + + + Unknown AppImageLauncher option: %1 + Onbekende AppImageLauncher-optie: %1 + + + + + + Error: no such file or directory: %1 + Fout: bestand of map bestaat niet: %1 + + + + + Not an AppImage: %1 + Geen AppImage: %1 + + + + The directory the integrated AppImages are stored in is currently set to: +%1 + De map met de opgeslagen geïntegreerde AppImages is momenteel ingesteld op: +%1 + + + The directory the integrated AppImages are stored in is currently set to: %1 + De map met de opgeslagen geïntegreerde AppImages is momenteel ingesteld op: %1 + + + + Integrating it will move the AppImage into a predefined location, and include it in your application launcher. + Door AppImages te integreren worden ze verplaatst naar een opgegeven locatie en wordt er een snelkoppeling gemaakt in je programmastarter. + + + + To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. + Wil je een AppImage bijwerken of verwijderen? Gebruik dan het rechtermuisknopmenu van de snelkoppeling in je taakbalk of programmastarter. + + + + The directory the integrated AppImages are stored in is currently set to: + De map met de opgeslagen geïntegreerde AppImages is momenteel ingesteld op: + + + + %1 has not been integrated into your system. + %1 is niet geïntegreerd op je systeem. + + + + Desktop Integration + Werkomgevingsintegratie + + + + Integrate and run + Integreren en starten + + + + Run once + Eén keer starten + + + + Cancel + Annuleren + + + Removes AppImages after desktop integration, for use by Linux distributions + Vewijdert AppImages nadat ze zijn geïntegreerd, voor gebruik door Linux-distributies + + + AppImageLauncher remove + remove helper app name + AppImageLauncher-verwijdering + + + Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz + Hulpprogramma om geïntegreerde AppImages eenvoudig te verwijderen, bijv. uit rechtermuisknopmenu's + + + + Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu + Hulpprogramma om geïntegreerde AppImages eenvoudig te verwijderen, bijv. uit rechtermuisknopmenu's + + + + Path to AppImage + Pad naar AppImage + + + + <path> + <pad> + + + + AppImage delete helper error + Fout tijdens verwijderen van AppImage + + + AppImage remove helper error + Fout tijdens verwijderen van AppImage + + + + Not an AppImage: + +%1 + Geen AppImage: + +%1 + + + Refusing to work on non-integrated AppImage: + +%1 + Er kan niet worden gewerkt met niet-geïntegreerde AppImages: + +%1 + + + Please confirm + Bevestig + + + Are you sure you want to remove this AppImage? + Weet je zeker dat je deze AppImage wilt verwijderen? + + + + Failed to unregister AppImage: %1 + Kan AppImage niet weghalen: %1 + + + + Failed to move AppImage into trash bin directory + Kan AppImage niet verplaatsen naar de prullenbak + + + Failed to remove AppImage: %1 + Kan AppImage niet verwijderen: %1 + + + + AppImage with same filename has already been integrated. + Er is al een geïntegreerde AppImage met deze naam. + + + + Do you wish to overwrite the existing AppImage? + Wil je de bestaande AppImage overschrijven? + + + + Choosing No will run the AppImage once, and leave the system in its current state. + Kies 'Nee' om de AppImage eenmaal te starten en het systeem verder onaangetast te laten. + + + + + Warning + Waarschuwing + + + Failed to move AppImage to target location + Kan AppImage niet verplaatsen naar doellocatie + + + + Failed to register AppImage in system via libappimage + Kan AppImage niet vastleggen in systeem middels libappimage + + + + Failed to find integrated desktop file + Kan geïntegreerd .desktop-bestand niet vinden + + + + Couldn't find integrated AppImage's desktop file + Kan AppImage's geïntegreerd .desktop-bestand niet vinden + + + + Failed to load desktop file: + Kan .desktop-bestand niet laden: + + + + AppImage has invalid desktop file + AppImage bevat een ongeldig .desktop-bestand + + + + Failed to move AppImage to target location. +Try to copy AppImage instead? + Kan AppImage niet verplaatsen naar de doellocatie. +Wil je de AppImage proberen te kopiëren? + + + + Failed to call stat() on path: + +%1 + Kan stat() niet aanroepen op pad: + +%1 + + + Failed to copy AppImage to target location + Kan AppImage niet kopiëren naar doellocatie + + + + Updates AppImages after desktop integration, for use by Linux distributions + Werkt AppImages bij na werkomgevingsintegratie, voor gebruik door Linux-distributies + + + + AppImageLauncher update + update helper app name + AppImageLauncher-bijwerking + + + The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. + De AppImage is nog niet geïntegreerd. Met dit hulpmiddel wordt de bijgewerkte AppImage geïntegreerd. + + + Do you wish to continue? + Wil je doorgaan? + + + + No updates found + Geen update beschikbaar + + + + Could not find updates for AppImage %1 + Geen update beschikbaar voor AppImage %1 + + + Failed to check for updates. Please check the command line output for details. + Kan niet controleren op updates. Bekijk de opdrachtregeluitvoer voor meer informatie. + + + + No update information found + Geen update-informatie aangetroffen + + + Could not find update information in AppImage: +%1 + +The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. + Geen update-informatie aangetroffen in AppImage: +%1 + +Deze AppImage heeft geen update-ondersteuning. Vraag de makers om update-informatie in te stellen zodat je makkelijk kunt updaten. + + + + Could not find update information in AppImage: +%1 + +The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. + Geen update-informatie aangetroffen in AppImage: +%1 + +Deze AppImage heeft geen update-ondersteuning. Vraag de makers om update-informatie in te stellen zodat je makkelijk kunt updaten. + + + + Failed to check for updates: + +%1 + Kan niet controleren op updates: + +%1 + + + + An update has been found for the AppImage %1 + Er is een update beschikbaar van AppImage %1 + + + + Do you want to perform the update? + Wil je de update nu installeren? + + + + Remove old AppImage after successful update + Oude AppImage verwijderen na installeren van update + + + + Failed to update AppImage: + +%1 + Kan AppImage niet bijwerken: + +%1 + + + + File reported as updated does not exist: %1 + Bijgewerkt bestand bestaat niet: %1 + + + + Failed to register updated AppImage in system + Kan bijgewerkte AppImage niet vastleggen op systeem + + + + Failed to unregister old AppImage in system + Kan oude AppImage niet weghalen van systeem + + + + Failed to remove old AppImage + Kan oude AppImage niet verwijderen + + + + Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. + Zoekt naar AppImages in programmamappen (gebruikers-, systeem- en andere mappen). Integreert automatisch AppImages die in deze mappen worden geplaatst en maakt de integratie ongedaan als ze worden verwijderd. + + + Search for AppImages in /Applications directories in suitable mounted filesystems + Zoekt naar AppImages in de opgegeven /programmamappen op geschikte aangekoppelde bestandssystemen + + + Search for AppImages in /Applications directories suitable mounted filesystems + Zoekt naar AppImages in de opgegeven /programmamappen op geschikte aangekoppelde bestandssystemen + + + + Lists directories watched by this daemon and exit + Toont de door deze dienst bijgehouden mappen en sluit af + + + + RemoveDialog + + Please confirm + Bevestig + + + <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> + <html><head/><body><p>Weet je zeker dat je deze AppImage wilt verwijderen?</body></html> + + + + Delete AppImage + AppImage verwijderen + + + + <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> + <html><head/><body><p>Weet je zeker dat je deze AppImage wilt verwijderen?</p></body></html> + + + + %1 + %1 + + + <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> + <html><head/><body><p>Vink uit om alleen de werkomgevingsintegratie te verwijderen, maar het bestand te bewaren.</p></body></html> + + + Remove AppImage file from system + AppImage-bestand verwijderen van systeem + + + + SettingsDialog + + + AppImageLauncher Settings + AppImageLauncher-instellingen + + + AppImageLauncher + AppImageLauncher + + + + Launcher Dialog + Startvenster + + + + Ask whether to move AppImage files into the applications directory + Vragen of AppImage-bestanden verplaatst moeten worden naar de programmamap + + + appimagelauncherd + appimagelauncherd + + + + General settings + Algemene instellingen + + + + <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> + <html><head/><body><p>Kruis dit aan om AppImageLauncher automatisch op te starten als achtergronddienst genaamd appimagelauncherd.</p><p>Deze dienst integreert automatisch AppImages die je kopieert naar de map &quot;Programma's&quot; en andere mappen die je hebt opgegeven. Als de bestanden worden verwijdert, dan schoont de dienst de integratiegegevens op.</p></body></html> + + + + Auto start auto-integration daemon + Integratiedienst automatisch starten + + + + Additional directories to watch + Aanvullende bij te houden mappen + + + + Add new directory to list + Map toevoegen aan lijst + + + + Remove selected directory from list + Geselecteerde map verwijderen van lijst + + + - + - + + + Applications directory + Programmamap + + + <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> + <html><head/><body><p>Kruis dit aan om de dienst automatisch AppImages te laten integreren die je kopieert naar de map &quot;Programma's&quot;. Als de bestanden worden verwijdert, dan schoont de dienst de integratiegegevens op.</p></body></html> + + + + Applications directory path + Pad naar programmamap + + + + Location where to store your AppImage files to ease their management + Locatie waar je de AppImage-bestanden kunt plaatsen + + + Location where to store your AppImage files to ease their management using the file manager. + Locatie waar je de AppImage-bestanden kunt plaatsen middels de bestandsbeheerder. + + + /path + /pad + + + Enable auto-integration daemon + Integratiedienst gebruiken + + + + Available Features + Beschikbare functies + + + + updater available for AppImages supporting AppImageUpdate + updater beschikbaar voor AppImages die ondersteuning hebben voor AppImageUpdate + + + + updater unavailable + geen updater beschikbaar + + + + <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience + <strong>Let op: dit is de AppImageLauncher Lite-versie. Deze ondersteunt slechts een beperkt aantal functies.</strong><br />Installeer de volledige versie om AppImageLauncher volledig te benutten. + + + + Select Applications directory + Programmamap kiezen + + + + Select additional directory to watch + Aanvullende bij te houden mappen selecteren + + + diff -Nru appimagelauncher-202004192046-stable/i18n/ui.pl.ts appimagelauncher-202004252016-stable/i18n/ui.pl.ts --- appimagelauncher-202004192046-stable/i18n/ui.pl.ts 1970-01-01 00:00:00.000000000 +0000 +++ appimagelauncher-202004252016-stable/i18n/ui.pl.ts 2020-04-25 20:16:48.000000000 +0000 @@ -0,0 +1,766 @@ + + + + + FirstRunDialog + + + First run + Pierwsze uruchomienie + + + + <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Welcome to AppImageLauncher!</span></p><p>This little helper is designed to improve your AppImage experience on your computer.</p><p>It appears you have never run AppImageLauncher before. Please take a minute and configure your preferences. You can always change these later on, using the control panel.</p></body></html> + <html><head/><body><p><span style=" font-size:11pt; font-weight:600;">Witaj w AppImageLauncher!</span></p><p>Ten mały program został napisany, aby ułatwić korzystanie z plików AppImage na twoim komputerze.</p><p>Wygląda na to, że nigdy wcześniej nie korzystałeś z AppImageLauncher. Poświęć chwilę i skonfiguruj swoje preferencje. Zawsze możesz je później zmienić za pomocą panelu sterowania.</p></body></html> + + + + Ask me whether to move new AppImages into a central location + Pytaj czy przenieść nowe pliki AppImages do centralnej lokalizacji + + + + Integration target destination directory: + Docelowy katalog integracji: + + + + Customize + Dostosuj + + + + Choose integration destination dir + Wybierz docelowy katalog do integracji + + + + (default) + (domyślny) + + + + QMessageBox + + + Warning + Ostrzeżenie + + + AppImage has already been integrated, but it is not in the current integration destination directory. + +Do you want to move it into the new destination? +Choosing No will run the AppImage once, and leave the AppImage in its current directory. + AppImage został już zintegrowany, ale nie ma go w bieżącym katalogu docelowym integracji. + +Czy chcesz przenieść go do nowego miejsca docelowego? +Wybranie opcji Nie spowoduje uruchomienie AppImage jeden raz i pozostawienie AppImage w bieżącym katalogu. + + + + AppImage %1 has already been integrated, but it is not in the current integration destination directory. + +Do you want to move it into the new destination? + +Choosing No will run the AppImage once, and leave the AppImage in its current directory. + + + AppImage %1 został już zintegrowany, ale nie ma go w bieżącym docelowym katalogu integracji. + +Czy chcesz przenieść go do nowego miejsca docelowego? + +Wybranie opcji Nie spowoduje uruchomienie AppImage jeden raz i pozostawienie AppImage w bieżącym katalogu. + + + + + + + Error + Błąd + + + + Failed to unregister AppImage before re-integrating it + Nie udało się wyrejestrować AppImage przed ponownym zintegrowaniem + + + + Could not parse desktop file translations: +Could not open file for reading: + +%1 + Nie można przeanalizować tłumaczeń plików pulpitu: +Nie można otworzyć pliku do odczytu: + +%1 + + + + Could not parse desktop file translations: +Invalid syntax: + +%1 + Nie można przeanalizować tłumaczeń plików pulpitu: +Niepoprawna składnia: + +%1 + + + + File %1 is owned by another user: %2 + Plik %1 jest własnością innego użytkownika: %2 + + + + Permissions problem + Problem z uprawnieniami + + + File %1 is owned by another user: %2 + +Relaunch with their permissions? + Plik %1 jest własnością innego użytkownika: %2 + +Uruchomić ponownie z jego uprawnieniami? + + + + Failed to run permissions helper, exited with return code %1 + Nie udało się uruchomić pomocnika uprawnień, zakończono z błędem %1 + + + + Could not find suitable permissions helper, aborting + Nie można znaleźć odpowiedniego pomocnika uprawnień, przerywam + + + + QObject + + + + + + + + + Error + Błąd + + + + AppImageLauncher does not support type %1 AppImages at the moment. + AppImageLauncher obecnie nie obsługuje plików AppImage typu %1. + + + + Could not make AppImage executable: %1 + Nie udało się nadać plikowi AppImage: %1 uprawnień do wykonania + + + Failed to open AppImage for reading: %1 + Nie można otworzyć AppImage do odczytu: %1 + + + Failed to create temporary directory + Nie udało się utworzyć katalogu tymczasowego + + + Failed to create temporary copy of type 1 AppImage + Nie udało się utworzyć tymczasowej kopii AppImage typu 1 + + + Failed to open temporary AppImage copy for writing + Nie udało się otworzyć tymczasowej kopii AppImage do zapisu + + + Failed to remove magic bytes from temporary AppImage copy + Nie udało się usunąć sygnatury z tymczasowej kopii AppImage + + + execv() failed: %1 + error message + execv() zakończył się błędem: %1 + + + runtime not found: no such file or directory: %1 + nie znaleziono środowiska wykonawczego: brak takiego pliku albo katalogu: %1 + + + + execv() failed: %1 + execv() zakończył się błędem: %1 + + + + Usage: %1 [options] <path> + Zastosowanie: %1 [opcje] <ścieżka> + + + + Desktop integration helper for AppImages, for use by Linux distributions. + Pomocnik integracji pulpitu dla plików AppImage dla dystrybucji Linuksa. + + + + Options: + Opcje: + + + + Display this help and exit + Wyświetl tę pomoc i zakończ + + + + Display version and exit + Wyświetl wersję i zakończ + + + + Arguments: + Argumenty: + + + + Path to AppImage (mandatory) + Ścieżka do AppImage (obowiązkowa) + + + + Failed to clean up old desktop files + Nie udało się wykasować starych plików pulpitu + + + + Failed to register AppImage in AppImageLauncherFS: error while trying to start appimagelauncherfs.service + Nie udało się zarejestrować AppImage w AppImageLauncherFS: błąd podczas próby uruchomienia appimagelauncherfs.service + + + + Failed to register AppImage in AppImageLauncherFS: failed to register AppImage path %1 + Nie udało się zarejestrować AppImage w AppImageLauncherFS: rejestracja ścieżki AppImage %1 nie powiodła się + + + + Failed to register AppImage in AppImageLauncherFS: could not open map file + Nie udało się zarejestrować AppImage w AppImageLauncherFS: nie można otworzyć pliku map + + + + Failed to register AppImage in AppImageLauncherFS: could not find virtual file for AppImage + Nie udało się zarejestrować AppImage w AppImageLauncherFS: nie można znaleźć pliku wirtualnego dla AppImage + + + + Failed to register AppImage in AppImageLauncherFS: unknown failure + Nie udało się zarejestrować AppImage w AppImageLauncherFS: nieznana przyczyna + + + + + Failed to clean up AppImage trash bin: %1 + Nie udało się wyczyścić kosza aplikacji AppImage: %1 + + + + Unknown AppImageLauncher option: %1 + Nieznana opcja AppImageLauncher: %1 + + + + + + Error: no such file or directory: %1 + Błąd: brak takiego pliku lub katalogu: %1 + + + + + Not an AppImage: %1 + To nie jest AppImage: %1 + + + + The directory the integrated AppImages are stored in is currently set to: +%1 + Katalogiem, w którym przechowywane są zintegrowane pliki AppImage, jest obecnie: +%1 + + + The directory the integrated AppImages are stored in is currently set to: %1 + Katalogiem, w którym przechowywane są zintegrowane pliki AppImage, jest obecnie: %1 + + + + Integrating it will move the AppImage into a predefined location, and include it in your application launcher. + Integracja tego pliku spowoduje przeniesienie AppImage do predefiniowanego katalogu i dodanie go do menu aplikacji. + + + + To remove or update the AppImage, please use the context menu of the application icon in your task bar or launcher. + Aby usunąć lub zaktualizować AppImage, użyj menu kontekstowego ikony aplikacji na pasku zadań lub w menu aplikacji. + + + + The directory the integrated AppImages are stored in is currently set to: + Katalogiem, w którym przechowywane są zintegrowane pliki AppImage, jest obecnie: + + + + %1 has not been integrated into your system. + %1 nie został zintegrowany z twoim systemem. + + + + Desktop Integration + Integracja z pulpitem + + + + Integrate and run + Zintegruj i uruchom + + + + Run once + Uruchom jeden raz + + + + Cancel + Anuluj + + + Removes AppImages after desktop integration, for use by Linux distributions + Usuwa pliki AppImage po integracji z komputerem, do użytku w systemach Linuks + + + AppImageLauncher remove + remove helper app name + Usuń AppImageLauncher + + + Helper to delete integrated AppImages easily, e.g., from the application launcher's context menuz + Program do łatwego usuwania zintegrowanych plików AppImage, np. z menu kontekstowego aplikacji + + + + Helper to delete integrated AppImages easily, e.g., from the application launcher's context menu + Program do łatwego usuwania zintegrowanych plików AppImage, np. z menu kontekstowego aplikacji + + + + Path to AppImage + Ścieżka do AppImage + + + + <path> + <ścieżka> + + + + AppImage delete helper error + Błąd programu kasowania AppImage + + + AppImage remove helper error + Błąd programu usuwania AppImage + + + + Not an AppImage: + +%1 + To nie jest AppImage: + +%1 + + + Refusing to work on non-integrated AppImage: + +%1 + Odmowa pracy z niezintegrowanym plikiem AppImage: + +%1 + + + Please confirm + Proszę potwierdzić + + + Are you sure you want to remove this AppImage? + Czy na pewno chcesz usunąć ten plik AppImage? + + + + Failed to unregister AppImage: %1 + Nie udało się wyrejestrować AppImage: %1 + + + + Failed to move AppImage into trash bin directory + Nie udało się przenieść AppImage do katalogu kosza na śmieci + + + Failed to remove AppImage: %1 + Nie udało się usunąć pliku AppImage: %1 + + + + AppImage with same filename has already been integrated. + AppImage z tą samą nazwą pliku został już zintegrowany. + + + + Do you wish to overwrite the existing AppImage? + Czy chcesz zastąpić istniejący AppImage? + + + + Choosing No will run the AppImage once, and leave the system in its current state. + Wybranie opcji Nie spowoduje uruchomienie AppImage jeden raz i pozostawienie systemu bez zmian. + + + + + Warning + Ostrzeżenie + + + Failed to move AppImage to target location + Nie udało się przenieść AppImage do lokalizacji docelowej + + + + Failed to register AppImage in system via libappimage + Nie udało się zarejestrować AppImage w systemie via libappimage + + + + Failed to find integrated desktop file + Nie udało się znaleźć zintegrowanego pliku pulpitu + + + + Couldn't find integrated AppImage's desktop file + Nie można znaleźć zintegrowanego pliku pulpitu AppImage + + + + Failed to load desktop file: + Nie udało się załadować pliku pulpitu: + + + + AppImage has invalid desktop file + AppImage plik pulpitu jest nieprawidłowy + + + + Failed to move AppImage to target location. +Try to copy AppImage instead? + Nie udało się przenieść AppImage do lokalizacji docelowej. +Czy zamiast tego spróbować skopiować AppImage? + + + + Failed to call stat() on path: + +%1 + Nie można wywołać stat () na ścieżce: + +%1 + + + Failed to copy AppImage to target location + Nie udało się skopiować AppImage do lokalizacji docelowej + + + + Updates AppImages after desktop integration, for use by Linux distributions + Aktualizuje AppImages po integracji z komputerem, do użytku przez dystrybucje Linuksa + + + + AppImageLauncher update + update helper app name + Aktualizacja AppImageLauncher + + + The AppImage hasn't been integrated before. This tool will, however, integrate the updated AppImage. + AppImage nie był wcześniej zintegrowany. To narzędzie zintegruje zaktualizowany AppImage. + + + Do you wish to continue? + Czy chcesz kontynuować? + + + + No updates found + Nie znaleziono aktualizacji + + + + Could not find updates for AppImage %1 + Nie można znaleźć aktualizacji dla AppImage %1 + + + Failed to check for updates. Please check the command line output for details. + Nie udało się sprawdzić aktualizacji. Szczegóły sprawdź w wierszu poleceń. + + + + No update information found + Nie znaleziono informacji o aktualizacji + + + Could not find update information in AppImage: +%1 + +The AppImage doesn't support updating. Please ask the authors to set update information to allow for easy updating. + Nie można znaleźć informacji o aktualizacji w AppImage: +%1 + +AppImage nie obsługuje aktualizacji. Poproś autorów o ich dodanie, aby umożliwić łatwą aktualizację. + + + + Could not find update information in AppImage: +%1 + +The AppImage doesn't support updating. Please ask the authors to set upupdate information to allow for easy updating. + Nie można znaleźć informacji o aktualizacji w AppImage: +%1 + +AppImage nie obsługuje aktualizacji. Poproś autorów o ich dodanie, aby umożliwić łatwą aktualizację. + + + + Failed to check for updates: + +%1 + Nie udało się sprawdzić aktualizacji: + +%1 + + + + An update has been found for the AppImage %1 + Znaleziono aktualizację dla AppImage %1 + + + + Do you want to perform the update? + Czy chcesz zaktualizować? + + + + Remove old AppImage after successful update + Usuń starą aplikację AppImage po udanej aktualizacji + + + + Failed to update AppImage: + +%1 + Nie udało się zaktualizować AppImage: + +%1 + + + + File reported as updated does not exist: %1 + Plik zgłoszony jako zaktualizowany nie istnieje: %1 + + + + Failed to register updated AppImage in system + Nie udało się zarejestrować zaktualizowanego AppImage w systemie + + + + Failed to unregister old AppImage in system + Nie udało się wyrejestrować starej aplikacji AppImage z systemu + + + + Failed to remove old AppImage + Nie udało się usunąć starego AppImage + + + + Tracks AppImages in applications directories (user's, system and other ones). Automatically integrates AppImages moved into those directories and unintegrates ones removed from them. + Śledzi pliki AppImage w katalogach aplikacji (użytkownika, systemu i innych). Automatycznie integruje pliki AppImage przeniesione do tych katalogów i wyrejestrowuje pliki z nich usunięte. + + + Search for AppImages in /Applications directories in suitable mounted filesystems + Wyszukaj pliki AppImage w katalogach /Aplikacje w odpowiednio zamontowanych systemach plików + + + Search for AppImages in /Applications directories suitable mounted filesystems + Wyszukaj pliki AppImage w katalogach /Aplikacje odpowiednio zamontowanych systemach plików + + + + Lists directories watched by this daemon and exit + Wyświetl listę katalogów śledzonych przez proces demona i zakończ działanie + + + + RemoveDialog + + Please confirm + Proszę potwierdzić + + + <html><head/><body><p>Are you sure you want to remove this AppImage?</body></html> + <html><head/><body><p>Czy na pewno chcesz usunąć ten AppImage?</body></html> + + + + Delete AppImage + Wykasuj AppImage + + + + <html><head/><body><p>Are you sure you want to delete this AppImage?</p></body></html> + <html><head/><body><p>Czy na pewno chcesz wykasować ten AppImage?</p></body></html> + + + + %1 + %1 + + + <html><head/><body><p>Uncheck to only remove the desktop integration, but leave the file on the system.</p></body></html> + <html><head/><body><p>Odznacz, aby usunąć tylko integrację pulpitu, ale pozostaw plik w systemie.</p></body></html> + + + Remove AppImage file from system + Usuń plik AppImage z systemu + + + + SettingsDialog + + + AppImageLauncher Settings + Ustawienia AppImageLauncher + + + AppImageLauncher + AppImageLauncher + + + + Launcher Dialog + Okno dialogowe uruchamiania + + + + Ask whether to move AppImage files into the applications directory + Zapytaj, czy przenieść pliki AppImage do katalogu aplikacji + + + appimagelauncherd + appimagelauncherd + + + + General settings + Ustawienia główne + + + + <html><head/><body><p>When this box is checked, AppImageLauncher automatically starts a daemon called appimagelauncherd.</p><p>This daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot; and the additional directories you configured. When the files are deleted, the daemon will clean up the integration data.</p></body></html> + <html><head/><body><p>Gdy to pole jest zaznaczone, AppImageLauncher automatycznie uruchamia proces demona o nazwie appimagelauncherd.</p><p>Ten demon automatycznie integruje skopiowane AppImages do &quot;katalogu aplikacji&quot; i skonfigurowanych dodatkowych katalogów. Po usunięciu plików demon wyczyści dane integracji.</p></body></html> + + + + Auto start auto-integration daemon + Automatycznie uruchamiaj demona integracji + + + + Additional directories to watch + Dodatkowe katalogi do śledzenia + + + + Add new directory to list + Dodaj nowy katalog do listy + + + + Remove selected directory from list + Usuń wybrany katalog z listy + + + - + - + + + Applications directory + Katalog aplikacji + + + <html><head/><body><p>When enabled, the daemon automatically integrates AppImages you copy into the &quot;Applications directory&quot;. When the files are deleted, the daemon will clean up the integration data.</p></body></html> + <html><head/><body><p>Po włączeniu procesu demona automatycznie integruje pliki AppImage, które kopiujesz do &quot;katalogu aplikacji&quot;. Po usunięciu plików demon wyczyści dane integracji.</p></body></html> + + + + Applications directory path + Ścieżka do katalogu aplikacji + + + + Location where to store your AppImage files to ease their management + Miejsce przechowywania plików AppImage w celu ułatwienia zarządzania nimi + + + Location where to store your AppImage files to ease their management using the file manager. + Miejsce przechowywania plików AppImage w celu ułatwienia zarządzania nimi za pomocą menedżera plików. + + + /path + /ścieżka + + + Enable auto-integration daemon + Włącz proces demona automatycznej integracji + + + + Available Features + Dostępne funkcje + + + + updater available for AppImages supporting AppImageUpdate + aktualizator dostępny dla plików AppImage obsługujących AppImageUpdate + + + + updater unavailable + aktualizator niedostępny + + + + <strong>Note: this is an AppImageLauncher Lite build, only supports a limited set of features</strong><br />Please install the full version via the provided native packages to enjoy the full AppImageLauncher experience + <strong>Uwaga: jest to wersja AppImageLauncher Lite, obsługująca tylko ograniczony zestaw funkcji</strong><br />Zainstaluj pełną wersję korzystając z dostępnych programów instalacyjnych, aby cieszyć się pełną funkcjonalnością AppImageLauncher + + + + Select Applications directory + Wybierz katalog aplikacji + + + + Select additional directory to watch + Wybierz dodatkowy katalog do śledzenia + + + diff -Nru appimagelauncher-202004192046-stable/README.md appimagelauncher-202004252016-stable/README.md --- appimagelauncher-202004192046-stable/README.md 2020-04-19 20:46:31.000000000 +0000 +++ appimagelauncher-202004252016-stable/README.md 2020-04-25 20:16:48.000000000 +0000 @@ -123,7 +123,7 @@ The installation of packages on systems with a set of packages similar to one of the listed ones (e.g., Linux Mint, Fedora, etc.) should work as well. -**Note:** For Ubuntu and derivatives, there's two PPAs (personal package archives) available providing a simple way to install and update AppImageLauncher (thanks [Peter Jonas](https://github.com/shoogle) for creating and maintaining them): +**Note:** For Ubuntu 19.04 and newer as well as derivatives, there's two PPAs (personal package archives) available providing a simple way to install and update AppImageLauncher (thanks [Peter Jonas](https://github.com/shoogle) for creating and maintaining them): - stable (provides all releases): https://launchpad.net/~appimagelauncher-team/+archive/ubuntu/stable - daily (latest and greatest but possibly unstable): https://launchpad.net/~appimagelauncher-team/+archive/ubuntu/daily @@ -136,6 +136,10 @@ **Note:** If your system is not listed above as supported, please feel free to request support in an issue on GitHub. We can then discuss adding support. +### Build from source + +Build instructions can be found in [BUILD.md](BUILD.md). + ## How it works diff -Nru appimagelauncher-202004192046-stable/resources/CMakeLists.txt appimagelauncher-202004252016-stable/resources/CMakeLists.txt --- appimagelauncher-202004192046-stable/resources/CMakeLists.txt 2020-04-19 20:46:31.000000000 +0000 +++ appimagelauncher-202004252016-stable/resources/CMakeLists.txt 2020-04-25 20:16:48.000000000 +0000 @@ -1,5 +1,11 @@ # install configs for resource files +# we depend on GNUInstallDirs, so let's make sure it's been loaded +include(GNUInstallDirs) + +# debugging: should be share +message(STATUS "CMAKE_INSTALL_DATADIR: ${CMAKE_INSTALL_DATADIR}") + install( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/mime @@ -50,7 +56,7 @@ install( FILES ${install_maintainer_scripts_dir}/post-install ${install_maintainer_scripts_dir}/post-uninstall - DESTINATION ${CMAKE_INSTALL_LIBDIR}/appimagelauncher/maintainer-scripts + DESTINATION ${CMAKE_INSTALL_DATADIR}/appimagelauncher/maintainer-scripts ) endif() diff -Nru appimagelauncher-202004192046-stable/resources/install-scripts/post-uninstall.in appimagelauncher-202004252016-stable/resources/install-scripts/post-uninstall.in --- appimagelauncher-202004192046-stable/resources/install-scripts/post-uninstall.in 2020-04-19 20:46:31.000000000 +0000 +++ appimagelauncher-202004252016-stable/resources/install-scripts/post-uninstall.in 2020-04-25 20:16:48.000000000 +0000 @@ -30,5 +30,9 @@ # NOTE: you need to reboot your computer in order # # to complete the uninstallation # # # +# (If you see this message during an upgrade: # +# don't worry, you do not have to take any # +# action, no reboot required!) # +# # ##################################################### EOF diff -Nru appimagelauncher-202004192046-stable/src/cli/commands/CMakeLists.txt appimagelauncher-202004252016-stable/src/cli/commands/CMakeLists.txt --- appimagelauncher-202004192046-stable/src/cli/commands/CMakeLists.txt 2020-04-19 20:46:31.000000000 +0000 +++ appimagelauncher-202004252016-stable/src/cli/commands/CMakeLists.txt 2020-04-25 20:16:48.000000000 +0000 @@ -1,3 +1,3 @@ -add_library(cli_commands OBJECT Command.h CommandFactory.cpp CommandFactory.h IntegrateCommand.cpp IntegrateCommand.h UnintegrateCommand.h UnintegrateCommand.cpp exceptions.h) +add_library(cli_commands STATIC Command.h CommandFactory.cpp CommandFactory.h IntegrateCommand.cpp IntegrateCommand.h UnintegrateCommand.h UnintegrateCommand.cpp exceptions.h) target_link_libraries(cli_commands PUBLIC Qt5::Core shared cli_logging) target_include_directories(cli_commands PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) diff -Nru appimagelauncher-202004192046-stable/src/fswatcher/CMakeLists.txt appimagelauncher-202004252016-stable/src/fswatcher/CMakeLists.txt --- appimagelauncher-202004192046-stable/src/fswatcher/CMakeLists.txt 2020-04-19 20:46:31.000000000 +0000 +++ appimagelauncher-202004252016-stable/src/fswatcher/CMakeLists.txt 2020-04-25 20:16:48.000000000 +0000 @@ -1,3 +1,3 @@ -add_library(filesystemwatcher OBJECT filesystemwatcher.cpp filesystemwatcher.h) +add_library(filesystemwatcher STATIC filesystemwatcher.cpp filesystemwatcher.h) target_link_libraries(filesystemwatcher PUBLIC Qt5::Core shared) target_include_directories(filesystemwatcher PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) diff -Nru appimagelauncher-202004192046-stable/src/shared/shared.cpp appimagelauncher-202004252016-stable/src/shared/shared.cpp --- appimagelauncher-202004192046-stable/src/shared/shared.cpp 2020-04-19 20:46:31.000000000 +0000 +++ appimagelauncher-202004252016-stable/src/shared/shared.cpp 2020-04-25 20:16:48.000000000 +0000 @@ -547,6 +547,7 @@ {"gtk-update-icon-cache", dataLocation.toStdString() + "/icons/hicolor/ -t"}, {"xdg-desktop-menu", "forceupdate"}, {"update-mime-database", dataLocation.toStdString() + "/mime "}, + {"update-icon-caches", dataLocation.toStdString() + "/icons/"}, }; for (const auto& command : commands) { @@ -746,6 +747,15 @@ const QString installPrefixPath = QFileInfo(ownBinaryDirPath).dir().absolutePath(); QString privateLibDirPath = installPrefixPath + "/" + PRIVATE_LIBDIR; + // if there is no such directory like /bin/../lib/... or the binary is not found there, there is a chance + // the binary is just next to this one (this is the case in the update/remove helpers) + // therefore we compare the binary directory path with PRIVATE_LIBDIR + if (!QDir(privateLibDirPath).exists()) { + if (privateLibDirPath.contains(PRIVATE_LIBDIR)) { + privateLibDirPath = ownBinaryDirPath; + } + } + // the following lines make things work during development: here, the build dir path is inserted instead, which // allows for testing with the latest changes if (!QDir(privateLibDirPath).exists()) {