Nextcloud Desktop client
Go to file
Matthieu Gallien 5c68160f10
prepare 3.15.1 release
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2024-12-12 15:51:02 +01:00
.github use CI images including Qt6.7 that is now required 2024-11-22 11:14:38 +01:00
.tx no longer substitute de_DE to de locale when fetching from transifex 2023-03-14 10:14:42 +01:00
admin Close isExecutable command outpipe file handle after use 2024-12-10 08:26:34 +00:00
cmake Update copyright year in macOS info.plist template 2024-11-05 16:18:16 +09:00
doc prepare 3.15.1 release 2024-12-12 15:51:02 +01: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 2024-10-05 02:45:57 +00:00
shell_integration optionally install PDB files when building them 2024-12-12 09:46:54 +00:00
src All conditions must be true to use virtual files in the selected location. 2024-12-12 13:27:48 +00:00
test Update tests for folder check to match fix. 2024-12-12 13:27:48 +00:00
theme Unify definition of unified seach placeholder views fonts 2024-11-21 10:13:00 +01:00
translations Fix(l10n): Update translations from Transifex 2024-12-12 02:58:07 +00:00
.clang-format pick up clang-format conf files from KDE community 2022-10-04 18:31:50 +02:00
.drone.yml use CI images including Qt6.7 that is now required 2024-11-22 11:14:38 +01:00
.git-blame-ignore-revs Reformatting: Add .git-blame-ignore-revs 2017-05-17 12:31:49 +02:00
.gitattributes
.gitignore Add file provider init code 2023-05-12 13:21:06 +08: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
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 Move option APPLICATION_DISPLAY_LEGACY_IMPORT_DIALOG to CMakeLists.txt. 2024-12-09 18:36:27 +01: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 bool theme option to display legacy import dialog. 2024-12-09 18:36:27 +01:00
CONTRIBUTING.md Reference coding style wiki page from CONTRIBIUTING.md 2021-01-14 18:47:52 +01:00
COPYING
COPYING.documentation
CPackOptions.cmake.in Remove conditional logic for OEM.cmake 2021-06-14 10:14:28 +00:00
craftmaster.ini Pin Craft Qt version to 6.7.2 and binary cache version to 24.08 2024-10-18 18:50:52 +02:00
mirall.desktop.in Mark as single window app 2024-09-15 13:47:56 +02:00
NEXTCLOUD.cmake Move option APPLICATION_DISPLAY_LEGACY_IMPORT_DIALOG to CMakeLists.txt. 2024-12-09 18:36:27 +01:00
NextcloudCPack.cmake Remove conditional logic for OEM.cmake 2021-06-14 10:14:28 +00:00
README.md Fix permanent link to mac-crafter README. 2024-10-08 14:38:03 +02:00
resources.qrc Add a UnifiedSearchPlaceholderView 2024-11-21 10:13:00 +01: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 new icon for more apps menu. 2024-09-13 12:30:08 +02:00
VERSION.cmake prepare 3.15.1 release 2024-12-12 15:51:02 +01:00
version.h.in improve definition of MIRALL_VERSION_SUFFIX and MIRALL_VERSION_BUILD 2024-12-11 11:43:42 +00: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://juliushaertl.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.