Nextcloud Desktop client
Go to file
Claudio Cambra d312d009f7 Pull out error handling from completionHandler for nckit lockunlock
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
2024-09-12 09:50:50 +02:00
.github ci: Update workflows 2024-09-10 10:54:21 +02:00
.tx
admin Move building into separate subcommand, add subcommand just for codesigning 2024-09-12 03:54:01 +08:00
cmake Change minimun mac OS version to 10.13. 2024-03-11 15:20:51 +01:00
doc docs: conf file option moveToTrash is no longer Linux specific 2024-08-28 11:38:02 +02:00
man
nextcloud.client-desktop Fix(l10n): Update translations from Transifex 2024-06-02 02:37:38 +00:00
shell_integration Pull out error handling from completionHandler for nckit lockunlock 2024-09-12 09:50:50 +02:00
src improve some log that are produced during discovery 2024-09-12 09:50:27 +02:00
test add automated tests for complex move scenario 2024-09-12 09:50:27 +02:00
theme remove broken system paellete detection within our custom style 2024-09-06 10:42:08 +02:00
translations Fix(l10n): Update translations from Transifex 2024-09-12 02:44:51 +00:00
.clang-format
.drone.yml remove usage of memory sanitizers in drone tests 2024-05-15 15:06:11 +02:00
.git-blame-ignore-revs
.gitattributes
.gitignore
.gitmodules
.swift-format.json Add .swift-format.json 2024-02-06 11:45:44 +01:00
.tag
ChangeLog - Legacy
CHANGELOG.md Fix residual typos found by codespell 2023-09-16 20:36:56 +02:00
CMakeLists.txt properly detect and enable Qt6 WebEngine integration 2024-08-28 11:35:04 +02:00
codecov.yml
config.h.in properly detect and enable Qt6 WebEngine integration 2024-08-28 11:35:04 +02:00
CONTRIBUTING.md
COPYING
COPYING.documentation
CPackOptions.cmake.in
craftmaster.ini simplify macOS targets and try arm64 craft target 2024-05-15 15:06:10 +02:00
mirall.desktop.in Add compatibility with the new libcloudproviders integration 2023-09-07 13:07:49 +08:00
NEXTCLOUD.cmake Add cmake NEXTCLOUD_DEV so debug client can run in parallel to release client. 2024-04-11 15:42:54 +02:00
NextcloudCPack.cmake
README.md
resources.qrc NCRadioButton => RadioButton. 2024-09-06 10:42:08 +02:00
sonar-project.properties
sync-exclude.lst do not ignore paths containing 2 "#" characters 2024-09-09 11:03:57 +02:00
theme.qrc.in Display the Nextcloud assistant icon in the main window. 2024-06-25 15:34:49 +02:00
VERSION.cmake master is now the next feature release (i.e. v3.15.0) 2024-08-23 11:19:08 +02:00
version.h.in properly compute if a folder is top level or child extern mounted 2024-03-27 14:29:01 +01:00

Nextcloud Desktop Client

The 💻 Nextcloud Desktop Client is a tool to synchronize files from Nextcloud Server with your computer.

📥 Download Binaries

https://github.com/nextcloud-releases/desktop/releases

Desktop Client on Windows

💙 🎉 Contributing

🛠️ How to compile the desktop client

🏗️ System requirements includes OpenSSL 1.1.x, QtKeychain, Qt 5.x.x and zlib.

📝 Step by step instructions

Clone the repo
$ git clone https://github.com/nextcloud/desktop.git
$ cd desktop
Compile and install

⚠️ For development reasons it is better to install the client on user space instead on the global system. Mixing up libs/dll's of different version can lead to undefined behavior and crashes:

  • You could use the cmake flag CMAKE_INSTALL_PREFIX as ~/.local/ in a Linux system. If you want to install system wide you could use /usr/local or /opt/nextcloud/.

  • On Windows 10 $USERPROFILE refers to C:\Users\<USERNAME>.

Linux & Mac OS
$ cmake -S . -B build -DCMAKE_INSTALL_PREFIX=~/nextcloud-desktop-client -DCMAKE_BUILD_TYPE=Debug
$ cmake --build build --target install
Windows
$ cmake -S . -B build -G "Visual Studio 15 2017 Win64" -DCMAKE_INSTALL_PREFIX=$USERPROFILE\nextcloud-desktop-client -DCMAKE_BUILD_TYPE=Debug
$ cmake --build . --config Debug --target install

More detailed instructions can be found at the Desktop Client Wiki.

📥 Where to find binaries to download

🔆 Daily builds

🚀 Releases

💣 Reporting issues

  • If you find any bugs or have any suggestion for improvement, please file an issue at https://github.com/nextcloud/desktop/issues. Do not contact the authors directly by mail, as this increases the chance of your report being lost. 💥

😃 🏆 Pull requests

📡 Contact us

If you want to contact us, e.g. before starting a more complex feature, for questions you can join us at #nextcloud-client.

✌️ Code of conduct

The Nextcloud community has core values that are shared between all members during conferences, hackweeks and on all interactions in online platforms including Github and Forums. If you contribute, participate or interact with this community, please respect our shared values. 😌

📝 Source code

The Nextcloud Desktop Client is developed in Git. Since Git makes it easy to fork and improve the source code and to adapt it to your need, many copies can be found on the Internet, in particular on GitHub. However, the authoritative repository maintained by the developers is located at https://github.com/nextcloud/desktop.

📜 License

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.