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
2022-05-17Remove version checks for < 10.0Hannah von Reth
2021-10-13Merge remote-tracking branch 'origin/2.9'Hannah von Reth
2021-10-07Do not try to (repeatedly) fetch profile pictures when not availableErik Verbruggen
The server has a capability to indicate that profile pictures (avatars) are not available. Previously, the client would try to fetch them no matter what, and even retry when the server responded with a 404. Now we take the server capability into account, and do not try to fetch those when not available. Fixes: #8758
2021-09-21Fix copy private link urlHannah von Reth
2021-08-12Modern connectHannah von Reth
2021-08-12Clazy: old-style-connectHannah von Reth
2021-06-16Remove possible qt containers detach (#8727)Aleksey Lysenko
* Replaced obsolete foreach-loops with for-loops * Added a copy of queries into SqlDatabase::close * Used const reference to avoid unneeded copying * Fixed Qt containers possible detach within for-loop * Removed unneeded copies before for-loops
2020-10-29Use a QPixmap for the avatarHannah von Reth
2020-10-28Reintroduce a dark and a light themeHannah von Reth
2020-08-21Replace monochrome icons with https://fontawesome.com svg'sHannah von Reth
2020-08-21Use QIcon where possible, don't invert color of icons we will use color that...Hannah von Reth
matches a dark and light theme or use two seperate themes.
2020-07-14Cleanup usage of flagsHannah von Reth
2020-07-14Sharing: Select permission checkboxes based on the servers defaultHannah von Reth
Fixes: #7877
2020-03-03[Gui] Apply createColorAwareIcon on more iconsHannah von Reth
2019-07-09Sharing: Create shares with appropriate permissions #7275Christian Kamm
If user A shares something with user B and allows resharing but removes some other permission then user B should be able to share the item or any of its contents with user C and the new share permissions should automatically be <= the permissions of the original share. Currently this works correctly when resharing the original item but fails for any subitem, preventing the reshare entirely. With this patch the reshare will always be created with appropriately limited permissions.
2018-04-19More Button: Use SVG and fix size so it renders good in highdpiOlivier Goffart
When the more button was changed from using a text to an icon, the size computation was not adjusted proerly to that of a button with an icon. And using svg allows it to be rendered correctly with high-dpi It looks much much nicer now
2017-11-21User shares: Further avatar tweaksChristian Kamm
2017-11-21User shares: Use background color, remove permission frame #6176Christian Kamm
2017-11-21User shares: Fix missing label when there are only link sharesChristian Kamm
The "not shared with users or groups" label only appeared if there were no shares at all.
2017-11-21Avatars in user share dialog: Minor tweaksChristian Kamm
2017-11-21AvatarJob improvementsChristian Kamm
* Drop AvatarJob2 * Allow AvatarJob to retrieve different sizes and users * Make creating a circular avatar into a function (maybe all avatars should be made into that shape in the first place)
2017-11-21User shares: Show avatarsRoeland Jago Douma
[Sharing] Show placeholders for avatars Just like on the web show placeholders for avatars in the sharing dialog [Sharing] Show avatars! [Sharing] Show same avatar placeholder for group/federated shares as on web
2017-09-21Use the Qt5 connection syntax (automated with clazy)Olivier Goffart
This is motivated by the fact that QMetaObject::noralizeSignature takes 7.35% CPU of the LargeSyncBench. (Mostly from ABstractNetworkJob::setupConnections and PropagateUploadFileV1::startNextChunk). It could be fixed by using normalized signature in the connection statement, but i tought it was a good oportunity to modernize the code. This commit only contains calls that were automatically converted with clazy.
2017-09-19Private links: Retrieve link through propfind property #6020Christian Kamm
* The sharing ui does a propfind anyway: use that to query the new property as well! * For the socket api, asynchronously query the server for the right url when an action that needs it is triggered. The old, manually generated URL will be used as fallback in case the server doesn't support the new property or the property can't be retrieved for some reason. Depends on owncloud/core#29021
2017-07-07Introduce private link sharing #5023Christian Kamm
* SocketAPI has COPL_LOCAL_LINK / EMAIL_LOCAL_LINK commands * The nautilus and dolphing shell integrations show a submenu from which one can share as well as access the private link. * The SocketAPI provides a new GET_STRINGS command to access localized strings. * The private link can also be accessed from the user/group sharing dialog. * The numeric file id is extracted from the full id to create the private link url.
2017-05-17Apply clang-formatChristian Kamm
2017-05-11Upgrade some qCDebug to qCInfo or qCWarningJocelyn Turcotte
Use qCInfo for anything that has general value for support and development. Use qCWarning for any recoverable error and qCCritical for anything that could result in data loss or would identify a serious issue with the code. Issue #5647
2017-05-11Use Qt logging categories for loggingJocelyn Turcotte
This gives more insight about the logs and allow setting fine-tuned logging rules. The categories are set to only output Info by default so this allows us to provide more concise logging while keeping the ability to extract more information for a specific category when developping or debugging customer issues. Issue #5647
2017-05-08Sharing: Switch from QtJson to Qt5's QJson #5710Christian Kamm
2017-04-21Rename ShareWidget to ShareUserLineChristian Kamm
There will probably be a ShareLinkLine too, due to #5655
2017-04-21ShareDialog: Use a tab widget #5655Christian Kamm
2017-04-13Merge remote-tracking branch 'origin/2.3'Olivier Goffart
Conflicts: VERSION.cmake
2017-04-11ShareDialog: Reenable user input textedit on error #5694Christian Kamm
2017-04-04ShareDialog: Hide the detailed permissions if there is only one #5655Christian Kamm
2017-03-24ShareDialog: Make "can edit" partially checked sometimes #5642Christian Kamm
Previously the check box was checked if *any* of its sub-permissions were granted. This can hide the fact that only a limited subset of them are actually granted. The new behavior is to display as "partially checked" if only some of the sub-permissions are available. Clicking the check box itself still toggles between granting all or none of them.
2017-03-15Account server version: Helper to create versionsChristian Kamm
Hex literals don't work well with version 10: 0x100000 doesn't do the right thing.
2016-10-25License: Adjust license of GPLv2 source files to GPLv2+Christian Kamm
See #5180
2016-09-16Fix the MSVC buildJocelyn Turcotte
- Replace functions that are provided by MinGW with a Win32-based implementation - Explicitly export needed symbols from ocsync.dll - Rename share.h to sharemanager.h since the name clashes with one of the Windows headers and get included from there - Remove the timestamp from the fallback csync stderr logging, it's not used since we always provide a log callback
2016-06-27Share: Permissions for federated shares on servers >=9.1 #4996 (#5001)ckamm
This disables the workaround 487e1fdca5ee04fc98c1ed77898df70d740967c8 for servers that are new enough to support fine grained permissions on federated shares. The consequence is that the 'reshare' permission is now granted by default and that users can edit permissions on the usual fine-grained level again. The way the client deals with servers <9.1 is unchanged.
2016-05-31Search results are filtered by server. Don't filter a second time.Stephen Colebrook
Also allows searching on attributes other than displayname in ldap configurations. Search results match web and mobile apps.
2016-04-29Add spinner during sharee search (#4764)Roeland Douma
Fixed #4740 When searching for sharees we should display a loading spinner.
2016-04-14Disable unavailable sharing permissions #4383Christian Kamm
Users can't reshare with more permissions than they have themselves.
2016-03-08Add spinner to show we are creating the shareRoeland Jago Douma
Fixes #3737
2016-03-01Do not send reshare permissions when creating a federated shareRoeland Jago Douma
See https://github.com/owncloud/core/issues/22122#issuecomment-185637344
2016-02-22Lock the sharee input when sharingRoeland Jago Douma
This prevents accidentally sharing with the same sharee multiple times. Because creating shares is not instance. Fixes #4469
2016-01-12Sharing: feedback when there is no result while searching for an user #4348Olivier Goffart
2016-01-12Sharing: Display the error from the server when trying to share with users ↵Olivier Goffart
or group
2015-12-10User Sharing: Match user names and case insensitive #4269Christian Kamm
2015-12-10Share UI: Allow typing in a shareeChristian Kamm
Previously you *had* to select one of the completion options, even if the text in the lineedit was identical to one of the options.
2015-12-08Share UI: Hide 'can share' if capability missing #4231Christian Kamm