* Fix Explorer pinning: Add fallbacks for Shell commands (gh#nextcloud/desktop#1599). * WebFlowCredentials: Make username comparison case-insensitive (gh#nextcloud/desktop#1741). * ActivityListModel: Show full date and time as a Tooltip only. * Disable HTTP/2 for now due to a Qt bug, allow enabling it via an environment variable. * Fix Explorer integration re-save and hide option. * l10n: Changes to improve source strings. * Updater: Add query-parameter "updatesegment" to the update check. - Rename 100-nextcloud-client-sync-inotify.conf to 99-nextcloud-client-sync-inotify.conf (boo#1155457). - Do not BuildRequire python: this is python2, but in other places we buildrequire python3-Sphinx. This does not really belong together. - Switch the python-nautilus Requires in nautilus-extension-nextcloud to be python3-nautilus: the plugin supports py3 already, so best to make use of it. * desktop#1222 Reinstate Debian build in the new Drone config * desktop#1225 Typo * desktop#1256 Marking unused strings as unstranslatable * desktop#1275 Fixes #607 * desktop#1278 Fixes issue #878 * desktop#1342 Fixes issue #1187 * desktop#1347 Displays FileIgnored activities with an info icon OBS-URL: https://build.opensuse.org/package/show/network/nextcloud-desktop?expand=0&rev=5
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
--- a/doc/conf.py
|
|
+++ b/doc/conf.py
|
|
@@ -124,7 +124,7 @@ html_static_path = ['_shared_assets/stat
|
|
|
|
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
|
# using the given strftime format.
|
|
-html_last_updated_fmt = '%b %d, %Y'
|
|
+#html_last_updated_fmt = '%b %d, %Y'
|
|
|
|
# If true, SmartyPants will be used to convert quotes and dashes to
|
|
# typographically correct entities.
|
|
--- a/src/libsync/theme.cpp
|
|
+++ b/src/libsync/theme.cpp
|
|
@@ -319,11 +319,9 @@ QString Theme::gitSHA1() const
|
|
const QString gitSha1(QLatin1String(GIT_SHA1));
|
|
devString = QCoreApplication::translate("nextcloudTheme::about()",
|
|
"<p><small>Built from Git revision <a href=\"%1\">%2</a>"
|
|
- " on %3, %4 using Qt %5, %6</small></p>")
|
|
+ " using Qt %3, %4</small></p>")
|
|
.arg(githubPrefix + gitSha1)
|
|
.arg(gitSha1.left(6))
|
|
- .arg(__DATE__)
|
|
- .arg(__TIME__)
|
|
.arg(qVersion())
|
|
.arg(QSslSocket::sslLibraryVersionString());
|
|
#endif
|