💻 Desktop sync client for Nextcloud
Перейти к файлу
Matthieu Gallien 634a153020 convert double numbers to int because we expect them to be real ints
we give them to APIs expecting int

we compare them to int values

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2024-08-15 16:55:04 -04:00
.github Bump platisd/clang-tidy-pr-comments from 1.4.3 to 1.5.0 2024-08-07 12:17:30 +02:00
.tx
admin Add mac-crafter Package.resolved to gitignore 2024-08-06 11:05:16 +02:00
cmake Change minimun mac OS version to 10.13. 2024-03-11 15:20:51 +01:00
doc fix doc configuration file 2024-06-10 14:30:34 +02:00
man
nextcloud.client-desktop Fix(l10n): Update translations from Transifex 2024-06-02 02:37:38 +00:00
shell_integration Remove ncAccount usages removed in NCFPK API 2024-07-29 16:52:37 +08:00
src convert double numbers to int because we expect them to be real ints 2024-08-15 16:55:04 -04:00
test Unit tests. Test .lnk file with a real shortcut file. Test will hang if QFileInfo is used on .lnk files. 2024-07-10 10:29:35 +02:00
theme change color used for background to match system window default color 2024-08-12 16:53:33 +02:00
translations Fix(l10n): Update translations from Transifex 2024-08-15 02:58:21 +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.md Fix residual typos found by codespell 2023-09-16 20:36:56 +02:00
CMakeLists.txt streamline find_package calls to really find Qt6 2024-04-26 09:05:12 +02:00
CONTRIBUTING.md
COPYING
COPYING.documentation
CPackOptions.cmake.in
ChangeLog - Legacy
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
VERSION.cmake Change the default MIRALL_VERSION_SUFFIX from "git" to "daily". 2024-07-03 16:32:10 +02:00
codecov.yml
config.h.in improve logs when build with NEXTCLOUD_DEV enabled 2024-05-02 16:34:51 +02:00
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
resources.qrc Add starter FileProviderFastEnumerationSettings QML component 2024-03-06 18:46:41 +08:00
sonar-project.properties
sync-exclude.lst Add typical Syncthing files to default exclusion 2024-04-10 14:34:45 +08:00
theme.qrc.in Display the Nextcloud assistant icon in the main window. 2024-06-25 15:34:49 +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

README.md

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.