From f8e897e574979bac75145941a763a7af9e385cd4 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Thu, 7 May 2020 10:09:33 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 8c31785f0..5ebcb4812 100644 --- a/README.md +++ b/README.md @@ -14,5 +14,3 @@ RSS Guard is simple, light and easy-to-use RSS/ATOM feed aggregator developed us You can support author of RSS Guard [here](https://martinrotter.github.io/donate). Development builds can be downloaded [here for Windows](https://bintray.com/martinrotter/rssguard/Development/Windows) and [here for Linux/Mac](https://bintray.com/martinrotter/rssguard/Development/LinuxMacOs). - -#### See [Wiki](https://github.com/martinrotter/rssguard/wiki) for more information about features, download links and other stuff. From 41520351bbf4e34432c7a211112f0e90f8b72a17 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Mon, 11 May 2020 10:17:31 +0200 Subject: [PATCH 2/2] Update .travis-install-linux.sh --- resources/scripts/.travis-install-linux.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/resources/scripts/.travis-install-linux.sh b/resources/scripts/.travis-install-linux.sh index e5d8bc4b0..da76f1dce 100755 --- a/resources/scripts/.travis-install-linux.sh +++ b/resources/scripts/.travis-install-linux.sh @@ -20,6 +20,12 @@ chmod a+x linuxdeployqt-continuous-x86_64.AppImage # Create AppImage. unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH ./linuxdeployqt-continuous-x86_64.AppImage "./AppDir/usr/share/applications/com.github.rssguard.desktop" -bundle-non-qt-libs -no-translations + +if [ "$USE_WEBENGINE" = true ]; then + # Copy some NSS3 files to prevent WebEngine crashes. + cp /usr/lib/x86_64-linux-gnu/nss/* ./AppDir/usr/lib/ -v +fi + ./linuxdeployqt-continuous-x86_64.AppImage "./AppDir/usr/share/applications/com.github.rssguard.desktop" -appimage -no-translations # Rename AppImaage. @@ -39,4 +45,4 @@ fi mv "$imagename" "$imagenewname" -ls \ No newline at end of file +ls