diff -Nru nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/debian/changelog nextcloud-desktop-3.13.50-20240426.031231.aa175036e/debian/changelog --- nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/debian/changelog 2024-04-25 03:07:04.000000000 +0000 +++ nextcloud-desktop-3.13.50-20240426.031231.aa175036e/debian/changelog 2024-04-26 03:14:20.000000000 +0000 @@ -1,8 +1,32 @@ -nextcloud-desktop (3.13.50-20240425.030520.98e1d71f7-1.0~mantic1) mantic; urgency=medium +nextcloud-desktop (3.13.50-20240426.031231.aa175036e-1.0~mantic1) mantic; urgency=medium - * Merge commit '98e1d71f708bf034e5fcb1e9ce50339616fb18a4' into HEAD + * Merge commit 'aa175036e98898f39f7cdda3962c7a150d99aec4' into HEAD - -- Nextcloud bot Thu, 25 Apr 2024 03:07:04 +0000 + -- Nextcloud bot Fri, 26 Apr 2024 03:14:20 +0000 + +nextcloud-desktop (3.13.50-20240426.024427.aa175036e-1.0~mantic1) mantic; urgency=medium + + * Fix(l10n): Update translations from Transifex + + -- Nextcloud bot Fri, 26 Apr 2024 02:44:27 +0000 + +nextcloud-desktop (3.13.50-20240425.081813.7e801d6c9-1.0~mantic1) mantic; urgency=medium + + * Merge pull request #6691 from nextcloud/bugfix/slow-sync-with-tray-open + + -- allexzander Thu, 25 Apr 2024 10:18:13 +0200 + +nextcloud-desktop (3.13.50-20240425.081421.59fc619c3-1.0~mantic1) mantic; urgency=medium + + * Merge pull request #6696 from nextcloud/bugfix/conflictdialog-multiple-darkmode + + -- Matthieu Gallien Thu, 25 Apr 2024 10:14:21 +0200 + +nextcloud-desktop (3.13.50-20240424.224301.2ea6d3fd3-1.0~mantic1) mantic; urgency=medium + + * Bugfix. Conflict dialog for multiple files. Fix checkbox border colors for dark mode on Windows. + + -- alex-z Thu, 25 Apr 2024 00:43:01 +0200 nextcloud-desktop (3.13.50-20240425.024200.98e1d71f7-1.0~mantic1) mantic; urgency=medium @@ -10,6 +34,18 @@ -- Nextcloud bot Thu, 25 Apr 2024 02:42:00 +0000 +nextcloud-desktop (3.13.50-20240418.134209.9fac497e6-1.0~mantic1) mantic; urgency=medium + + * Hotfix. Slow download speed while tray is open. Do not run rotation animation in syncstatus in tray. + + -- alex-z Thu, 18 Apr 2024 15:42:09 +0200 + +nextcloud-desktop (3.13.50-20240418.131651.fc31ac4a1-1.0~mantic1) mantic; urgency=medium + + * Just for test. Disable status update to avoid havin a sync status animation in tray. + + -- alex-z Thu, 18 Apr 2024 15:16:51 +0200 + nextcloud-desktop (3.13.50-20240424.131739.caa4d8943-1.0~mantic1) mantic; urgency=medium * Merge pull request #6660 from nextcloud/bugfix/fileslock_incorrect_readonly diff -Nru nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/src/gui/ConflictItemFileInfo.qml nextcloud-desktop-3.13.50-20240426.031231.aa175036e/src/gui/ConflictItemFileInfo.qml --- nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/src/gui/ConflictItemFileInfo.qml 2024-04-25 03:01:40.000000000 +0000 +++ nextcloud-desktop-3.13.50-20240426.031231.aa175036e/src/gui/ConflictItemFileInfo.qml 2024-04-26 03:09:25.000000000 +0000 @@ -31,6 +31,24 @@ CheckBox { id: selectItem + palette { + text: Style.ncTextColor + windowText: Style.ncTextColor + buttonText: Style.ncTextColor + brightText: Style.ncTextBrightColor + highlight: Style.lightHover + highlightedText: Style.ncTextColor + light: Style.lightHover + midlight: Style.ncSecondaryTextColor + mid: Style.darkerHover + dark: Style.menuBorder + button: Style.buttonBackgroundColor + window: palette.dark // NOTE: Fusion theme uses darker window colour for the border of the checkbox + base: Style.backgroundColor + toolTipBase: Style.backgroundColor + toolTipText: Style.ncTextColor + } + anchors.left: parent.left anchors.verticalCenter: parent.verticalCenter diff -Nru nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/src/gui/ResolveConflictsDialog.qml nextcloud-desktop-3.13.50-20240426.031231.aa175036e/src/gui/ResolveConflictsDialog.qml --- nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/src/gui/ResolveConflictsDialog.qml 2024-04-25 03:01:40.000000000 +0000 +++ nextcloud-desktop-3.13.50-20240426.031231.aa175036e/src/gui/ResolveConflictsDialog.qml 2024-04-26 03:09:25.000000000 +0000 @@ -94,6 +94,24 @@ Layout.fillWidth: true + palette { + text: Style.ncTextColor + windowText: Style.ncTextColor + buttonText: Style.ncTextColor + brightText: Style.ncTextBrightColor + highlight: Style.lightHover + highlightedText: Style.ncTextColor + light: Style.lightHover + midlight: Style.ncSecondaryTextColor + mid: Style.darkerHover + dark: Style.menuBorder + button: Style.buttonBackgroundColor + window: palette.dark // NOTE: Fusion theme uses darker window colour for the border of the checkbox + base: Style.backgroundColor + toolTipBase: Style.backgroundColor + toolTipText: Style.ncTextColor + } + text: qsTr('All local versions') leftPadding: 0 @@ -112,6 +130,24 @@ Layout.fillWidth: true + palette { + text: Style.ncTextColor + windowText: Style.ncTextColor + buttonText: Style.ncTextColor + brightText: Style.ncTextBrightColor + highlight: Style.lightHover + highlightedText: Style.ncTextColor + light: Style.lightHover + midlight: Style.ncSecondaryTextColor + mid: Style.darkerHover + dark: Style.menuBorder + button: Style.buttonBackgroundColor + window: palette.dark // NOTE: Fusion theme uses darker window colour for the border of the checkbox + base: Style.backgroundColor + toolTipBase: Style.backgroundColor + toolTipText: Style.ncTextColor + } + text: qsTr('All server versions') leftPadding: 0 diff -Nru nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/src/gui/tray/SyncStatus.qml nextcloud-desktop-3.13.50-20240426.031231.aa175036e/src/gui/tray/SyncStatus.qml --- nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/src/gui/tray/SyncStatus.qml 2024-04-25 03:01:40.000000000 +0000 +++ nextcloud-desktop-3.13.50-20240426.031231.aa175036e/src/gui/tray/SyncStatus.qml 2024-04-26 03:09:25.000000000 +0000 @@ -34,7 +34,7 @@ padding: 0 imageSource: syncStatus.syncIcon - running: syncStatus.syncing + running: false // hotfix for download speed slowdown when tray is open } ColumnLayout { diff -Nru nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/translations/client_es_MX.ts nextcloud-desktop-3.13.50-20240426.031231.aa175036e/translations/client_es_MX.ts --- nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/translations/client_es_MX.ts 2024-04-25 03:01:40.000000000 +0000 +++ nextcloud-desktop-3.13.50-20240426.031231.aa175036e/translations/client_es_MX.ts 2024-04-26 03:09:25.000000000 +0000 @@ -4117,7 +4117,7 @@ Folder %1 cannot be renamed because of a local file or folder name clash! - + ¡No se puede renombrar la carpeta %1 debido a un conflicto de nombre con un archivo o carpeta local! @@ -5764,12 +5764,12 @@ Failed to create debug archive - + No se pudo crear el archivo de depuración Could not create debug archive in selected location! - + ¡No se pudo crear el archivo de depuración en la ubicación seleccionada! @@ -6539,7 +6539,7 @@ Updated local virtual files metadata - + Metadatos de los archivos virtuales locales actualizados @@ -6585,7 +6585,7 @@ updating local virtual files metadata - + actualizando los metadatos de los archivos virtuales locales diff -Nru nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/translations/client_sv.ts nextcloud-desktop-3.13.50-20240426.031231.aa175036e/translations/client_sv.ts --- nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/translations/client_sv.ts 2024-04-25 03:01:41.000000000 +0000 +++ nextcloud-desktop-3.13.50-20240426.031231.aa175036e/translations/client_sv.ts 2024-04-26 03:09:25.000000000 +0000 @@ -5764,12 +5764,12 @@ Failed to create debug archive - + Kunde inte skapa felsökningsarkiv Could not create debug archive in selected location! - + Kunde inte skapa felsökningsarkiv på den valda platsen! @@ -6539,7 +6539,7 @@ Updated local virtual files metadata - + Uppdaterad metadata för lokala virtuella filer @@ -6585,7 +6585,7 @@ updating local virtual files metadata - + uppdaterar lokala virtuella filers metadata diff -Nru nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/translations/client_tr.ts nextcloud-desktop-3.13.50-20240426.031231.aa175036e/translations/client_tr.ts --- nextcloud-desktop-3.13.50-20240425.030520.98e1d71f7/translations/client_tr.ts 2024-04-25 03:01:41.000000000 +0000 +++ nextcloud-desktop-3.13.50-20240426.031231.aa175036e/translations/client_tr.ts 2024-04-26 03:09:25.000000000 +0000 @@ -4116,7 +4116,7 @@ Folder %1 cannot be renamed because of a local file or folder name clash! - + Yerel dosya veya klasör adı çakışması nedeniyle %1 klasörü yeniden adlandırılamadı! @@ -5763,12 +5763,12 @@ Failed to create debug archive - + Hata ayıklama arşivi oluşturulamadı Could not create debug archive in selected location! - + Seçilmiş konumda hata ayıklama arşivi oluşturulamadı! @@ -6538,7 +6538,7 @@ Updated local virtual files metadata - + Yerel sanal dosyalar üst verileri güncellendi @@ -6584,7 +6584,7 @@ updating local virtual files metadata - + yerel sanal dosyalar üst verileri güncelleniyor