Nextcloud Desktop client
Go to file
Jyrki Gadinger 930e6e637c chore: prepare for release 3.16.4
Signed-off-by: Jyrki Gadinger <nilsding@nilsding.org>
2025-06-02 16:54:22 +02:00
.github ci: temporarily use custom craftmaster fork 2025-04-23 12:52:33 +00:00
.tx no longer substitute de_DE to de locale when fetching from transifex 2023-03-14 10:14:42 +01:00
admin feat(mac-crafter): retry code-signing attempts 2025-05-30 09:54:41 +02:00
cmake fix(mac): bump deployment target to 12.0 2025-04-04 11:48:44 +00:00
doc Changed critical free space to 512MB and free space to 1GB in code and documentation 2025-02-27 03:49:02 +00:00
man Incorporate doc fixes from pull request #6122 2024-10-18 13:33:59 +08:00
nextcloud.client-desktop fix(l10n): Update translations from Transifex 2025-05-28 02:59:53 +00:00
shell_integration feat(windows): use cmake to configure windows integration DLL version 2025-05-30 10:47:51 +02:00
src fix(lockfilejobs): ensure using correct file path 2025-06-02 14:49:17 +00:00
test fix(lockfilejobs): ensure using correct file path 2025-06-02 14:49:17 +00:00
theme dialogfix 2025-02-11 11:14:26 +01:00
translations fix(l10n): Update translations from Transifex 2025-06-01 02:57:40 +00:00
.clang-format pick up clang-format conf files from KDE community 2022-10-04 18:31:50 +02:00
.drone.yml remove gcc and clang build checks 2025-03-14 11:35:56 +01:00
.git-blame-ignore-revs Reformatting: Add .git-blame-ignore-revs 2017-05-17 12:31:49 +02:00
.gitattributes git: fix entry in .gitattributes to not export binary dir. 2014-09-22 11:24:24 +02:00
.gitignore gitignore: add .cache and *.AppImage 2025-01-24 09:08:02 +01:00
.gitmodules old submodule url does not work anylonger 2022-03-18 12:44:21 +00:00
.swift-format.json Add .swift-format.json 2024-02-06 11:45:44 +01:00
.tag Export repo revision indicator 2012-10-12 14:44:21 +02:00
AUTHORS.md docs: Add authors file 2024-12-17 18:19:05 +01:00
ChangeLog - Legacy Add CHANGELOG.md. 2022-08-22 20:36:25 +02:00
CHANGELOG.md Fix residual typos found by codespell 2023-09-16 20:36:56 +02:00
CMakeLists.txt fix(mac): bump deployment target to 12.0 2025-04-04 11:48:44 +00:00
codecov.yml Fail build when Windows tests fail. Use GH Actions to build and run Windows tests. Create coverage and uppload it to codecov.io. 2022-06-10 15:18:54 +03:00
config.h.in Add option to disable virtual files syncing on Windows. 2025-03-13 12:15:46 +01:00
CONTRIBUTING.md Reference coding style wiki page from CONTRIBIUTING.md 2021-01-14 18:47:52 +01:00
COPYING Correct COPYING file from FSF website, rpmlint found an old address 2011-11-22 22:45:14 +01:00
COPYING.documentation Add doc cmake targets (HTML, PDF, QtHelp, CHM, man) 2012-11-25 00:38:47 +01:00
CPackOptions.cmake.in Remove conditional logic for OEM.cmake 2021-06-14 10:14:28 +00:00
craftmaster.ini ci: pin craft revision to a specific commit 2025-04-23 12:52:34 +00:00
mirall.desktop.in Mark as single window app 2024-09-15 13:47:56 +02:00
NEXTCLOUD.cmake Add option to disable virtual files syncing on Windows. 2025-03-13 12:15:46 +01:00
NextcloudCPack.cmake Remove conditional logic for OEM.cmake 2021-06-14 10:14:28 +00:00
README.md url update in readme 2025-01-02 11:34:24 +01:00
resources.qrc use TextArea instead of TextEdit for share note field 2025-02-14 13:23:14 +00:00
sonar-project.properties let sonarcloud takes automated tests into account and report coverage 2021-10-20 08:09:23 +00:00
sync-exclude.lst do not ignore paths containing 2 "#" characters 2024-09-09 11:03:57 +02:00
theme.qrc.in Add button to scroll to top when activity list is long. 2025-02-10 17:22:04 +01:00
VERSION.cmake chore: prepare for release 3.16.4 2025-06-02 16:54:22 +02:00
version.h.in provide consistent version info including human readable version 2025-02-19 16:48:45 +01:00

Nextcloud Desktop Client

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

1. 🚀 Set up your local development environment

1.1 System requirements

  • Windows 10, Windows 11, Mac OS > 10.14 or Linux

Note

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

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_INSTALL_PREFIX=<dependencies> -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=. -DNEXTCLOUD_DEV=ON

Tip

The cmake variabel 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

Tip

For building the client for mac OS we have a tool called mac-crafter. You will find instructions on how to use it at admin/osx/mac-crafter.

  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.