Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-11-22Fix crash in PropagateRemoteMkdirHannah von Reth
Fixes: #9170
2021-11-17Create our own message loop to receive WM_ENDSESSIONHannah von Reth
This ensures we receive the message even if no window is shown
2021-11-17Fix re-authenticating at startup when logged out beforeErik Verbruggen
Fixes #8924
2021-11-16Add branding option to disable multiple db warningHannah von Reth
2021-11-10Ensure we only update the clients url after the sync was stopped (#9202)Hannah von Reth
When the client detects a change of the url we ask the user to accept the change or if it was only representational change we directly accept the change. Due to a bug the we aborted the sync only after we updated the url. This caused the client to idle for one minute.
2021-10-27Fix propagation of ignore list changesErik Verbruggen
Previously, when changing the ignore list, those changes would not be propagated to existing sync folders. Only after restarting the client, would these changes be applied. https://github.com/owncloud/client/issues/8975 https://github.com/owncloud/client/pull/9149
2021-10-27Add branding parameter to disable explorer context menu iconsHannah von Reth
Fixes: #9167
2021-10-20Properly unselect the vfs button.Hannah von Reth
Fixes: #9159
2021-10-15Fix icon name in desktop file with ownBrander themesFabian Müller
Fixes broken icon reference in desktop entries for some branded build themes. The icon files are not named by the executable name, but by the short name.
2021-10-13Fix application shutdown during Windows logoutHannah von Reth
2021-10-13Merge remote-tracking branch 'origin/2.9.1' into 2.9Hannah von Reth
2021-10-13Release v2.9.1Hannah von Reth
2021-10-13Don't point to the issue only fixed in 2.9.2Hannah von Reth
2021-10-07Merge remote-tracking branch 'origin/2.9.1' into 2.9Hannah von Reth
2021-10-06Prevent downgrade of Windows VFS foldersHannah von Reth
2021-10-06Update 9010Hannah von Reth
2021-10-06Fix changelog entryHannah von Reth
2021-10-01Allow to remove broken sync folder connectionsHannah von Reth
2021-09-28Prevent recration of db after removalHannah von Reth
2021-09-28Fix dehydration of read only filesHannah von Reth
2021-09-28Add missing changelog entryHannah von Reth
2021-09-23No longer try to concatenate definesHannah von Reth
Fixes: #8920
2021-09-22Improve error handling during vfs setupHannah von Reth
2021-09-22Don't crash if sync root is not read/writableHannah von Reth
2021-09-21Update craft-core to fix mac translation deploymentHannah von Reth
2021-09-21Don't ignore suffix placeholderHannah von Reth
2021-09-21Fix migration on minor url format changes like…Hannah von Reth
…https://demo.owncloud.org/ to https://demo.owncloud.org This commit also removed the infix from the cmd client, as it is to unreliable.
2021-09-17Also migrate pre 2.6 db filesHannah von Reth
2021-09-17Fix changelog entryHannah von Reth
2021-09-15Fix crash on missing sync rootHannah von Reth
Fixes: #9016
2021-09-15Fix crash on shutdownHannah von Reth
Fixes: #9014
2021-09-15Migrate existing db files and save their journal path (#9028)Hannah von Reth
Fixes: #9019
2021-09-14Fix possible crashHannah von Reth
https://sentry.io/organizations/owncloud/issues/2641160195/events/a0519fae20d74fdda4f696270a307bcd/
2021-09-14Fix changelogHannah von Reth
2021-09-14Update craft blueprints to umport a fix for QTBUG-91059Hannah von Reth
2021-09-14Add SyncStatus to the tablesHannah von Reth
Issue: #9000
2021-09-13Display the local time not utc timeHannah von Reth
Copying to clipboard will still display utc time (raw data) Fixes: #9006
2021-09-08Explicitly set the layout direction if changing the localeHannah von Reth
Fixes: #8806
2021-09-08Release 2.9.0Hannah von Reth
2021-08-26Accept aborted delete if is ignored due to _hasBlacklistEntryHannah von Reth
To reproduce the issue: - Take two existing files A, B - Rename B to a The client will detect the move from B to a, as after the first occurance of the issue the action is ignored, we will encounter the enforce. ``` 08-26 17:07:45:901 [ warning sync.discovery ]: OC_ENFORCE(FAILING) "Photos/Teotihuacan.jpg" 08-26 17:07:46:323 [ warning sync.discovery ]: instruction == CSYNC_INSTRUCTION_REMOVE false 08-26 17:07:46:610 [ warning sync.discovery ]: (item->_type == ItemTypeVirtualFile && instruction == CSYNC_INSTRUCTION_NEW) false 08-26 17:07:46:880 [ warning sync.discovery ]: (item->_isRestoration && instruction & (CSYNC_INSTRUCTION_NEW | CSYNC_INSTRUCTION_IGNORE) false 08-26 17:07:47:319 [ warning sync.discovery ]: instruction SyncInstruction(CSYNC_INSTRUCTION_IGNORE) 08-26 17:07:47:745 [ warning sync.discovery ]: item->_type CSyncEnums::ItemTypeFile 08-26 17:07:48:144 [ warning sync.discovery ]: item->_isRestoration false 08-26 17:07:48:586 [ warning sync.discovery ]: item->_remotePerm "WDNVR" ```
2021-08-24Add changelog entry for https://github.com/owncloud/client/pull/8940Hannah von Reth
2021-08-18Correctly handle credential invalidation on start upHannah von Reth
Fixes: #8901
2021-08-16Poll interval from capabilities (#8777)Klaas Freitag
* Add remotePollInterval capability. * Use public const int rather than define for default value. * Honour pollinterval from account capabilities for poll frequency. With this, admins can change the remote poll interval of desktop clients with the capability settings. * Use more efficient invocation of the etag job slot. * Consider capability value to be in milliseconds. * Make format check happy. * Add a ElapsedTimer to measure time since last Etag check. Also, do the check if one of the folders is due to sync every second. That way we get a more accurate sync frequency. The check is very lightweight. * Extend remotePollInterval config method to accept default value. With that it is possible to read the value for the remotepollinterval from the capabilities. * Add changelog entry for #8777. * Changes from clang-format * Fix changelog entry, punctuation at end. * do not go for assumptions how long the request takes. No magic number. * Change some method interfaces to seconds rather than microseconds. Feedback from review. * Again considering more review feedback * Remove additional 5s check already performed in ConfigFile::remotePollInterval Co-authored-by: Hannah von Reth <hannah.vonreth@owncloud.com>
2021-08-16Add branding parameter to skip the advanced setup pageHannah von Reth
Fixes: #8665
2021-08-12Limit window size to 2/3Hannah von Reth
Fixes: #8366
2021-08-10Don't allow to use a folder with a .sync_*.dbHannah von Reth
2021-08-10Prevent using a sync folder for multiple accountsHannah von Reth
Fixes: #8849
2021-08-06Add changelog item for #8824Fabian Müller
2021-08-06Only show the settings if explicitly reuestedHannah von Reth
On Windows and Linux this is the case if a used started ownCloud using a shortcut/desktop entry (we pass --showsettings) On mac re receive a special event when the client bundle is launched by a user
2021-08-06Align sync status iconsHannah von Reth
Display info state if we have ignored issues Fixes: #7715 Fixes: #7365 Fixes: #7200 Fixes: #5860