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
2020-05-20Merge remote-tracking branch 'origin/2.6'Hannah von Reth
2020-05-20Remove dead codeHannah von Reth
2020-03-132.7 has less automatic includes on WindowsHannah von Reth
2020-03-13Merge branch '2.6'Hannah von Reth
2020-03-13Cleanup Windows shell extensionsHannah von Reth
2020-03-13Update yearHannah von Reth
2020-02-10Run clang-tidy with modernize-use-overrideOlivier Goffart
And also replace all remaining Q_DECL_OVERRIDE to just override
2020-01-14[CMAKE] Fix shell extension pathHannah von Reth
2020-01-09[CMAKE] Resolve some issues discovered during reviewHannah von Reth
2020-01-09[CMAKE] Do not create a deployable mac bundle during buildHannah von Reth
This simplifies the cmake scripts and reduces build times
2019-10-07Revert "Windows: Use better name for SocketAPI socket #6983"Markus Goetz
This reverts commit ed1e534d24f871a0ab6ea02e4c88eefe3126bf59. Doesn't make sense to spend effort on this, we keep it as it is.
2019-08-19Remove outdated visual studio projects, we now use cmakeHannah von Reth
2019-03-21Windows: Fix compile in shell_integration (3)Christian Kamm
2019-03-21Windows: Fix compile in shell_integration (2)Markus Goetz
2019-03-21Windows: Fix compile in shell_integrationMarkus Goetz
2019-03-20Windows: Use better name for SocketAPI socket #6983Markus Goetz
2019-03-04Merge remote-tracking branch 'origin/2.5'Christian Kamm
2019-02-28Windows: Fix context menu handling only own verbs #7004Christian Kamm
Previously it'd handle all verbs as if they were our own.
2019-02-05Disable base entitlementsDominik Schmidt
2018-12-08Fix KDEInstallDirs deprecation warnings (#6922)Dominik Schmidt
* Fix KDEInstallDirs deprecation warnings * Workaround deprecated variable used in kcoreaddons_add_plugin
2018-11-26winvfs: initial workChristian Kamm
Done by ckamm and dschmidt
2018-10-29Avoid warning because /MT overrides /MD flagDominik Schmidt
2018-10-29Make OCUtil helper lib static and link it statically against crtDominik Schmidt
2018-09-21Windows Shell Integration: Don't limit the size of the bufferOlivier Goffart
Otherwise we can't have operation that has many many filename As reported in #6780
2018-08-16nautilus: Fix GET_MENU_ITEMS with utf8 filenames #6643Christian Kamm
2018-07-16Nautilus: Guard against None state #6643Christian Kamm
It seems None gets assigned to 'state' in some paths.
2018-06-19nautilus shell integration: Fix when there are several branded client installedOlivier Goffart
It appears that several extension can be loaded at the same time, but their classname for the extension need to be different, otherwise only the last loaded one would be active. Issue #6524
2018-06-18Windows shellext: Update copyrights and company nameChristian Kamm
2018-06-18windows shell extension: add OCUtil/resource.hOlivier Goffart
It's a copy from OCContextMenu/resources.h
2018-06-18Windows shellext: Add rc for OCUtil #6554Christian Kamm
To set the dll's metadata.
2018-05-29Windows Shell extention: Fix clicking on the menu entriesOlivier Goffart
Issue #6553
2018-04-25Nautilus: Fix Python3 and remove many debugOlivier Goffart
Use b'\n' in the call to rfind, as the _remainder is bytes, not a string. Remove most of the debug message which happens during normal operation. They are mostly spamming the nautilus console, and can also cause bug as they may throw exception in case of wrong encoding. Relates to issue: #6406
2018-04-25Nautilus shell integration: Print python version on startup #6406Christian Kamm
2018-04-12macOS: Implement new dynamic Finder menu items #6328Markus Goetz
2018-03-28Nautilus integration: Not a ColumnProviderChristian Kamm
The nautilus plugin doesn't actually define get_columns(), so pretending to be a ColumnProvider lead to a critical warning on startup.
2018-03-24Dolphin plugin: fall back if $XDG_RUNTIME_DIR is emptywhitequark
As per XDG Base Directories specification: > If $XDG_RUNTIME_DIR is not set applications should fall back > to a replacement directory [...] In practice, the ownCloud client has the fallback, but the plugin helper does not, and if $XDG_RUNTIME_DIR is not set, the plugin mysteriously does not work.
2018-03-21Merge remote-tracking branch 'origin/2.4'Christian Kamm
2018-03-21Fix nautilus/nemo shell integration encoding issues #6393Christian Kamm
The problem was that plain encode()/decode() in python2 use ascii encoding, not utf8.
2018-01-23Merge remote-tracking branch 'origin/2.4'Olivier Goffart
Conflicts: shell_integration/nautilus/syncstate.py
2018-01-23Windows shell extension: port to the new protocolOlivier Goffart
2018-01-23Shell integration: Make nautilus work with multiselectionsChristian Kamm
Previously no menu would ever be shown if more than one file is selected. Now the GET_MENU_ITEMS command is sent with all selected files as an argument - similar to what is done for the dolphin integration.
2018-01-23Shell integration: Update nautilus for GET_MENU_ITEMSChristian Kamm
2018-01-23SocketApi: add a way to disable menu entriesOlivier Goffart
2018-01-23SocketAPI: Make it easier to add or remove item in the action menuOlivier Goffart
By making it dynamic. So far only the dolphin shell extension have been ported
2018-01-23Nautilus integration: Work with python2 and python3Christian Kamm
2018-01-23Nautilus shell integration: Port to Python 3Olivier Goffart
2018-01-17Partially revert "shell_integration/dolphin: Silence some warnings"Olivier Goffart
This partially reverts commit 1c721e9422069744dcc3447219487bf2695a81b6. This caused the overlay plugin to be installed at the wrong place because the kcoreaddons_add_plugin macto still use deprecated ${PLUGIN_INSTALL_DIR}. I guess we'll have to live with the warnings.
2018-01-13Fix .def and .rc files not being compiled into windows shell extensionsDominik Schmidt
2018-01-13Install all dlls to BINDIR so craft does not ignore themDominik Schmidt
2018-01-13Use new ECMAddAppIcon macro for application icons.Dominik Schmidt
cmake/modules/ECMAddAppIcon.cmake is heavily patched to support sidebar icons, OUTFILE_BASE parameter and to not include 64 and 64@2x icons on macOS which are not supported. All changes are made in a way that we can upstream this.