Nextcloud Desktop client
Go to file
Camila Ayres 2e30e19bff style(file-provider): improve text displayed when user resets virtual files setup.
Shorten it, removed unecessary information.

Signed-off-by: Camila Ayres <hello@camilasan.com>
2025-10-22 18:23:42 +02:00
.github chore(ci): use Xcode 16.3 2025-10-20 09:45:45 +02:00
.tx fix(l10n): Don't sync xcstrings for now 2025-08-04 16:16:24 +02:00
admin feat(file-provider): Integrated localizations from Transifex. 2025-10-07 14:28:44 +02:00
cmake fix(test/csync): make sure the test executable can be found to be run 2025-10-06 16:46:18 +02:00
doc/images
LICENSES fix(reuse): remove no longer needed BSD-2 license 2025-10-06 16:46:18 +02:00
nextcloud.client-desktop fix(l10n): Update translations from Transifex 2025-08-26 02:54:26 +00:00
shell_integration fix(file-provider): Updated dependencies. 2025-10-20 10:59:00 +02:00
src style(file-provider): improve text displayed when user resets virtual files setup. 2025-10-22 18:23:42 +02:00
systemd
test fix(quota): parse quota values from servers as double 2025-10-16 09:13:03 +02:00
theme fix: ignore windows for highligted menuitem styling 2025-10-20 13:38:47 +02:00
translations fix(l10n): Update translations from Transifex 2025-10-22 02:37:54 +00:00
.clang-format
.drone.yml
.git-blame-ignore-revs
.git-blame-ignore-revs.license
.gitattributes
.gitignore fix: Added some macOS-specific items to .gitignore 2025-10-07 12:49:53 +02:00
.swift-format.json
.swift-format.json.license
.tag
.tag.license
AGENTS.md Update AGENTS.md 2025-06-30 11:15:36 +02:00
AUTHORS.md
ChangeLog - Legacy.md
CHANGELOG.md
CMakeLists.txt fix: Update upstream URL for Extra CMake Modules 2025-10-06 16:46:18 +02:00
codecov.yml
config.h.in feat: Adding an option to disable username prefill on Windows 2025-09-30 17:02:21 +02:00
config.h.in.license
CONTRIBUTING.md chore: update transifex link 2025-09-11 09:02:29 +02:00
COPYING
COPYING.documentation
CPackOptions.cmake.in
craftmaster.ini feat(craft): straight go to Qt 6.9.2 for compatibility with newer macOS 2025-09-25 09:49:53 +02:00
mirall.desktop.in
mirall.desktop.in.license
NEXTCLOUD.cmake feat: Adding an option to disable username prefill on Windows 2025-09-30 17:02:21 +02:00
NextcloudCPack.cmake
README.md feat: Nextcloud Developer Build from Integration Project 2025-10-06 18:31:50 +02:00
resources.qrc chore: remove unused NCToolTip 2025-10-15 10:46:29 +02:00
resources.qrc.license
REUSE.toml feat(file-provider): Integrated localizations from Transifex. 2025-10-07 14:28:44 +02:00
sonar-project.properties
sonar-project.properties.license
sync-exclude.lst
sync-exclude.lst.license
theme.qrc.in Add new themed icons for various statuses 2025-09-25 11:10:24 +02:00
theme.qrc.in.license
VERSION.cmake fix: Update minimum supported Nextcloud server version to 20 2025-10-21 16:38:44 +07:00
version.h.in

Nextcloud Desktop Client

REUSE status

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

Desktop Client on Windows

🚀 Releases

For the latest stable recommended version, please refer to the download page https://nextcloud.com/install/#install-clients

Contributing to the desktop client

✌️ Please read the Code of Conduct. This document offers some guidance to ensure Nextcloud participants can cooperate effectively in a positive and inspiring atmosphere and to explain how together we can strengthen and support each other.

👪 Join the team

There are many ways to contribute, of which development is only one! Find out how to get involved, including as a translator, designer, tester, helping others, and much more! 😍

Help testing

Download and install the client:
🔽 All releases
🔽 Daily master builds

Reporting issues

If you find any bugs or have any suggestion for improvement, please open an issue in this repository.

Bug fixing and development

Tip

For building the client on macOS we have a tool called mac-crafter. You will find more information about it in its dedicated README. Also, please note the README in the NextcloudIntegration project which provides an even more convenient way to work on and build the desktop client on macOS by using Xcode.

1. 🚀 Set up your local development environment

Note

Find the system requirements and instructions on how to work on Windows with KDE Craft on our desktop client blueprints repository.

1.1 System requirements

1.2 Optional

Tip

We highly recommend Nextcloud development environment on Docker Compose for testing/bug fixing/development.
▶️ https://juliusknorr.github.io/nextcloud-docker-dev/

1.3 Step by step instructions on how to build the client to contribute

  1. Clone the Github repository:
git clone https://github.com/nextcloud/desktop.git
  1. Create :
mkdir <build directory>
  1. Compile:
cd <build directory>
cmake -S <cloned desktop repo> -B build -DCMAKE_PREFIX_PATH=<dependencies> -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=. -DNEXTCLOUD_DEV=ON

Tip

The cmake variable NEXTCLOUD_DEV allows you to run your own build of the client while developing in parallel with an installed version of the client.

  1. Build it:
  • Windows:
cmake --build .
  • Other platforms:
make
  1. 🐛 Pick a good first issue
  2. 👩‍🔧 Create a branch and make your changes. Remember to sign off your commits using git commit -sm "Your commit message"
  3. ⬆ Create a pull request and @mention the people from the issue to review
  4. 👍 Fix things that come up during a review
  5. 🎉 Wait for it to get merged!

Get in touch 💬

You can also get support for Nextcloud!

📜 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.