update to ownCloudclient-3.1.0.9872

This commit is contained in:
kirby 2023-01-27 13:28:17 +00:00
parent abe9e5ade4
commit 2be5c59c32
4 changed files with 3 additions and 47 deletions

View File

@ -1,6 +1,6 @@
COMMENT = owncloud sync client
V = 3.0.0.9215
V = 3.1.0.9872
GRAPHAPI_V = 0.13.2
DISTNAME = ownCloud-${V}
PKGNAME = owncloudclient-${V}

View File

@ -1,4 +1,4 @@
SHA256 (libre-graph-api-cpp-qt-client-v0.13.2.tar.gz) = ON0gpGaNz9honvyqppmj3C1jiHh99MciB5kgEwGXIAU=
SHA256 (ownCloud-3.0.0.9215.tar.xz) = cORFiyMEEX1jKQJIW4eqFAkwIFoXcP18PZTn6Zi1y+U=
SHA256 (ownCloud-3.1.0.9872.tar.xz) = 0oCvKPhNhID3Vfz9DU1Oe5xAqR4YClDzQqm3SfbZqos=
SIZE (libre-graph-api-cpp-qt-client-v0.13.2.tar.gz) = 79738
SIZE (ownCloud-3.0.0.9215.tar.xz) = 5676836
SIZE (ownCloud-3.1.0.9872.tar.xz) = 5682584

View File

@ -1,16 +0,0 @@
Upstream commit 2d6b2d3c036f44a5c2a9e58321364c210401ff12
Index: src/common/utility.h
--- src/common/utility.h.orig
+++ src/common/utility.h
@@ -381,10 +381,8 @@ OCSYNC_EXPORT Q_DECLARE_LOGGING_CATEGORY(lcUtility)
}
-#ifdef Q_OS_LINUX
OCSYNC_EXPORT QString appImageLocation();
OCSYNC_EXPORT bool runningInAppImage();
-#endif
} // Utility namespace
/** @} */ // \addtogroup

View File

@ -1,28 +0,0 @@
Upstream commit 2d6b2d3c036f44a5c2a9e58321364c210401ff12
Index: src/common/utility_unix.cpp
--- src/common/utility_unix.cpp.orig
+++ src/common/utility_unix.cpp
@@ -111,18 +111,20 @@ void Utility::setLaunchOnStartup(const QString &appNam
}
}
-#ifdef Q_OS_LINUX
QString Utility::appImageLocation()
{
+#ifdef Q_OS_LINUX
static const auto value = qEnvironmentVariable("APPIMAGE");
return value;
+#else
+ return QString();
+#endif
}
bool Utility::runningInAppImage()
{
return !Utility::appImageLocation().isEmpty();
}
-#endif
bool Utility::hasDarkSystray()
{