Hello community, here is the log from the commit of package seafile-client for openSUSE:Factory checked in at 2020-08-10 14:51:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/seafile-client (Old) and /work/SRC/openSUSE:Factory/.seafile-client.new.3399 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "seafile-client" Mon Aug 10 14:51:58 2020 rev:4 rq:823692 version:7.0.9 Changes: -------- --- /work/SRC/openSUSE:Factory/seafile-client/seafile-client.changes 2020-06-09 00:06:54.357767850 +0200 +++ /work/SRC/openSUSE:Factory/.seafile-client.new.3399/seafile-client.changes 2020-08-10 14:52:00.771810893 +0200 @@ -1,0 +2,8 @@ +Fri Jul 31 05:56:28 UTC 2020 - Paolo Stivanin <[email protected]> + +- Update to 7.0.9: + * Avoid downloading existing blocks during sync download + * Fix crash when cancel syncing before a library is synced + * Fix incorrect error message in some error situations + +------------------------------------------------------------------- Old: ---- v7.0.8.tar.gz New: ---- v7.0.9.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ seafile-client.spec ++++++ --- /var/tmp/diff_new_pack.SV24yy/_old 2020-08-10 14:52:02.139811616 +0200 +++ /var/tmp/diff_new_pack.SV24yy/_new 2020-08-10 14:52:02.143811617 +0200 @@ -18,7 +18,7 @@ # See also http://en.opensuse.org/openSUSE:Specfile_guidelines Name: seafile-client -Version: 7.0.8 +Version: 7.0.9 Release: 0 Summary: Cloud storage client License: GPL-3.0-only @@ -56,6 +56,7 @@ %else BuildRequires: libqt5-linguist-devel BuildRequires: libqt5-qtbase-common-devel +BuildRequires: libqt5-qtwebengine-devel BuildRequires: pkgconfig(Qt5Core) BuildRequires: pkgconfig(Qt5DBus) BuildRequires: pkgconfig(Qt5Designer) @@ -81,9 +82,14 @@ %patch1 -p1 %build +# set path, otherwise qmake is not found +export PATH=$PATH:/usr/lib64/qt5/bin/ export CFLAGS="%{optflags} -fPIE -pie" export CXXFLAGS="%{optflags} -fPIE -pie" -%cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%{_prefix} -DBUILD_SHIBBOLETH_SUPPORT=ON ../ +%cmake \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=%{_prefix} \ + -DBUILD_SHIBBOLETH_SUPPORT=ON .. %cmake_build %install ++++++ v7.0.8.tar.gz -> v7.0.9.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/CMakeLists.txt new/seafile-client-7.0.9/CMakeLists.txt --- old/seafile-client-7.0.8/CMakeLists.txt 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/CMakeLists.txt 2020-07-29 04:24:40.000000000 +0200 @@ -3,7 +3,7 @@ PROJECT(seafile-client) SET(SEAFILE_CLIENT_VERSION_MAJOR 7) SET(SEAFILE_CLIENT_VERSION_MINOR 0) -SET(SEAFILE_CLIENT_VERSION_PATCH 8) +SET(SEAFILE_CLIENT_VERSION_PATCH 9) SET(PROJECT_VERSION "${SEAFILE_CLIENT_VERSION_MAJOR}.${SEAFILE_CLIENT_VERSION_MINOR}.${SEAFILE_CLIENT_VERSION_PATCH}") ADD_DEFINITIONS(-DSEAFILE_CLIENT_VERSION=${PROJECT_VERSION}) INCLUDE(FindPkgConfig) @@ -43,6 +43,8 @@ option(BUILD_ENABLE_WARNINGS "Enable compiler warnings." ON) +option(USE_QT_WEBKIT "Build use QT webkit" OFF) + option(BUILD_SPARKLE_SUPPORT "Build Sparkle support" OFF) IF (BUILD_SPARKLE_SUPPORT) ADD_DEFINITIONS(-DHAVE_SPARKLE_SUPPORT) @@ -164,7 +166,7 @@ OUTPUT_VARIABLE DETECTED_QT_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE) MESSAGE("qt5 version: ${DETECTED_QT_VERSION}") -IF(WIN32 OR DETECTED_QT_VERSION VERSION_LESS 5.6.0) +IF(WIN32 OR USE_QT_WEBKIT) ADD_DEFINITIONS(-DSEAFILE_USE_WEBKIT) SET(WEBKIT_NAME "WebKit") SET(WEBKIT_WIDGETS_NAME "WebKitWidgets") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/Info.plist new/seafile-client-7.0.9/Info.plist --- old/seafile-client-7.0.8/Info.plist 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/Info.plist 2020-07-29 04:24:40.000000000 +0200 @@ -15,9 +15,9 @@ <key>CFBundleName</key> <string>Seafile</string> <key>CFBundleShortVersionString</key> - <string>7.0.8</string> + <string>7.0.9</string> <key>CFBundleVersion</key> - <string>7.0.8</string> + <string>7.0.9</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleURLTypes</key> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/debian/changelog new/seafile-client-7.0.9/debian/changelog --- old/seafile-client-7.0.8/debian/changelog 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/debian/changelog 2020-07-29 04:24:40.000000000 +0200 @@ -1,3 +1,7 @@ +seafile-gui (7.0.9) unstable; urgency=low + + * new upstream release + -- Jonathan Xu <[email protected]> Wed, 29 Jun 2020 10:19:57 +0800 seafile-gui (7.0.8) unstable; urgency=low * new upstream release diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_bg_BG.ts new/seafile-client-7.0.9/i18n/seafile_bg_BG.ts --- old/seafile-client-7.0.8/i18n/seafile_bg_BG.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_bg_BG.ts 2020-07-29 04:24:40.000000000 +0200 @@ -500,6 +500,14 @@ <source>Cancel</source> <translation type="unfinished"/> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_ca.ts new/seafile-client-7.0.9/i18n/seafile_ca.ts --- old/seafile-client-7.0.8/i18n/seafile_ca.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_ca.ts 2020-07-29 04:24:40.000000000 +0200 @@ -506,6 +506,14 @@ <source>Cancel</source> <translation>Cancel·la</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3142,6 +3150,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_cs_CZ.ts new/seafile-client-7.0.9/i18n/seafile_cs_CZ.ts --- old/seafile-client-7.0.8/i18n/seafile_cs_CZ.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_cs_CZ.ts 2020-07-29 04:24:40.000000000 +0200 @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Zrušit</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3151,6 +3159,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_de_DE.ts new/seafile-client-7.0.9/i18n/seafile_de_DE.ts --- old/seafile-client-7.0.8/i18n/seafile_de_DE.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_de_DE.ts 2020-07-29 04:24:40.000000000 +0200 @@ -507,6 +507,14 @@ <source>Cancel</source> <translation>Abbrechen</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation>Ende-zu-Ende-Verschlüsselung</translation> + </message> + <message> + <source>TextLabel</source> + <translation>Tag</translation> + </message> </context> <context> <name>DaemonManager</name> @@ -523,7 +531,7 @@ <name>DataManager</name> <message> <source>Another copy or move operation is in progress. Please wait until it finishes.</source> - <translation type="unfinished"/> + <translation>Eine andere Kopier- oder Verschiebeaktion ist noch nicht abgeschlossen. Bitte warten Sie bis dahin.</translation> </message> </context> <context> @@ -1061,7 +1069,7 @@ </message> <message> <source>Share to User</source> - <translation>Freigeben für Nutzer/in</translation> + <translation>Freigeben für Benutzer/in</translation> </message> <message> <source>G&enerate %1 Internal Link</source> @@ -1629,7 +1637,7 @@ </message> <message> <source>Already shared to user %1</source> - <translation>Bereits freigegeben für Nutzer/in %1</translation> + <translation>Bereits freigegeben für %1</translation> </message> <message> <source>The previous operation is still in progres</source> @@ -2406,11 +2414,11 @@ </message> <message> <source>Share to user</source> - <translation>Freigeben für Nutzer/in</translation> + <translation>Freigeben für Benutzer/in</translation> </message> <message> <source>Share this library to a user</source> - <translation>Bibliothek für Nutzer/in freigeben</translation> + <translation>Bibliothek für Benutzer/in freigeben</translation> </message> <message> <source>Share to group</source> @@ -3005,7 +3013,7 @@ </message> <message> <source>User</source> - <translation>Nutzer/in</translation> + <translation>Benutzer/in</translation> </message> <message> <source>Permission</source> @@ -3154,7 +3162,11 @@ <name>SyncErrorsTableView</name> <message> <source>Delete file sync error failed</source> - <translation type="unfinished"/> + <translation>Synchronisierungs-Fehler konnten nicht gelöscht werden</translation> + </message> + <message> + <source>delete</source> + <translation>Löschen</translation> </message> </context> <context> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_el_GR.ts new/seafile-client-7.0.9/i18n/seafile_el_GR.ts --- old/seafile-client-7.0.8/i18n/seafile_el_GR.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_el_GR.ts 2020-07-29 04:24:40.000000000 +0200 @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Ακύρωση</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3149,6 +3157,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_es.ts new/seafile-client-7.0.9/i18n/seafile_es.ts --- old/seafile-client-7.0.8/i18n/seafile_es.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_es.ts 2020-07-29 04:24:40.000000000 +0200 @@ -190,7 +190,7 @@ <source>File "%1" failed to upload.</source> <translation>Archivo "%1" -falló al subir.</translation> +falló la subida.</translation> </message> <message> <source>Permission Error!</source> @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Cancelar</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation>cifrado punto a punto</translation> + </message> + <message> + <source>TextLabel</source> + <translation>TextLabel</translation> + </message> </context> <context> <name>DaemonManager</name> @@ -524,7 +532,7 @@ <name>DataManager</name> <message> <source>Another copy or move operation is in progress. Please wait until it finishes.</source> - <translation type="unfinished"/> + <translation>Existe otra operación de copiar o mover en progreso. Por favor espere hasta que ésta termine.</translation> </message> </context> <context> @@ -3155,7 +3163,11 @@ <name>SyncErrorsTableView</name> <message> <source>Delete file sync error failed</source> - <translation type="unfinished"/> + <translation>Fallo al eliminar error de sincronización de archivo</translation> + </message> + <message> + <source>delete</source> + <translation>eliminar</translation> </message> </context> <context> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_es_AR.ts new/seafile-client-7.0.9/i18n/seafile_es_AR.ts --- old/seafile-client-7.0.8/i18n/seafile_es_AR.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_es_AR.ts 2020-07-29 04:24:40.000000000 +0200 @@ -190,7 +190,7 @@ <source>File "%1" failed to upload.</source> <translation>Archivo "%1" -falló al subir.</translation> +falló la subida.</translation> </message> <message> <source>Permission Error!</source> @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Cancelar</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation>cifrado punto a punto</translation> + </message> + <message> + <source>TextLabel</source> + <translation>TextLabel</translation> + </message> </context> <context> <name>DaemonManager</name> @@ -524,7 +532,7 @@ <name>DataManager</name> <message> <source>Another copy or move operation is in progress. Please wait until it finishes.</source> - <translation type="unfinished"/> + <translation>Existe otra operación de copiar o mover en progreso. Por favor espere hasta que ésta termine.</translation> </message> </context> <context> @@ -3155,7 +3163,11 @@ <name>SyncErrorsTableView</name> <message> <source>Delete file sync error failed</source> - <translation type="unfinished"/> + <translation>Fallo al eliminar error de sincronización de archivo</translation> + </message> + <message> + <source>delete</source> + <translation>eliminar</translation> </message> </context> <context> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_es_MX.ts new/seafile-client-7.0.9/i18n/seafile_es_MX.ts --- old/seafile-client-7.0.8/i18n/seafile_es_MX.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_es_MX.ts 2020-07-29 04:24:40.000000000 +0200 @@ -190,7 +190,7 @@ <source>File "%1" failed to upload.</source> <translation>Archivo "%1" -falló al subir.</translation> +falló la subida.</translation> </message> <message> <source>Permission Error!</source> @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Cancelar</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation>cifrado punto a punto</translation> + </message> + <message> + <source>TextLabel</source> + <translation>TextLabel</translation> + </message> </context> <context> <name>DaemonManager</name> @@ -524,7 +532,7 @@ <name>DataManager</name> <message> <source>Another copy or move operation is in progress. Please wait until it finishes.</source> - <translation type="unfinished"/> + <translation>Existe otra operación de copiar o mover en progreso. Por favor espere hasta que ésta termine.</translation> </message> </context> <context> @@ -3155,7 +3163,11 @@ <name>SyncErrorsTableView</name> <message> <source>Delete file sync error failed</source> - <translation type="unfinished"/> + <translation>Fallo al eliminar error de sincronización de archivo</translation> + </message> + <message> + <source>delete</source> + <translation>eliminar</translation> </message> </context> <context> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_et_EE.ts new/seafile-client-7.0.9/i18n/seafile_et_EE.ts --- old/seafile-client-7.0.8/i18n/seafile_et_EE.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_et_EE.ts 2020-07-29 04:24:40.000000000 +0200 @@ -500,6 +500,14 @@ <source>Cancel</source> <translation type="unfinished"/> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_fr_FR.ts new/seafile-client-7.0.9/i18n/seafile_fr_FR.ts --- old/seafile-client-7.0.8/i18n/seafile_fr_FR.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_fr_FR.ts 2020-07-29 04:24:40.000000000 +0200 @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Annuler</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -524,7 +532,7 @@ <name>DataManager</name> <message> <source>Another copy or move operation is in progress. Please wait until it finishes.</source> - <translation type="unfinished"/> + <translation>Une opération de copie ou de déplacement est en cours. Veuillez patienter.</translation> </message> </context> <context> @@ -2188,7 +2196,7 @@ </message> <message> <source>failed to open sync error id database</source> - <translation type="unfinished"/> + <translation>Impossible d'ouvrir la base des ID d'erreurs de synchronisation</translation> </message> </context> <context> @@ -3040,11 +3048,11 @@ </message> <message> <source>Upload Link</source> - <translation type="unfinished"/> + <translation>Lien de téléversement</translation> </message> <message> <source>Upload link:</source> - <translation type="unfinished"/> + <translation>Lien de téléversement :</translation> </message> </context> <context> @@ -3154,7 +3162,11 @@ <name>SyncErrorsTableView</name> <message> <source>Delete file sync error failed</source> - <translation type="unfinished"/> + <translation>Échec de synchronisation du fichier supprimé.</translation> + </message> + <message> + <source>delete</source> + <translation>Supprimer</translation> </message> </context> <context> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_he_IL.ts new/seafile-client-7.0.9/i18n/seafile_he_IL.ts --- old/seafile-client-7.0.8/i18n/seafile_he_IL.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_he_IL.ts 2020-07-29 04:24:40.000000000 +0200 @@ -505,6 +505,14 @@ <source>Cancel</source> <translation>ביטול</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3141,6 +3149,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_hu_HU.ts new/seafile-client-7.0.9/i18n/seafile_hu_HU.ts --- old/seafile-client-7.0.8/i18n/seafile_hu_HU.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_hu_HU.ts 2020-07-29 04:24:40.000000000 +0200 @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Mégsem</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3151,6 +3159,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_is.ts new/seafile-client-7.0.9/i18n/seafile_is.ts --- old/seafile-client-7.0.8/i18n/seafile_is.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_is.ts 2020-07-29 04:24:40.000000000 +0200 @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Hætta við</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3149,6 +3157,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_it.ts new/seafile-client-7.0.9/i18n/seafile_it.ts --- old/seafile-client-7.0.8/i18n/seafile_it.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_it.ts 2020-07-29 04:24:40.000000000 +0200 @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Annulla</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3151,6 +3159,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_ja.ts new/seafile-client-7.0.9/i18n/seafile_ja.ts --- old/seafile-client-7.0.8/i18n/seafile_ja.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_ja.ts 2020-07-29 04:24:40.000000000 +0200 @@ -507,6 +507,14 @@ <source>Cancel</source> <translation>キャンセル</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3140,6 +3148,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_ko_KR.ts new/seafile-client-7.0.9/i18n/seafile_ko_KR.ts --- old/seafile-client-7.0.8/i18n/seafile_ko_KR.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_ko_KR.ts 2020-07-29 04:24:40.000000000 +0200 @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>취소</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3159,6 +3167,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_lv.ts new/seafile-client-7.0.9/i18n/seafile_lv.ts --- old/seafile-client-7.0.8/i18n/seafile_lv.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_lv.ts 2020-07-29 04:24:40.000000000 +0200 @@ -504,6 +504,14 @@ <source>Cancel</source> <translation>Atcelt</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3133,6 +3141,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_nb_NO.ts new/seafile-client-7.0.9/i18n/seafile_nb_NO.ts --- old/seafile-client-7.0.8/i18n/seafile_nb_NO.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_nb_NO.ts 2020-07-29 04:24:40.000000000 +0200 @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Avbryt</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3149,6 +3157,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_nl_BE.ts new/seafile-client-7.0.9/i18n/seafile_nl_BE.ts --- old/seafile-client-7.0.8/i18n/seafile_nl_BE.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_nl_BE.ts 2020-07-29 04:24:40.000000000 +0200 @@ -506,6 +506,14 @@ <source>Cancel</source> <translation>Annuleer</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3146,6 +3154,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_nl_NL.ts new/seafile-client-7.0.9/i18n/seafile_nl_NL.ts --- old/seafile-client-7.0.8/i18n/seafile_nl_NL.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_nl_NL.ts 2020-07-29 04:24:40.000000000 +0200 @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Annuleren</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3149,6 +3157,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_pl_PL.ts new/seafile-client-7.0.9/i18n/seafile_pl_PL.ts --- old/seafile-client-7.0.8/i18n/seafile_pl_PL.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_pl_PL.ts 2020-07-29 04:24:40.000000000 +0200 @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Anuluj</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3157,6 +3165,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_pt_BR.ts new/seafile-client-7.0.9/i18n/seafile_pt_BR.ts --- old/seafile-client-7.0.8/i18n/seafile_pt_BR.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_pt_BR.ts 2020-07-29 04:24:40.000000000 +0200 @@ -506,6 +506,14 @@ <source>Cancel</source> <translation>Cancelar</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3149,6 +3157,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_pt_PT.ts new/seafile-client-7.0.9/i18n/seafile_pt_PT.ts --- old/seafile-client-7.0.8/i18n/seafile_pt_PT.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_pt_PT.ts 2020-07-29 04:24:40.000000000 +0200 @@ -505,6 +505,14 @@ <source>Cancel</source> <translation>Cancelar</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3141,6 +3149,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_ru.ts new/seafile-client-7.0.9/i18n/seafile_ru.ts --- old/seafile-client-7.0.8/i18n/seafile_ru.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_ru.ts 2020-07-29 04:24:40.000000000 +0200 @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>Отмена</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation>сквозное шифрование</translation> + </message> + <message> + <source>TextLabel</source> + <translation>Метка</translation> + </message> </context> <context> <name>DaemonManager</name> @@ -524,7 +532,8 @@ <name>DataManager</name> <message> <source>Another copy or move operation is in progress. Please wait until it finishes.</source> - <translation type="unfinished"/> + <translation> +Выполняется другая операция копирования или перемещения. Подождите, пока она не закончится.</translation> </message> </context> <context> @@ -3153,7 +3162,11 @@ <name>SyncErrorsTableView</name> <message> <source>Delete file sync error failed</source> - <translation type="unfinished"/> + <translation>Ошибка синхронного удаления файла</translation> + </message> + <message> + <source>delete</source> + <translation>удалить</translation> </message> </context> <context> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_sk_SK.ts new/seafile-client-7.0.9/i18n/seafile_sk_SK.ts --- old/seafile-client-7.0.8/i18n/seafile_sk_SK.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_sk_SK.ts 2020-07-29 04:24:40.000000000 +0200 @@ -505,6 +505,14 @@ <source>Cancel</source> <translation>Zrušiť</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3141,6 +3149,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_sv.ts new/seafile-client-7.0.9/i18n/seafile_sv.ts --- old/seafile-client-7.0.8/i18n/seafile_sv.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_sv.ts 2020-07-29 04:24:40.000000000 +0200 @@ -3,11 +3,11 @@ <name>AboutDialog</name> <message> <source>About %1</source> - <translation type="unfinished"/> + <translation>Ungefär %1</translation> </message> <message> <source><h2>%1 Client %2</h2></source> - <translation type="unfinished"/> + <translation><h2>%1 Klient %2</h2></translation> </message> <message> <source><h5> REV %1 </h5></source> @@ -15,11 +15,11 @@ </message> <message> <source>About</source> - <translation type="unfinished"/> + <translation>Ungefär</translation> </message> <message> <source>Check For Updates</source> - <translation type="unfinished"/> + <translation>Sök efter uppdateringar</translation> </message> <message> <source>OK</source> @@ -500,6 +500,14 @@ <source>Cancel</source> <translation>Avbryt</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3128,6 +3136,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_tr.ts new/seafile-client-7.0.9/i18n/seafile_tr.ts --- old/seafile-client-7.0.8/i18n/seafile_tr.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_tr.ts 2020-07-29 04:24:40.000000000 +0200 @@ -509,6 +509,14 @@ <source>Cancel</source> <translation>İptal et</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3149,6 +3157,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_uk.ts new/seafile-client-7.0.9/i18n/seafile_uk.ts --- old/seafile-client-7.0.8/i18n/seafile_uk.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_uk.ts 2020-07-29 04:24:40.000000000 +0200 @@ -505,6 +505,14 @@ <source>Cancel</source> <translation>Відміна</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -3141,6 +3149,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_zh_CN.ts new/seafile-client-7.0.9/i18n/seafile_zh_CN.ts --- old/seafile-client-7.0.8/i18n/seafile_zh_CN.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_zh_CN.ts 2020-07-29 04:24:40.000000000 +0200 @@ -504,6 +504,14 @@ <source>Cancel</source> <translation>取消</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation>端到端加密</translation> + </message> + <message> + <source>TextLabel</source> + <translation>文本标签</translation> + </message> </context> <context> <name>DaemonManager</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/i18n/seafile_zh_TW.ts new/seafile-client-7.0.9/i18n/seafile_zh_TW.ts --- old/seafile-client-7.0.8/i18n/seafile_zh_TW.ts 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/i18n/seafile_zh_TW.ts 2020-07-29 04:24:40.000000000 +0200 @@ -3,7 +3,7 @@ <name>AboutDialog</name> <message> <source>About %1</source> - <translation type="unfinished"/> + <translation>關於 %1</translation> </message> <message> <source><h2>%1 Client %2</h2></source> @@ -15,7 +15,7 @@ </message> <message> <source>About</source> - <translation type="unfinished"/> + <translation>關於</translation> </message> <message> <source>Check For Updates</source> @@ -228,7 +228,7 @@ </message> <message> <source>Cancel</source> - <translation type="unfinished"/> + <translation>取消</translation> </message> </context> <context> @@ -508,6 +508,14 @@ <source>Cancel</source> <translation>取消</translation> </message> + <message> + <source>end-to-end encryption</source> + <translation type="unfinished"/> + </message> + <message> + <source>TextLabel</source> + <translation type="unfinished"/> + </message> </context> <context> <name>DaemonManager</name> @@ -708,7 +716,7 @@ </message> <message> <source>Refresh</source> - <translation type="unfinished"/> + <translation>重新整理</translation> </message> <message> <source>%1 items</source> @@ -3151,6 +3159,10 @@ <source>Delete file sync error failed</source> <translation type="unfinished"/> </message> + <message> + <source>delete</source> + <translation type="unfinished"/> + </message> </context> <context> <name>TwoFactorDialog</name> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/src/auto-login-service.cpp new/seafile-client-7.0.9/src/auto-login-service.cpp --- old/seafile-client-7.0.8/src/auto-login-service.cpp 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/src/auto-login-service.cpp 2020-07-29 04:24:40.000000000 +0200 @@ -33,6 +33,7 @@ absolute_url.setScheme(""); absolute_url.setHost(""); + absolute_url.setPort(-1); QString next = absolute_url.toString().mid(2); GetLoginTokenRequest *req = new GetLoginTokenRequest(account, next); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/src/ui/create-repo-dialog.cpp new/seafile-client-7.0.9/src/ui/create-repo-dialog.cpp --- old/seafile-client-7.0.8/src/ui/create-repo-dialog.cpp 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/src/ui/create-repo-dialog.cpp 2020-07-29 04:24:40.000000000 +0200 @@ -49,6 +49,8 @@ const QRect screen = QApplication::desktop()->screenGeometry(); move(screen.center() - this->rect().center()); + + mTipLabel->setText("(" + tr("end-to-end encryption") + ")"); } CreateRepoDialog::~CreateRepoDialog() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/seafile-client-7.0.8/ui/create-repo-dialog.ui new/seafile-client-7.0.9/ui/create-repo-dialog.ui --- old/seafile-client-7.0.8/ui/create-repo-dialog.ui 2020-06-02 10:44:36.000000000 +0200 +++ new/seafile-client-7.0.9/ui/create-repo-dialog.ui 2020-07-29 04:24:40.000000000 +0200 @@ -25,14 +25,54 @@ <property name="lineWidth"> <number>0</number> </property> - <layout class="QFormLayout" name="formLayout"> - <property name="fieldGrowthPolicy"> - <enum>QFormLayout::AllNonFixedFieldsGrow</enum> - </property> - <item row="0" column="0"> - <widget class="QLabel" name="label_4"> + <layout class="QGridLayout" name="gridLayout"> + <item row="2" column="1"> + <layout class="QHBoxLayout" name="horizontalLayout_8"> + <item> + <widget class="QCheckBox" name="mEncrypteCheckBox"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text"> + <string>encrypted</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="mTipLabel"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Fixed" vsizetype="Preferred"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text"> + <string>TextLabel</string> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer_2"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + </layout> + </item> + <item row="4" column="0"> + <widget class="QLabel" name="mPasswordAgainLabel"> <property name="text"> - <string>Path:</string> + <string>Password Again:</string> </property> </widget> </item> @@ -57,6 +97,13 @@ </property> </widget> </item> + <item row="3" column="0"> + <widget class="QLabel" name="mPasswordLabel"> + <property name="text"> + <string>Password:</string> + </property> + </widget> + </item> <item row="1" column="1"> <widget class="QLineEdit" name="mName"> <property name="sizePolicy"> @@ -67,20 +114,6 @@ </property> </widget> </item> - <item row="2" column="1"> - <widget class="QCheckBox" name="mEncrypteCheckBox"> - <property name="text"> - <string>encrypted</string> - </property> - </widget> - </item> - <item row="3" column="0"> - <widget class="QLabel" name="mPasswordLabel"> - <property name="text"> - <string>Password:</string> - </property> - </widget> - </item> <item row="3" column="1"> <widget class="QLineEdit" name="mPassword"> <property name="enabled"> @@ -94,10 +127,10 @@ </property> </widget> </item> - <item row="4" column="0"> - <widget class="QLabel" name="mPasswordAgainLabel"> + <item row="0" column="0"> + <widget class="QLabel" name="label_4"> <property name="text"> - <string>Password Again:</string> + <string>Path:</string> </property> </widget> </item>
