├── linux ├── debian │ ├── qtkeychain │ │ ├── debian │ │ │ ├── compat │ │ │ ├── source │ │ │ │ └── format │ │ │ ├── libqtkeychain1.install │ │ │ ├── qtkeychain-dev.install │ │ │ ├── copyright │ │ │ ├── changelog │ │ │ ├── rules │ │ │ └── control │ │ ├── debian.stable │ │ │ └── changelog │ │ ├── debian.trusty │ │ │ └── changelog │ │ └── debian.xenial │ │ │ └── changelog │ ├── nextcloud-client │ │ ├── debian │ │ │ ├── compat │ │ │ ├── source │ │ │ │ ├── format │ │ │ │ └── lintian-overrides │ │ │ ├── nextcloud-client-caja.install │ │ │ ├── nextcloud-client-nemo.install │ │ │ ├── nextcloud-client-l10n.install │ │ │ ├── 101-sync-inotify.conf │ │ │ ├── nextcloud-client-dolphin.triggers │ │ │ ├── nextcloud-client-nautilus.install │ │ │ ├── libnextcloudsync0.install │ │ │ ├── libnextcloudsync-dev.install │ │ │ ├── patches │ │ │ │ ├── series │ │ │ │ ├── set-kde-use-qt-sys-path.patch │ │ │ │ ├── fix-syncstate-appname.patch │ │ │ │ └── fix-application-icon-name.patch │ │ │ ├── copyright │ │ │ ├── nextcloud-client.install │ │ │ ├── nextcloud-client-dolphin.lintian-overrides │ │ │ ├── nextcloud-client.lintian-overrides │ │ │ ├── nextcloud-client-dolphin.install │ │ │ ├── rules │ │ │ ├── changelog │ │ │ └── control │ │ ├── debian.zesty │ │ │ └── changelog │ │ ├── debian.artful │ │ │ └── changelog │ │ ├── debian.bionic │ │ │ └── changelog │ │ ├── debian.stable │ │ │ ├── changelog │ │ │ └── control │ │ ├── debian.trusty │ │ │ ├── changelog │ │ │ └── control │ │ └── debian.yakkety │ │ │ └── changelog │ ├── oscrc.enc │ ├── ssh-key.txt.enc │ ├── signing-key.txt.enc │ ├── misc │ │ └── pbuilder │ │ │ └── hook.d │ │ │ └── D70setupdeps │ ├── scripts │ │ ├── git2changelog.cfg │ │ ├── pbuild_all.sh │ │ ├── build.sh │ │ ├── build_all.sh │ │ ├── pbuilder_all.sh │ │ ├── config.sh │ │ ├── addchange.sh │ │ ├── create_debdir.sh │ │ └── git2changelog.py │ ├── README │ └── travis-build.sh ├── .gitignore ├── travis_snapcraft.cfg ├── AppImage │ ├── Dockerfile │ └── build-appimage.sh ├── snap │ └── snapcraft.yaml ├── travis-build.sh └── appimage-build.sh ├── .gitmodules ├── nextcloudtheme ├── win │ ├── welcome.bmp │ ├── installer.ico │ ├── page_header.bmp │ └── page_header.svg ├── osx │ ├── installer-background.png │ ├── installer-background_2x.png │ └── installer-background.svg ├── theme │ ├── black │ │ ├── state-ok-128.png │ │ ├── state-ok-16.png │ │ ├── state-ok-256.png │ │ ├── state-ok-32.png │ │ ├── state-ok-64.png │ │ ├── state-sync-16.png │ │ ├── state-sync-32.png │ │ ├── state-sync-64.png │ │ ├── state-error-128.png │ │ ├── state-error-16.png │ │ ├── state-error-256.png │ │ ├── state-error-32.png │ │ ├── state-error-64.png │ │ ├── state-pause-128.png │ │ ├── state-pause-16.png │ │ ├── state-pause-256.png │ │ ├── state-pause-32.png │ │ ├── state-pause-64.png │ │ ├── state-sync-128.png │ │ ├── state-sync-256.png │ │ ├── state-offline-128.png │ │ ├── state-offline-16.png │ │ ├── state-offline-256.png │ │ ├── state-offline-32.png │ │ ├── state-offline-64.png │ │ ├── state-warning-128.png │ │ ├── state-warning-16.png │ │ ├── state-warning-256.png │ │ ├── state-warning-32.png │ │ ├── state-warning-64.png │ │ ├── state-information-32.png │ │ ├── state-information-64.png │ │ ├── state-information-128.png │ │ ├── state-information-256.png │ │ ├── state-offline-themed-16.png │ │ ├── state-offline-themed-32.png │ │ ├── state-offline-themed-64.png │ │ ├── state-offline-themed-128.png │ │ ├── state-offline-themed-256.png │ │ ├── state-ok.svg │ │ ├── state-pause.svg │ │ ├── state-warning.svg │ │ ├── state-error.svg │ │ ├── state-offline-themed.svg │ │ ├── state-sync.svg │ │ └── state-offline.svg │ ├── colored │ │ ├── state-ok-16.png │ │ ├── state-ok-32.png │ │ ├── state-ok-64.png │ │ ├── wizard_logo.png │ │ ├── state-ok-128.png │ │ ├── state-ok-256.png │ │ ├── state-sync-16.png │ │ ├── state-sync-32.png │ │ ├── state-sync-64.png │ │ ├── state-error-128.png │ │ ├── state-error-16.png │ │ ├── state-error-256.png │ │ ├── state-error-32.png │ │ ├── state-error-64.png │ │ ├── state-offline-16.png │ │ ├── state-offline-32.png │ │ ├── state-offline-64.png │ │ ├── state-pause-128.png │ │ ├── state-pause-16.png │ │ ├── state-pause-256.png │ │ ├── state-pause-32.png │ │ ├── state-pause-64.png │ │ ├── state-sync-128.png │ │ ├── state-sync-256.png │ │ ├── state-warning-16.png │ │ ├── state-warning-32.png │ │ ├── state-warning-64.png │ │ ├── wizard_logo@2x.png │ │ ├── Nextcloud-icon-128.png │ │ ├── Nextcloud-icon-16.png │ │ ├── Nextcloud-icon-22.png │ │ ├── Nextcloud-icon-256.png │ │ ├── Nextcloud-icon-32.png │ │ ├── Nextcloud-icon-48.png │ │ ├── Nextcloud-icon-512.png │ │ ├── Nextcloud-icon-64.png │ │ ├── state-offline-128.png │ │ ├── state-offline-256.png │ │ ├── state-warning-128.png │ │ ├── state-warning-256.png │ │ ├── state-information-128.png │ │ ├── state-information-256.png │ │ ├── state-information-32.png │ │ ├── state-information-64.png │ │ ├── state-offline-themed-16.png │ │ ├── state-offline-themed-32.png │ │ ├── state-offline-themed-64.png │ │ ├── state-offline-themed-128.png │ │ ├── state-offline-themed-256.png │ │ ├── state-ok.svg │ │ ├── state-offline-themed.svg │ │ ├── state-warning.svg │ │ ├── state-pause.svg │ │ ├── state-error.svg │ │ ├── state-sync.svg │ │ ├── state-offline.svg │ │ └── wizard_logo.svg │ └── white │ │ ├── state-ok-128.png │ │ ├── state-ok-16.png │ │ ├── state-ok-256.png │ │ ├── state-ok-32.png │ │ ├── state-ok-64.png │ │ ├── state-sync-16.png │ │ ├── state-sync-32.png │ │ ├── state-sync-64.png │ │ ├── state-error-128.png │ │ ├── state-error-16.png │ │ ├── state-error-256.png │ │ ├── state-error-32.png │ │ ├── state-error-64.png │ │ ├── state-pause-128.png │ │ ├── state-pause-16.png │ │ ├── state-pause-256.png │ │ ├── state-pause-32.png │ │ ├── state-pause-64.png │ │ ├── state-sync-128.png │ │ ├── state-sync-256.png │ │ ├── state-offline-128.png │ │ ├── state-offline-16.png │ │ ├── state-offline-256.png │ │ ├── state-offline-32.png │ │ ├── state-offline-64.png │ │ ├── state-warning-128.png │ │ ├── state-warning-16.png │ │ ├── state-warning-256.png │ │ ├── state-warning-32.png │ │ ├── state-warning-64.png │ │ ├── state-information-32.png │ │ ├── state-information-64.png │ │ ├── state-information-128.png │ │ ├── state-information-256.png │ │ ├── state-offline-themed-16.png │ │ ├── state-offline-themed-32.png │ │ ├── state-offline-themed-64.png │ │ ├── state-offline-themed-128.png │ │ ├── state-offline-themed-256.png │ │ ├── state-ok.svg │ │ ├── state-pause.svg │ │ ├── state-warning.svg │ │ ├── state-error.svg │ │ ├── state-offline-themed.svg │ │ ├── state-sync.svg │ │ └── state-offline.svg ├── OEM.cmake ├── nextcloudtheme.h ├── theme.qrc └── states.svg ├── issue_template.md ├── win ├── build.sh ├── travis-build.sh └── opensuse-mingw-repo-location.patch ├── .travis.yml ├── osx ├── build.sh └── dsa_pub.pem ├── README.md └── LICENSE /linux/debian/qtkeychain/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/debian/qtkeychain/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | *.snap 2 | parts 3 | prime 4 | stage 5 | snap/.snapcraft 6 | -------------------------------------------------------------------------------- /linux/debian/qtkeychain/debian/libqtkeychain1.install: -------------------------------------------------------------------------------- 1 | usr/lib/*/libqtkeychain.so.?* 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/nextcloud-client-caja.install: -------------------------------------------------------------------------------- 1 | usr/share/caja-python 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/nextcloud-client-nemo.install: -------------------------------------------------------------------------------- 1 | usr/share/nemo-python 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/nextcloud-client-l10n.install: -------------------------------------------------------------------------------- 1 | usr/share/nextcloud/i18n 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/101-sync-inotify.conf: -------------------------------------------------------------------------------- 1 | fs.inotify.max_user_watches = 524288 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/nextcloud-client-dolphin.triggers: -------------------------------------------------------------------------------- 1 | activate-noawait ldconfig 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/nextcloud-client-nautilus.install: -------------------------------------------------------------------------------- 1 | usr/share/nautilus-python 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "client"] 2 | path = client 3 | url = https://github.com/owncloud/client.git 4 | -------------------------------------------------------------------------------- /linux/debian/oscrc.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/linux/debian/oscrc.enc -------------------------------------------------------------------------------- /linux/travis_snapcraft.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/linux/travis_snapcraft.cfg -------------------------------------------------------------------------------- /linux/debian/ssh-key.txt.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/linux/debian/ssh-key.txt.enc -------------------------------------------------------------------------------- /linux/debian/qtkeychain/debian/qtkeychain-dev.install: -------------------------------------------------------------------------------- 1 | usr/include 2 | usr/lib/*/cmake 3 | usr/lib/*/libqtkeychain.so 4 | -------------------------------------------------------------------------------- /nextcloudtheme/win/welcome.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/win/welcome.bmp -------------------------------------------------------------------------------- /linux/debian/signing-key.txt.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/linux/debian/signing-key.txt.enc -------------------------------------------------------------------------------- /nextcloudtheme/win/installer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/win/installer.ico -------------------------------------------------------------------------------- /nextcloudtheme/win/page_header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/win/page_header.bmp -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/libnextcloudsync0.install: -------------------------------------------------------------------------------- 1 | etc 2 | usr/lib/*/libnextcloudsync.so.?* 3 | usr/lib/*/nextcloud/libocsync.so.?* 4 | -------------------------------------------------------------------------------- /linux/debian/qtkeychain/debian/copyright: -------------------------------------------------------------------------------- 1 | Files: * 2 | Copyright: 2011-2015 Frank Osterfeld 3 | License: BSD-2-clause 4 | -------------------------------------------------------------------------------- /nextcloudtheme/osx/installer-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/osx/installer-background.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-ok-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-ok-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-ok-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-ok-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-ok-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-ok-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-ok-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-ok-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-ok-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-ok-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-sync-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-sync-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-sync-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-ok-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-ok-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-ok-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-ok-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-ok-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-ok-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/wizard_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/wizard_logo.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-ok-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-ok-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-ok-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-ok-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-ok-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-sync-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-sync-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-sync-64.png -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/libnextcloudsync-dev.install: -------------------------------------------------------------------------------- 1 | usr/include 2 | usr/lib/*/libnextcloudsync.so 3 | usr/lib/*/nextcloud/libocsync.so 4 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/patches/series: -------------------------------------------------------------------------------- 1 | fix-application-icon-name.patch 2 | fix-syncstate-appname.patch 3 | set-kde-use-qt-sys-path.patch 4 | -------------------------------------------------------------------------------- /nextcloudtheme/osx/installer-background_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/osx/installer-background_2x.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-error-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-error-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-error-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-error-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-error-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-pause-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-pause-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-pause-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-pause-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-pause-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-sync-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-sync-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-ok-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-ok-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-ok-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-ok-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-sync-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-sync-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-sync-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-error-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-error-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-error-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-error-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-error-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-pause-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-pause-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-pause-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-pause-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-pause-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-sync-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-sync-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-offline-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-offline-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-offline-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-offline-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-offline-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-warning-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-warning-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-warning-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-warning-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-warning-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-error-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-error-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-error-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-error-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-error-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-offline-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-offline-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-offline-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-pause-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-pause-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-pause-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-pause-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-pause-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-sync-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-sync-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-warning-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-warning-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-warning-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/wizard_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/wizard_logo@2x.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-offline-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-offline-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-offline-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-offline-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-offline-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-warning-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-warning-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-warning-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-warning-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-warning-64.png -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/copyright: -------------------------------------------------------------------------------- 1 | Files: * 2 | Copyright: 2012-2015 ownCloud, inc.; Nuernberg, Germany., 2016 Nextcloud GmbH 3 | License: GPL-2+ 4 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-information-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-information-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-information-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-information-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/Nextcloud-icon-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/Nextcloud-icon-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/Nextcloud-icon-22.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/Nextcloud-icon-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/Nextcloud-icon-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/Nextcloud-icon-48.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/Nextcloud-icon-512.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/Nextcloud-icon-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-offline-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-offline-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-warning-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-warning-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-information-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-information-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-information-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-information-64.png -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/nextcloud-client.install: -------------------------------------------------------------------------------- 1 | usr/bin 2 | usr/share/applications 3 | usr/share/icons 4 | debian/101-sync-inotify.conf etc/sysctl.d 5 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-information-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-information-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-information-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-information-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-themed-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-offline-themed-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-themed-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-offline-themed-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-themed-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-offline-themed-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-information-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-information-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-information-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-information-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-information-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-information-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-information-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-information-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-information-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-information-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-information-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-information-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-themed-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-offline-themed-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-themed-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-offline-themed-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-themed-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-offline-themed-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-themed-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-offline-themed-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-themed-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/black/state-offline-themed-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-themed-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-offline-themed-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-themed-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-offline-themed-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-themed-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-offline-themed-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-themed-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-offline-themed-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-themed-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/white/state-offline-themed-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-themed-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-offline-themed-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-themed-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/client_theming/HEAD/nextcloudtheme/theme/colored/state-offline-themed-256.png -------------------------------------------------------------------------------- /linux/debian/misc/pbuilder/hook.d/D70setupdeps: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cat /etc/apt/sources.list 4 | (cd ${HOME}/pbuilder/deps; apt-ftparchive packages . > Packages) 5 | apt-get update 6 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/nextcloud-client-dolphin.lintian-overrides: -------------------------------------------------------------------------------- 1 | nextcloud-client-dolphin: package-name-doesnt-match-sonames 2 | nextcloud-client-dolphin: shlib-without-versioned-soname 3 | -------------------------------------------------------------------------------- /linux/debian/qtkeychain/debian.stable/changelog: -------------------------------------------------------------------------------- 1 | qtkeychain (0.7.0-1.0) stable; urgency=medium 2 | 3 | * Initial release. 4 | 5 | -- István Váradi Fri, 23 Dec 2016 16:28:38 +0100 6 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/nextcloud-client.lintian-overrides: -------------------------------------------------------------------------------- 1 | nextcloud-client: binary-or-shlib-defines-rpath 2 | nextcloud-client: binary-without-manpage 3 | nextcloud-client: license-problem-convert-utf-code 4 | -------------------------------------------------------------------------------- /linux/debian/qtkeychain/debian/changelog: -------------------------------------------------------------------------------- 1 | qtkeychain (0.7.0-1.0ppa1~yakkety1) yakkety; urgency=medium 2 | 3 | * Initial release. 4 | 5 | -- István Váradi Fri, 23 Dec 2016 16:28:38 +0100 6 | -------------------------------------------------------------------------------- /linux/debian/qtkeychain/debian.trusty/changelog: -------------------------------------------------------------------------------- 1 | qtkeychain (0.7.0-1.0ppa1~trusty1) trusty; urgency=medium 2 | 3 | * Initial release. 4 | 5 | -- István Váradi Fri, 23 Dec 2016 16:28:38 +0100 6 | -------------------------------------------------------------------------------- /linux/debian/qtkeychain/debian.xenial/changelog: -------------------------------------------------------------------------------- 1 | qtkeychain (0.7.0-1.0ppa1~xenial1) xenial; urgency=medium 2 | 3 | * Initial release. 4 | 5 | -- István Váradi Fri, 23 Dec 2016 16:28:38 +0100 6 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/nextcloud-client-dolphin.install: -------------------------------------------------------------------------------- 1 | usr/lib/*/libnextclouddolphinpluginhelper.so 2 | usr/lib/*/qt5/plugins/kf5/overlayicon/nextclouddolphinoverlayplugin.so 3 | usr/lib/*/qt5/plugins/nextclouddolphinactionplugin.so 4 | usr/share/kservices5/nextclouddolphinactionplugin.desktop 5 | -------------------------------------------------------------------------------- /linux/debian/scripts/git2changelog.cfg: -------------------------------------------------------------------------------- 1 | # Use the configuration below with appropriate changes, 2 | # if you want to support a new client version using 3 | # your own fork. In such a case the tags do not come 4 | # accross to the main repo for a pull request, so 5 | # some hacking is needed 6 | [versionhack] 7 | #commit = 30986d6 8 | #tag = v2.3.3-beta 9 | -------------------------------------------------------------------------------- /linux/debian/scripts/pbuild_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e -u 4 | 5 | scriptdir=`dirname $0` 6 | scriptdir=`cd "${scriptdir}" && pwd` 7 | 8 | . "${scriptdir}/config.sh" 9 | 10 | distribution="${1}" 11 | shift 12 | 13 | pushd / 14 | "${scriptdir}/build_all.sh" "${distribution}" -S "$@" 15 | 16 | "${scriptdir}/pbuilder_all.sh" "${distribution}" "$@" 17 | popd 18 | -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-ok.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-themed.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /linux/AppImage/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:trusty 2 | 3 | MAINTAINER Roeland Jago Douma 4 | 5 | RUN apt-get update && \ 6 | apt-get install -y wget libsqlite3-dev libssl-dev cmake git \ 7 | software-properties-common build-essential mesa-common-dev fuse rsync 8 | 9 | RUN add-apt-repository -y ppa:beineri/opt-qt58-trusty && \ 10 | apt-get update && \ 11 | apt-get install -y qt58base qt58tools 12 | 13 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /linux/debian/scripts/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e -u 4 | 5 | scriptdir=`dirname $0` 6 | scriptdir=`cd "${scriptdir}" && pwd` 7 | 8 | . "${scriptdir}/config.sh" 9 | 10 | package="${1}" 11 | tag="${2}" 12 | version="${3}" 13 | distribution="${4}" 14 | shift 4 15 | 16 | pushd / 17 | 18 | "${scriptdir}/create_debdir.sh" "${package}" "${tag}" "${version}" "${distribution}" 19 | 20 | (cd "${BUILDAREA}/${package}_${version}"; EDITOR=true dpkg-source --commit . local-changes; debuild "$@") 21 | 22 | popd 23 | -------------------------------------------------------------------------------- /linux/debian/scripts/build_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e -u 4 | 5 | scriptdir=`dirname $0` 6 | scriptdir=`cd "${scriptdir}" && pwd` 7 | 8 | . "${scriptdir}/config.sh" 9 | 10 | distribution="${1}" 11 | shift 12 | 13 | rm -rf "${BUILDAREA}" 14 | 15 | pushd / 16 | 17 | "${scriptdir}/build.sh" qtkeychain "${QTKEYCHAIN_TAG}" "${QTKEYCHAIN_VERSION}" "${distribution}" "$@" 18 | "${scriptdir}/build.sh" nextcloud-client "${NEXTCLOUD_CLIENT_TAG}" "${NEXTCLOUD_CLIENT_VERSION}" "${distribution}" "$@" 19 | 20 | popd 21 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /win/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | useradd user -u ${1:-1000} 4 | su - user << EOF 5 | cd /home/user/ 6 | rm -rf build-win32 7 | mkdir build-win32 8 | cd build-win32 9 | ../client/admin/win/download_runtimes.sh 10 | cmake -DCMAKE_TOOLCHAIN_FILE=../client/admin/win/Toolchain-mingw32-openSUSE.cmake\ 11 | -DWITH_CRASHREPORTER=ON \ 12 | -DOEM_THEME_DIR=/home/user/nextcloudtheme \ 13 | -DMIRALL_VERSION_SUFFIX= \ 14 | -DMIRALL_VERSION_BUILD=1 \ 15 | ../client 16 | make -j4 17 | make package 18 | ctest . 19 | EOF 20 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # See debhelper(7) (uncomment to enable) 3 | # output every command that modifies files on the build system. 4 | #export DH_VERBOSE = 1 5 | 6 | include /usr/share/cdbs/1/rules/debhelper.mk 7 | include /usr/share/cdbs/1/class/cmake.mk 8 | 9 | DEB_SHLIBDEPS_INCLUDE=$(CURDIR)/$(DEB_BUILDDIR)/csync/src 10 | 11 | DEB_SRCDIR=client 12 | DEB_CMAKE_EXTRA_FLAGS = -DOEM_THEME_DIR=$(CURDIR)/nextcloudtheme -DCMAKE_SKIP_RPATH=OFF -DCMAKE_SKIP_BUILD_RPATH=ON -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON 13 | -------------------------------------------------------------------------------- /linux/debian/qtkeychain/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # See debhelper(7) (uncomment to enable) 3 | # output every command that modifies files on the build system. 4 | #export DH_VERBOSE = 1 5 | 6 | include /usr/share/cdbs/1/rules/debhelper.mk 7 | include /usr/share/cdbs/1/class/cmake.mk 8 | 9 | #DEB_SHLIBDEPS_INCLUDE=$(CURDIR)/$(DEB_BUILDDIR)/csync/src 10 | 11 | #DEB_SRCDIR=client 12 | #DEB_CMAKE_EXTRA_FLAGS = -DOEM_THEME_DIR=$(CURDIR)/nextcloudtheme -DCMAKE_SKIP_RPATH=OFF -DCMAKE_SKIP_BUILD_RPATH=ON -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON 13 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-ok.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/patches/set-kde-use-qt-sys-path.patch: -------------------------------------------------------------------------------- 1 | --- nextcloud-client_2.3.0.orig/client/shell_integration/dolphin/CMakeLists.txt 2018-02-25 13:15:53.775971301 +0100 2 | +++ nextcloud-client_2.3.0/client/shell_integration/dolphin/CMakeLists.txt 2018-02-25 13:15:57.584003567 +0100 3 | @@ -4,6 +4,7 @@ 4 | include(FeatureSummary) 5 | set(QT_MIN_VERSION "5.3.0") 6 | set(KF5_MIN_VERSION "5.16.0") 7 | +set(KDE_INSTALL_USE_QT_SYS_PATHS ON CACHE BOOL "Install the plugin in the right directory") 8 | 9 | find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Core Network) 10 | 11 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian.zesty/changelog: -------------------------------------------------------------------------------- 1 | nextcloud-client (2.3.1-1.0~zesty1) zesty; urgency=medium 2 | 3 | * New upstream version 4 | 5 | -- István Váradi Thu, 23 Mar 2017 19:07:36 +0100 6 | 7 | nextcloud-client (2.3.0-1.0~zesty1) zesty; urgency=medium 8 | 9 | * New upstream version 10 | 11 | -- István Váradi Tue, 21 Mar 2017 19:34:13 +0100 12 | 13 | nextcloud-client (2.2.4-1.4~zesty1) zesty; urgency=medium 14 | 15 | * The locale-specific icon names are correct too 16 | 17 | -- István Váradi Tue, 7 Feb 2017 19:55:40 +0100 18 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian.artful/changelog: -------------------------------------------------------------------------------- 1 | nextcloud-client (2.3.1-1.0~artful1) artful; urgency=medium 2 | 3 | * New upstream version 4 | 5 | -- István Váradi Thu, 23 Mar 2017 19:07:36 +0100 6 | 7 | nextcloud-client (2.3.0-1.0~artful1) artful; urgency=medium 8 | 9 | * New upstream version 10 | 11 | -- István Váradi Tue, 21 Mar 2017 19:34:13 +0100 12 | 13 | nextcloud-client (2.2.4-1.4~artful1) artful; urgency=medium 14 | 15 | * The locale-specific icon names are correct too 16 | 17 | -- István Váradi Tue, 7 Feb 2017 19:55:40 +0100 18 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian.bionic/changelog: -------------------------------------------------------------------------------- 1 | nextcloud-client (2.3.1-1.0~bionic1) bionic; urgency=medium 2 | 3 | * New upstream version 4 | 5 | -- István Váradi Thu, 23 Mar 2017 19:07:36 +0100 6 | 7 | nextcloud-client (2.3.0-1.0~bionic1) bionic; urgency=medium 8 | 9 | * New upstream version 10 | 11 | -- István Váradi Tue, 21 Mar 2017 19:34:13 +0100 12 | 13 | nextcloud-client (2.2.4-1.4~bionic1) bionic; urgency=medium 14 | 15 | * The locale-specific icon names are correct too 16 | 17 | -- István Váradi Tue, 7 Feb 2017 19:55:40 +0100 18 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-themed.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-themed.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /linux/debian/scripts/pbuilder_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e -u 4 | 5 | scriptdir=`dirname $0` 6 | 7 | . "${scriptdir}/config.sh" 8 | 9 | distribution="${1}" 10 | shift 11 | 12 | resultdir="${PBUILDER_ROOT}/${distribution}_result" 13 | 14 | rm -f "${PBUILDER_DEPS}/"*.deb 15 | echo -n > "${PBUILDER_DEPS}/Packages" 16 | rm -f "${resultdir}/"* 17 | 18 | source "${HOME}/.pbuilderrc" 19 | 20 | dscversion=`echo ${QTKEYCHAIN_FULL_VERSION} | sed "s:@DISTRIBUTION@:${distribution}:g"` 21 | pbuilder-dist "${distribution}" build --othermirror "${OTHERMIRROR}" --debbuildopts "-j${NUMCPUS}" "$@" "${BUILDAREA}/qtkeychain_${dscversion}.dsc" 22 | cp "${resultdir}/"*.deb "${PBUILDER_DEPS}" 23 | 24 | dscversion=`echo ${NEXTCLOUD_CLIENT_FULL_VERSION} | sed "s:@DISTRIBUTION@:${distribution}:g"` 25 | pbuilder-dist "${distribution}" build --othermirror "${OTHERMIRROR}" --debbuildopts "-j${NUMCPUS}" "$@" "${BUILDAREA}/nextcloud-client_${dscversion}.dsc" 26 | -------------------------------------------------------------------------------- /linux/debian/qtkeychain/debian/control: -------------------------------------------------------------------------------- 1 | Source: qtkeychain 2 | Section: contrib/devel 3 | Priority: optional 4 | Maintainer: István Váradi 5 | Build-Depends: debhelper (>=9), cdbs, cmake, libqt4-dev 6 | Standards-Version: 3.9.8 7 | Homepage: https://github.com/frankosterfeld/qtkeychain 8 | #Vcs-Git: git://anonscm.debian.org/collab-maint/nextcloud-client.git 9 | #Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/nextcloud-client.git 10 | 11 | Package: libqtkeychain1 12 | Architecture: any 13 | Depends: ${shlibs:Depends}, ${misc:Depends} 14 | Description: Cross platform password store library 15 | Platform-independent Qt API for storing passwords securely. 16 | 17 | Package: qtkeychain-dev 18 | Architecture: any 19 | Section: contrib/libdevel 20 | Depends: libqtkeychain1 (=${binary:Version}), ${misc:Depends} 21 | Description: Cross platform password store library development files 22 | Development files for the platform-independent Qt API for storing 23 | passwords securely. 24 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /linux/debian/scripts/config.sh: -------------------------------------------------------------------------------- 1 | # The directory where the sources are found 2 | SOURCES="${HOME}/sources/nextcloud" 3 | 4 | # The directory into which the packages should be genereated 5 | BUILDAREA="${SOURCES}/build-area" 6 | 7 | # The directory containing the Git repositories 8 | GITROOTS="${SOURCES}/git" 9 | 10 | # The pbuilder root directory 11 | PBUILDER_ROOT="${HOME}/pbuilder" 12 | 13 | # The dependencies directory for pbuilder 14 | PBUILDER_DEPS="${PBUILDER_ROOT}/deps" 15 | 16 | # The version of the qtkeychain package 17 | QTKEYCHAIN_VERSION=0.7.0 18 | 19 | # The full version of the qtkeychain package 20 | QTKEYCHAIN_FULL_VERSION="${QTKEYCHAIN_VERSION}-1.0ppa1~@DISTRIBUTION@1" 21 | 22 | # The tag of the qtkeychain package 23 | QTKEYCHAIN_TAG="v${QTKEYCHAIN_VERSION}" 24 | 25 | # The version of the nextcloud-client package 26 | NEXTCLOUD_CLIENT_VERSION=2.3.1 27 | 28 | # The FULL version of the nextcloud-client package 29 | NEXTCLOUD_CLIENT_FULL_VERSION="${NEXTCLOUD_CLIENT_VERSION}-1.0~@DISTRIBUTION@1" 30 | 31 | # The tag of the nextcloud-client package 32 | NEXTCLOUD_CLIENT_TAG="v${NEXTCLOUD_CLIENT_VERSION}" 33 | 34 | # The number of CPUs that can be used for paralel builds 35 | NUMCPUS=4 36 | -------------------------------------------------------------------------------- /linux/debian/scripts/addchange.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e -u 4 | 5 | scriptdir=`dirname $0` 6 | 7 | DEFAULT_DIST=yakkety 8 | 9 | package="$1" 10 | version="$2" 11 | comment="$3" 12 | distver="${4:-}" 13 | 14 | if test -z "${distver}"; then 15 | distver="1" 16 | fi 17 | 18 | packagedir="${scriptdir}/../${package}" 19 | 20 | now=`date -R` 21 | 22 | tmpfile="/tmp/addchange.$$" 23 | 24 | for subdir in "${packagedir}/debian"*; do 25 | if test -f "${subdir}/changelog"; then 26 | echo "${subdir}" 27 | bname=`basename "${subdir}"` 28 | dist=`echo "${bname}" | sed 's:debian\.\?::'` 29 | if test -z "${dist}"; then 30 | dist="${DEFAULT_DIST}" 31 | fi 32 | if test "${dist}" = "stable"; then 33 | versuffix="" 34 | else 35 | versuffix="~${dist}${distver}" 36 | fi 37 | cat > "${tmpfile}" < ${now} 43 | 44 | EOF 45 | cat "${subdir}/changelog" >> "${tmpfile}" 46 | mv "${tmpfile}" "${subdir}/changelog" 47 | fi 48 | done 49 | 50 | rm -f "${tmpfile}" 51 | -------------------------------------------------------------------------------- /win/travis-build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Adapted from the Debian travis-build.sh to test building a Windows binary 4 | # according to the build instructions in README.md 5 | 6 | set -xe 7 | shopt -s extglob 8 | 9 | TRAVIS_BUILD_STEP="$1" 10 | 11 | if [ "$TRAVIS_BUILD_STEP" == "install" ]; then 12 | # @TODO: This patch updates the repo location of mingw _in the origin repo_ 13 | # because repositories/windows:/mingw/openSUSE_42.1/windows:mingw.repo has 14 | # been moved to openSUSE Leap 42.1. This has been applied upstream but is 15 | # not included in their 2.3.3 tag. This should be removed and the patch 16 | # deleted when it is no longer needed to build, presumably in the next 17 | # release. See owncloud/client at 6be122e (PR owncloud/client#5900). 18 | cd client 19 | patch -p1 < ../win/opensuse-mingw-repo-location.patch 20 | cd .. 21 | # /end patch 22 | 23 | elif [ "$TRAVIS_BUILD_STEP" == "script" ]; then 24 | read basever kind <<<$(linux/debian/scripts/git2changelog.py /tmp/tmpchangelog stable) 25 | 26 | docker build -t nextcloud-client-win32:${basever} client/admin/win/docker/ 27 | docker run -v "$PWD:/home/user/" nextcloud-client-win32:${basever} /home/user/win/build.sh $(id -u) 28 | fi 29 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/source/lintian-overrides: -------------------------------------------------------------------------------- 1 | nextcloud-client source: source-is-missing client/doc/ocdoc/_shared_assets/themes/bootstrap/static/bootstrap.js line length is 22206 characters (>512) 2 | nextcloud-client source: source-is-missing client/doc/ocdoc/_shared_assets/themes/bootstrap/static/jquery.js 3 | nextcloud-client source: source-is-missing client/doc/ocdoc/_shared_assets/themes/bootstrap/static/jquery.js line length is 32412 characters (>512) 4 | nextcloud-client source: source-is-missing client/doc/ocdoc/_shared_assets/themes/owncloud_com/static/bootstrap.js line length is 22206 characters (>512) 5 | nextcloud-client source: source-is-missing client/doc/ocdoc/_shared_assets/themes/owncloud_com/static/jquery.js line length is 32412 characters (>512) 6 | nextcloud-client source: source-is-missing client/doc/ocdoc/_shared_assets/themes/owncloud_release/static/bootstrap.js line length is 22206 characters (>512) 7 | nextcloud-client source: source-is-missing client/doc/ocdoc/_shared_assets/themes/owncloud_release/static/jquery.js line length is 32412 characters (>512) 8 | nextcloud-client source: source-is-missing client/doc/ocdoc/_shared_assets/themes/owncloud_org/static/js/jquery-1.11.0.min.js 9 | nextcloud-client source: license-problem-convert-utf-code 10 | -------------------------------------------------------------------------------- /nextcloudtheme/OEM.cmake: -------------------------------------------------------------------------------- 1 | set( APPLICATION_NAME "Nextcloud" ) 2 | set( APPLICATION_SHORTNAME "Nextcloud" ) 3 | set( APPLICATION_EXECUTABLE "nextcloud" ) 4 | set( APPLICATION_DOMAIN "nextcloud.com" ) 5 | set( APPLICATION_VENDOR "Nextcloud GmbH" ) 6 | set( APPLICATION_UPDATE_URL "https://updates.nextcloud.org/client/" CACHE string "URL for updater" ) 7 | set( APPLICATION_ICON_NAME "Nextcloud" ) 8 | 9 | set( THEME_CLASS "NextcloudTheme" ) 10 | set( APPLICATION_REV_DOMAIN "com.nextcloud.desktopclient" ) 11 | set( WIN_SETUP_BITMAP_PATH "${OEM_THEME_DIR}/win" ) 12 | 13 | set( MAC_INSTALLER_BACKGROUND_FILE "${OEM_THEME_DIR}/osx/installer-background.png" CACHE STRING "The MacOSX installer background image") 14 | 15 | set( THEME_INCLUDE "${OEM_THEME_DIR}/nextcloudtheme.h" ) 16 | # set( APPLICATION_LICENSE "${OEM_THEME_DIR}/license.txt ) 17 | 18 | option( WITH_CRASHREPORTER "Build crashreporter" OFF ) 19 | set( CRASHREPORTER_SUBMIT_URL "https://crash-reports.owncloud.com/submit" CACHE string "URL for crash reporter" ) 20 | set( CRASHREPORTER_ICON ":/owncloud-icon.png" ) 21 | 22 | if(CPACK_GENERATOR MATCHES "NSIS") 23 | SET( CPACK_PACKAGE_ICON "{OEM_THEME_DIR}/win/installer.ico" ) # Set installer icon 24 | endif(CPACK_GENERATOR MATCHES "NSIS") 25 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | os: linux 2 | dist: trusty 3 | sudo: required 4 | language: generic 5 | 6 | services: 7 | - docker 8 | 9 | env: 10 | global: 11 | - DOCKER_IMAGE=ubuntu:xenial 12 | - SNAP_PRIME_ON_PULL_REQUEST=true 13 | - SNAP_DEPLOY_CHANNEL=edge 14 | - SNAPCRAFT_CONFIG_KEY=$encrypted_ad766d8d4221_key 15 | - SNAPCRAFT_CONFIG_IV=$encrypted_ad766d8d4221_iv 16 | 17 | matrix: 18 | - BUILD_TYPE=appimage 19 | - BUILD_TYPE=snap 20 | - BUILD_TYPE=snap ARCH=i386 21 | - BUILD_TYPE=debian 22 | - BUILD_TYPE=win 23 | 24 | before_install: 25 | - linux/travis-build.sh before_install 26 | 27 | install: 28 | - linux/travis-build.sh install 29 | 30 | before_script: 31 | - linux/travis-build.sh before_script 32 | 33 | script: 34 | - linux/travis-build.sh script 35 | 36 | after_success: 37 | - linux/travis-build.sh after_success 38 | 39 | deploy: 40 | - provider: script 41 | skip_cleanup: true 42 | script: linux/travis-build.sh snap_store_deploy 43 | on: 44 | condition: ($BUILD_TYPE = snap && -n "$SNAPCRAFT_CONFIG_KEY" && -n "$SNAPCRAFT_CONFIG_IV") 45 | 46 | - provider: script 47 | skip_cleanup: true 48 | script: linux/travis-build.sh ppa_deploy 49 | on: 50 | condition: ($BUILD_TYPE = debian) 51 | 52 | branches: 53 | except: 54 | - # Do not build tags that we create when we upload to GitHub Releases 55 | - /^(?i:continuous)$/ 56 | -------------------------------------------------------------------------------- /linux/debian/README: -------------------------------------------------------------------------------- 1 | - .pbuilderrc: 2 | 3 | COMPONENTS="main restricted universe multiverse" 4 | 5 | OTHERMIRROR="deb [trusted=yes] file:///${HOME}/pbuilder/deps ./" 6 | HOOKDIR="${HOME}/pbuilder/hook.d" 7 | BINDMOUNTS="${HOME}/pbuilder/deps" 8 | 9 | EXTRAPACKAGES="apt-utils" 10 | 11 | - pbuilder/hook.d/D70setupdeps: hook to create a Packages file for the 12 | packages in pbuilder/deps 13 | 14 | - pbuilder-dist trusty create --override-config --othermirror "deb [trusted=yes] file:///${HOME}/pbuilder/deps ./" 15 | 16 | The OTHERMIRROR setting in .pbuilderrc is overridden by pbuilder-dist! 17 | 18 | - scripts: 19 | 20 | config.sh: basic configuration variables 21 | 22 | create_debdir.sh : 23 | create the Debian-conformant source directory and .orig.tar.bz2 24 | in the build area 25 | build.sh : 26 | call create_debdir.sh and then debuild 27 | build_all.sh : 28 | build all packages for the given distribution 29 | pbuilder_all.sh : 30 | build the existing source packages with pbuilder-dist. The qtkeychain 31 | packages are copied to pbuilder/deps so that nextcloud-client could be 32 | built properly 33 | pbuild_all.sh : 34 | build the source packages with build_all.sh and then all 35 | pbuilder_all.sh 36 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian.stable/changelog: -------------------------------------------------------------------------------- 1 | nextcloud-client (2.3.1-1.0) stable; urgency=medium 2 | 3 | * New upstream version 4 | 5 | -- István Váradi Thu, 23 Mar 2017 19:07:36 +0100 6 | 7 | nextcloud-client (2.3.0-1.0) stable; urgency=medium 8 | 9 | * New upstream version 10 | 11 | -- István Váradi Tue, 21 Mar 2017 19:34:13 +0100 12 | 13 | nextcloud-client (2.2.4-1.4) stable; urgency=medium 14 | 15 | * The locale-specific icon names are correct too 16 | 17 | -- István Váradi Tue, 7 Feb 2017 19:55:40 +0100 18 | 19 | nextcloud-client (2.2.4-1.3) stable; urgency=medium 20 | 21 | * Caja syncstate plugin is built. 22 | * The syncstate plugin has application-specific name 23 | 24 | -- István Váradi Fri, 27 Jan 2017 19:34:18 +0100 25 | 26 | nextcloud-client (2.2.4-1.2) stable; urgency=medium 27 | 28 | * Fixed appname in the Nemo syncstate extension. 29 | 30 | -- István Váradi Thu, 19 Jan 2017 16:46:50 +0100 31 | 32 | nextcloud-client (2.2.4-1.1) stable; urgency=medium 33 | 34 | * Added Nautilus and Nemo syncstate extensions. 35 | 36 | -- István Váradi Tue, 17 Jan 2017 19:55:32 +0100 37 | 38 | nextcloud-client (2.2.4-1.0) stable; urgency=medium 39 | 40 | * Initial release. 41 | 42 | -- István Váradi Wed, 14 Dec 2016 20:07:46 +0100 43 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/changelog: -------------------------------------------------------------------------------- 1 | nextcloud-client (2.3.1-1.0~xenial1) xenial; urgency=medium 2 | 3 | * New upstream version 4 | 5 | -- István Váradi Thu, 23 Mar 2017 19:07:36 +0100 6 | 7 | nextcloud-client (2.3.0-1.0~xenial1) xenial; urgency=medium 8 | 9 | * New upstream version 10 | 11 | -- István Váradi Tue, 21 Mar 2017 19:34:13 +0100 12 | 13 | nextcloud-client (2.2.4-1.4~xenial1) xenial; urgency=medium 14 | 15 | * The locale-specific icon names are correct too 16 | 17 | -- István Váradi Tue, 7 Feb 2017 19:55:40 +0100 18 | 19 | nextcloud-client (2.2.4-1.3~xenial1) xenial; urgency=medium 20 | 21 | * Caja syncstate plugin is built. 22 | * The syncstate plugin has application-specific name 23 | 24 | -- István Váradi Fri, 27 Jan 2017 19:34:18 +0100 25 | 26 | nextcloud-client (2.2.4-1.2~xenial1) xenial; urgency=medium 27 | 28 | * Fixed appname in the Nemo syncstate extension. 29 | 30 | -- István Váradi Thu, 19 Jan 2017 16:46:50 +0100 31 | 32 | nextcloud-client (2.2.4-1.1~xenial1) xenial; urgency=medium 33 | 34 | * Added Nautilus and Nemo syncstate extensions. 35 | 36 | -- István Váradi Tue, 17 Jan 2017 19:55:32 +0100 37 | 38 | nextcloud-client (2.2.4-1.0~xenial1) xenial; urgency=medium 39 | 40 | * Initial release. 41 | 42 | -- István Váradi Wed, 14 Dec 2016 20:07:46 +0100 43 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian.trusty/changelog: -------------------------------------------------------------------------------- 1 | nextcloud-client (2.3.1-1.0~trusty1) trusty; urgency=medium 2 | 3 | * New upstream version 4 | 5 | -- István Váradi Thu, 23 Mar 2017 19:07:36 +0100 6 | 7 | nextcloud-client (2.3.0-1.0~trusty1) trusty; urgency=medium 8 | 9 | * New upstream version 10 | 11 | -- István Váradi Tue, 21 Mar 2017 19:34:13 +0100 12 | 13 | nextcloud-client (2.2.4-1.4~trusty1) trusty; urgency=medium 14 | 15 | * The locale-specific icon names are correct too 16 | 17 | -- István Váradi Tue, 7 Feb 2017 19:55:40 +0100 18 | 19 | nextcloud-client (2.2.4-1.3~trusty1) trusty; urgency=medium 20 | 21 | * Caja syncstate plugin is built. 22 | * The syncstate plugin has application-specific name 23 | 24 | -- István Váradi Fri, 27 Jan 2017 19:34:18 +0100 25 | 26 | nextcloud-client (2.2.4-1.2~trusty1) trusty; urgency=medium 27 | 28 | * Fixed appname in the Nemo syncstate extension. 29 | 30 | -- István Váradi Thu, 19 Jan 2017 16:46:50 +0100 31 | 32 | nextcloud-client (2.2.4-1.1~trusty1) trusty; urgency=medium 33 | 34 | * Added Nautilus and Nemo syncstate extensions. 35 | 36 | -- István Váradi Tue, 17 Jan 2017 19:55:32 +0100 37 | 38 | nextcloud-client (2.2.4-1.0~trusty1) trusty; urgency=medium 39 | 40 | * Initial release. 41 | 42 | -- István Váradi Wed, 14 Dec 2016 20:07:46 +0100 43 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian.yakkety/changelog: -------------------------------------------------------------------------------- 1 | nextcloud-client (2.3.1-1.0~yakkety1) yakkety; urgency=medium 2 | 3 | * New upstream version 4 | 5 | -- István Váradi Thu, 23 Mar 2017 19:07:36 +0100 6 | 7 | nextcloud-client (2.3.0-1.0~yakkety1) yakkety; urgency=medium 8 | 9 | * New upstream version 10 | 11 | -- István Váradi Tue, 21 Mar 2017 19:34:13 +0100 12 | 13 | nextcloud-client (2.2.4-1.4~yakkety1) yakkety; urgency=medium 14 | 15 | * The locale-specific icon names are correct too 16 | 17 | -- István Váradi Tue, 7 Feb 2017 19:55:40 +0100 18 | 19 | nextcloud-client (2.2.4-1.3~yakkety1) yakkety; urgency=medium 20 | 21 | * Caja syncstate plugin is built. 22 | * The syncstate plugin has application-specific name 23 | 24 | -- István Váradi Fri, 27 Jan 2017 19:34:18 +0100 25 | 26 | nextcloud-client (2.2.4-1.2~yakkety1) yakkety; urgency=medium 27 | 28 | * Fixed appname in the Nemo syncstate extension. 29 | 30 | -- István Váradi Thu, 19 Jan 2017 16:46:50 +0100 31 | 32 | nextcloud-client (2.2.4-1.1~yakkety1) yakkety; urgency=medium 33 | 34 | * Added Nautilus and Nemo syncstate extensions. 35 | 36 | -- István Váradi Tue, 17 Jan 2017 19:55:32 +0100 37 | 38 | nextcloud-client (2.2.4-1.0~yakkety1) yakkety; urgency=medium 39 | 40 | * Initial release. 41 | 42 | -- István Váradi Wed, 14 Dec 2016 20:07:46 +0100 43 | -------------------------------------------------------------------------------- /nextcloudtheme/osx/installer-background.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /win/opensuse-mingw-repo-location.patch: -------------------------------------------------------------------------------- 1 | Description: Update the repository location for MinGW. 2 | 3 | Windows builds failed because this dependency was not at the specified 4 | location. This patch can be applied to the client submodule to update the 5 | Dockerfile with a path to MinGW for openSUSE Leap instead. This change has 6 | been applied upstream in owncloud/client at 6be122e (PR owncloud/client#5900) 7 | but is not included in the 2.3.3 release. 8 | 9 | Last-Update: 2017-10-04 10 | Author: Taylor Smith 11 | 12 | diff --git a/admin/win/docker/Dockerfile b/admin/win/docker/Dockerfile 13 | index 8e40a49..1629b97 100644 14 | --- a/admin/win/docker/Dockerfile 15 | +++ b/admin/win/docker/Dockerfile 16 | @@ -8,7 +8,7 @@ ENV HOME /root 17 | ENV REFRESHED_AT 20160421 18 | 19 | RUN zypper --non-interactive --gpg-auto-import-keys refresh 20 | -RUN zypper --non-interactive --gpg-auto-import-keys ar http://download.opensuse.org/repositories/windows:/mingw/openSUSE_42.1/windows:mingw.repo 21 | +RUN zypper --non-interactive --gpg-auto-import-keys ar http://download.opensuse.org/repositories/windows:/mingw/openSUSE_Leap_42.1/windows:mingw.repo 22 | RUN zypper --non-interactive --gpg-auto-import-keys ar http://download.opensuse.org/repositories/isv:ownCloud:toolchains:mingw:win32:2.3/openSUSE_Leap_42.1/isv:ownCloud:toolchains:mingw:win32:2.3.repo 23 | RUN zypper --non-interactive --gpg-auto-import-keys install cmake make mingw32-cross-binutils mingw32-cross-cpp mingw32-cross-gcc \ 24 | mingw32-cross-gcc-c++ mingw32-cross-pkg-config mingw32-filesystem \ 25 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/wizard_logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/win/page_header.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /osx/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export PATH=/usr/local/Qt-5.9.2/bin/:$PATH 3 | export OPENSSL_ROOT_DIR=$(brew --prefix openssl) 4 | 5 | # Cleanup 6 | cd ~ 7 | sudo rm -rf build-mac 8 | sudo rm -rf client 9 | sudo rm -rf install 10 | 11 | # Clone the desktop client code 12 | git clone --recursive https://github.com/owncloud/client.git 13 | cd client 14 | git checkout v2.3.3 15 | git submodule update --recursive 16 | 17 | # Build qtkeychain 18 | cd ~/client/src/3rdparty/ 19 | git clone https://github.com/frankosterfeld/qtkeychain.git 20 | cd qtkeychain 21 | git checkout v0.8.0 22 | cmake -DCMAKE_OSX_SYSROOT="/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk" -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 -DCMAKE_INSTALL_PREFIX=/Users/builder/install -DCMAKE_PREFIX_PATH=/Users/builder/Qt/5.9/clang_64 . 23 | sudo make -j1 install 24 | 25 | # Build the client 26 | cd ~ 27 | cp client_theming/osx/dsa_pub.pem client/admin/osx/sparkle/ 28 | rm -rf build-mac 29 | mkdir build-mac 30 | cd build-mac 31 | cmake -DCMAKE_OSX_SYSROOT="/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk" -DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 -DCMAKE_INSTALL_PREFIX=/Users/builder/install -DCMAKE_PREFIX_PATH=/Users/builder/Qt/5.9/clang_64 -D SPARKLE_INCLUDE_DIR=/Users/builder/Library/Frameworks/Sparkle.framework/ -D SPARKLE_LIBRARY=/Users/builder/Library/Frameworks/Sparkle.framework/ -D OEM_THEME_DIR=/Users/builder/client_theming/nextcloudtheme -DWITH_CRASHREPORTER=ON -DNO_SHIBBOLETH=1 -DMIRALL_VERSION_BUILD=1 ../client 32 | make -j2 33 | sudo make -j1 install 34 | # The magic string here is SHA1 hash of your Developer ID Application certificate 35 | sudo ~/client/admin/osx/sign_app.sh ~/install/nextcloud.app 74FB2413760D6407588B69F499F13514A86AE 36 | # The magic string here is SHA1 hash of your Developer ID Installer certificate 37 | sudo ~/build-mac/admin/osx/create_mac.sh ../install/ . 1B8B3FD4A0ADCC5BF4385FA1A50F4547DE73C95E 38 | 39 | # Generate a sparkle signature for the tbz 40 | openssl dgst -sha1 -binary < ~/install/*.tbz | openssl dgst -dss1 -sign ~/dsa_priv.pem | openssl enc -base64 > ~/sig.txt 41 | sudo mv ~/sig.txt ~/install/signature.txt 42 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/patches/fix-syncstate-appname.patch: -------------------------------------------------------------------------------- 1 | diff -ruN nextcloud-client_2.3.0.orig/client/shell_integration/nautilus/CMakeLists.txt nextcloud-client_2.3.0/client/shell_integration/nautilus/CMakeLists.txt 2 | --- nextcloud-client_2.3.0.orig/client/shell_integration/nautilus/CMakeLists.txt 2017-03-03 10:11:17.000000000 +0100 3 | +++ nextcloud-client_2.3.0/client/shell_integration/nautilus/CMakeLists.txt 2017-03-23 19:11:30.031358428 +0100 4 | @@ -3,8 +3,6 @@ 5 | if( UNIX AND NOT APPLE ) 6 | 7 | configure_file(syncstate.py syncstate.py COPYONLY) 8 | - configure_file(syncstate.py syncstate_nemo.py COPYONLY) 9 | - configure_file(syncstate.py syncstate_caja.py COPYONLY) 10 | 11 | # Call the setupappname.sh script to set the custom app name. 12 | set (cmd "${CMAKE_CURRENT_SOURCE_DIR}/setappname.sh") 13 | diff -ruN nextcloud-client_2.3.0.orig/client/shell_integration/nautilus/createcajaplugin.sh nextcloud-client_2.3.0/client/shell_integration/nautilus/createcajaplugin.sh 14 | --- nextcloud-client_2.3.0.orig/client/shell_integration/nautilus/createcajaplugin.sh 2017-03-03 10:11:17.000000000 +0100 15 | +++ nextcloud-client_2.3.0/client/shell_integration/nautilus/createcajaplugin.sh 2017-03-23 19:11:42.419312193 +0100 16 | @@ -2,6 +2,6 @@ 17 | 18 | # this script creates a plugin for caja, just by replacing 19 | # all occurences of Nautilus with Caja (case sensitive). 20 | - 21 | +cp syncstate.py syncstate_caja.py 22 | sed -i.org -e 's/Nautilus/Caja/g' syncstate_caja.py 23 | sed -i.org -e 's/nautilus/caja/g' syncstate_caja.py 24 | diff -ruN nextcloud-client_2.3.0.orig/client/shell_integration/nautilus/createnemoplugin.sh nextcloud-client_2.3.0/client/shell_integration/nautilus/createnemoplugin.sh 25 | --- nextcloud-client_2.3.0.orig/client/shell_integration/nautilus/createnemoplugin.sh 2017-03-03 10:11:17.000000000 +0100 26 | +++ nextcloud-client_2.3.0/client/shell_integration/nautilus/createnemoplugin.sh 2017-03-23 19:11:50.347282602 +0100 27 | @@ -2,5 +2,5 @@ 28 | 29 | # this script creates a plugin for nemo, just be replacing 30 | # all occurences of Nautilus with Nemo. 31 | - 32 | +cp syncstate.py syncstate_nemo.py 33 | sed -i.org -e 's/autilus/emo/g' syncstate_nemo.py 34 | -------------------------------------------------------------------------------- /linux/snap/snapcraft.yaml: -------------------------------------------------------------------------------- 1 | name: nextcloud-client 2 | version: 2.2.4+git 3 | icon: ../nextcloudtheme/theme/colored/Nextcloud-icon.svg 4 | summary: Nextcloud Desktop Client 5 | description: | 6 | The Nextcloud Desktop Client is a tool to synchronize files from Nextcloud 7 | Server with your computer. 8 | 9 | grade: stable 10 | confinement: strict 11 | 12 | parts: 13 | client: 14 | plugin: cmake 15 | source: ../ 16 | source-type: git 17 | source-subdir: client 18 | build-packages: 19 | - g++ 20 | - libqt5webkit5-dev 21 | - libsqlite3-dev 22 | - libssl-dev 23 | - pkg-config 24 | - qt5keychain-dev 25 | - qttools5-dev-tools 26 | stage-packages: 27 | # qtkeychain requires these libs at runtime to support keyrings 28 | - libsecret-1-0 29 | - libgnome-keyring0 30 | configflags: 31 | - -DCMAKE_BUILD_TYPE=Release 32 | - -DOEM_THEME_DIR=$SNAPCRAFT_PART_INSTALL/../src/nextcloudtheme 33 | - -DCMAKE_INSTALL_PREFIX=/usr 34 | - -DCMAKE_INSTALL_LIBDIR=/usr/lib 35 | - -DSYSCONF_INSTALL_DIR=/etc 36 | install: | 37 | # Replace icon with the correct path in the snap 38 | sed -ri "s|(^Icon=).*$|\1\${SNAP}/meta/gui/icon.svg|" "$SNAPCRAFT_PART_INSTALL/usr/share/applications/nextcloud.desktop" 39 | 40 | after: 41 | - desktop-qt5 42 | - snapcraft-preload 43 | 44 | xdg-open: 45 | source: https://github.com/ubuntu-core/snapd-xdg-open.git 46 | source-depth: 1 47 | plugin: dump 48 | organize: 49 | data/xdg-open: bin/xdg-open 50 | prime: 51 | - bin 52 | 53 | apps: 54 | nextcloud-client: 55 | aliases: 56 | - nextcloud 57 | 58 | command: snapcraft-preload nextcloud 59 | environment: 60 | LD_LIBRARY_PATH: $SNAP/usr/lib/nextcloud:$LD_LIBRARY_PATH 61 | desktop: usr/share/applications/nextcloud.desktop 62 | plugs: 63 | - unity7 64 | - home 65 | - network 66 | - network-bind 67 | - network-manager 68 | - password-manager-service 69 | 70 | cmd: 71 | aliases: 72 | - nextcloudcmd 73 | command: snapcraft-preload nextcloudcmd 74 | environment: 75 | LD_LIBRARY_PATH: $SNAP/usr/lib/nextcloud:$LD_LIBRARY_PATH 76 | plugs: 77 | - unity7 78 | - home 79 | - network 80 | -------------------------------------------------------------------------------- /osx/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIGOzCCBC0GByqGSM44BAEwggQgAoICAQCwGHwZVKUPwJafICkknBmoIS7TGjfw 3 | TnHpZdWJ/kVvMIhFiui3cJaB85e8R2yGRq7wr6ljYCR5EyjRXEJGEFW05PCUxLhh 4 | LnUg7yWIL1EnRM61zSlnWer4f7IBO7Qf8hd35jL5VuQtqE+Shq1vtC21SFO6GMog 5 | sfQdeyhTMIH67nw19fDxbyqPh+fPsBgitWmO07eF132Qxju0MwXvaju3YrXepuoR 6 | ClonI8pfPCJAAyJd5sEAfJPiqObgW/ehNgU5mVXv2D6VNtvvyu0flnvj05TOtkz+ 7 | 6392xh0u/xtz1F1clPe31JW3C2zxkvS14M7eSn96hMlojLev75/V84pQNZ7qXQ/X 8 | TxWaucnipJ94EqRLTg1hD3qwyC+5JKqOA6ELFmMARsP2MV4wmBIE+bz/bP2g7UCT 9 | UIJVTZrZAemozMFR6zsQQMrdz9fEPXQhibcg3LppMnnTkAJUdMkKlGIpehGe1tVC 10 | LaOgYh03zf/N7yFwH9eMIiAoXTlqR7iRO1HHsXn60OF8XYEt8Xga8cK7zMiPYOqm 11 | o4rheeXw33pckX63glOjJ+ADH1jhU7vOjRsAySXMFjanD8A31Mh8NbhuvPJowJAx 12 | ez8Hu4M6+fg644z7WHmsrbp0R3/Ow9FI/zmvYT6najOlEwnar8ix210ezjWmAOxN 13 | BTuHN6Bj7ckgdQIVAKwAcb77T0Fyjus9ZImfCqlKdihZAoICABiPO4bywe636AlU 14 | FRhMS/XFeGqRD7GbJSbGzIahooUPyVAeyRIU1HzmeVPx7jTqcoqcau0vXfv10EB+ 15 | nJ3q6EzfCbitGIDJ1TjT2BhMtsnhzplhvVOAThuLnLpYwa3h8DIfgTqxh+DaCJHc 16 | ccdl/sAgj/6m54FCRc5ukyQZZeOFgSO2L+JfGDYJpn1CFuRVrXr4DbvtUDItRTbQ 17 | Gxlg5OEx2D1eO5DHtmuRPBZbumgACnFeD97tRQVjVKqQiMU3ZfNDp+mub0/MS/PY 18 | djDZIZM4E3/Nx+IuSuRELGKgifM/ED0tyiq6FYy9kx1nVVoRhWt29ipkQSskvRL3 19 | Ba593/u7dMt2Pa/RVNha+9J1VIadblNu0OkieI8OrPJ8PEdrr3Igit1GuURxz/oR 20 | c4T5nWCM+7e9yxs1resVDsU4D0aJVBMnE7IZwnN9/f4wduR0rxuBTLbMgtgBoIak 21 | JhgplAQu7SdSxKSpY6keGZUpt8ATkixkScZmVhFKmuVYc1c0tLfUqQnlC4Ty44Wk 22 | MEyub6749iRgNQp9vzvntS3EoLDho4CdEWlrp7YBtvTPiey46gcoLeLNZVyGuQ42 23 | CdFw09MIDPEhXBe6oWsOqW4OUla/UoVJyEjuPeiNIMruUJKIGkB1RL6OaiWxJkGM 24 | 2HXSebMEweWuScaJmNR5VX87n6KTA4ICBgACggIBAKIAUUc/MJYZYkZectbSabZy 25 | TmlrPmi00q7wpsInTieeKVqOSypS+fuoiG2uuUX4+duqK8mLiA9WC0/y/cBJiWth 26 | Bp28s1ADdC98wamERYpZOxWuHDS9MEsovQzm5RIxgVtZbK7vKk/f0WbGE6xwgERH 27 | dt1zSZRh1ZWi/UWDVGHjlVMEhtNxoRD/Q5T4KUpLez0DNf2VpKk17KsqD2sS1zit 28 | IwIMR++PEY9Rfw1FWIkE5GzJnjxR8sUr6hg5A4z779W7qW/KK5DGlOVYrHhdxUDA 29 | b5q4wGBP3sDCPhhZ/g1V62tb1LAXnTMgAkdXGpRCxoe21TcB21PSQAbW1sOpFbSu 30 | 07kMLAZIh+L1eR5sY6z7S/pqE4W4ukYUEFJPUSCVUCXkN2ZbSfbQLLi2mVNNIp7u 31 | /MJVxNQOtRqHM+2/nN+98Grivr1ct1G1NUHYgP/lr7Y2QNBiST0Lcnos8pjmI42v 32 | 0NxCt+BOx+cc0SNXxRJD2j73IgzD8YW3gvWfzSwUcIqgC27JEEMhscEVNI4vD/CR 33 | mdDmYm0QJdBmEczPf5cA5gyAa1ATYS8ejrh6HpbC++FpSf4FN++5uu9cXtYJgI9B 34 | G0ZEvlGwqzStV35LeqwF2KBSZIspquILBDJDaKHG7wPE5/MdSsFky1awX7jgyGZV 35 | H5CvBpIDHOrQ0r1b40oB 36 | -----END PUBLIC KEY----- 37 | -------------------------------------------------------------------------------- /linux/debian/scripts/create_debdir.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e -u 4 | 5 | scriptdir=`dirname $0` 6 | scriptdir=`cd "${scriptdir}" && pwd` 7 | 8 | . "${scriptdir}/config.sh" 9 | 10 | package="${1}" 11 | tag="${2}" 12 | version="${3}" 13 | distribution="${4}" 14 | 15 | gitdir="${GITROOTS}/${package}" 16 | packagedir="${BUILDAREA}/${package}_${version}" 17 | origtarname="${package}_${version}.orig.tar.bz2" 18 | origtar="${BUILDAREA}/${origtarname}" 19 | 20 | archive_submodules() 21 | { 22 | local subdir="${1}" 23 | local treeish="${2}" 24 | 25 | local dir="${gitdir}" 26 | local destdir="${packagedir}" 27 | if test "${subdir}"; then 28 | echo " copying submodule ${subdir}" 29 | dir="${dir}/${subdir}" 30 | destdir="${destdir}/${subdir}" 31 | fi 32 | 33 | mkdir -p "${destdir}" 34 | 35 | (cd "${dir}"; git archive "${treeish}" | tar xf - -C "${destdir}") 36 | 37 | (cd "${dir}"; git ls-tree "${treeish}" -r) | while read mode type object file; do 38 | if test "${type}" = "commit"; then 39 | sdir="${file}" 40 | if test "${subdir}"; then 41 | sdir="${subdir}/${sdir}" 42 | fi 43 | archive_submodules "${sdir}" "${object}" 44 | fi 45 | done 46 | } 47 | 48 | rm -rf "${packagedir}" 49 | mkdir -p "${packagedir}" 50 | 51 | echo "Updating submodules" 52 | commit=`cd "${GITROOTS}/${package}"; git rev-parse HEAD` 53 | (cd "${GITROOTS}/${package}"; git checkout "${tag}"; git submodule update --recursive --init) 54 | 55 | echo "Copying sources" 56 | archive_submodules "" "${tag}" 57 | 58 | if test -f "${GITROOTS}/${origtarname}"; then 59 | echo "Copying orig archive from ${GITROOTS}" 60 | cp -a "${GITROOTS}/${origtarname}" "${BUILDAREA}" 61 | else 62 | echo "Creating orig archive" 63 | tar cjf "${origtar}" -C "${BUILDAREA}" "${package}_${version}" 64 | fi 65 | 66 | echo "Restoring Git state" 67 | (cd "${GITROOTS}/${package}"; git checkout "${commit}") 68 | cd "${scriptdir}" 69 | 70 | echo "Copying Debian files" 71 | mkdir -p "${packagedir}/debian" 72 | tar cf - -C "${scriptdir}/../${package}/debian" . | tar xf - -C "${packagedir}/debian" 73 | 74 | if test -d "${scriptdir}/../${package}/debian.${distribution}"; then 75 | tar cf - -C "${scriptdir}/../${package}/debian.${distribution}" . | tar xf - -C "${packagedir}/debian" 76 | fi 77 | 78 | "${scriptdir}/git2changelog.py" /tmp/git2changelog "${distribution}" 79 | mv "${packagedir}/debian/changelog" "${packagedir}/debian/changelog.old" 80 | cat /tmp/git2changelog "${packagedir}/debian/changelog.old" > "${packagedir}/debian/changelog" 81 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian.trusty/control: -------------------------------------------------------------------------------- 1 | Source: nextcloud-client 2 | Section: contrib/devel 3 | Priority: optional 4 | Maintainer: István Váradi 5 | Build-Depends: debhelper (>= 9), cdbs, cmake, libssl-dev (>= 1.0.0), libsqlite3-dev (>=3.8.0), 6 | qtkeychain-dev (>=0.7.0), libqtwebkit-dev, pkg-config 7 | Standards-Version: 3.9.8 8 | Homepage: https://github.com/nextcloud/client_theming 9 | #Vcs-Git: git://anonscm.debian.org/collab-maint/nextcloud-client.git 10 | #Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/nextcloud-client.git 11 | 12 | Package: nextcloud-client 13 | Architecture: any 14 | Depends: libnextcloudsync0 (=${binary:Version}), ${shlibs:Depends}, ${misc:Depends}, nextcloud-client-l10n 15 | Recommends: libgnome-keyring0 16 | Description: Nextcloud desktop sync client 17 | Use the desktop client to keep your files synchronized 18 | between your Nextcloud server and your desktop. Select 19 | one or more directories on your local machine and always 20 | have access to your latest files wherever you are. 21 | 22 | Package: libnextcloudsync0 23 | Architecture: any 24 | Depends: ${shlibs:Depends}, ${misc:Depends} 25 | Description: Nextcloud sync library 26 | Used by the Nextcloud desktop client as the synchronization engine. 27 | 28 | Package: libnextcloudsync-dev 29 | Architecture: any 30 | Section: contrib/libdevel 31 | Depends: libnextcloudsync0 (=${binary:Version}), ${misc:Depends} 32 | Description: Nextcloud sync library development files 33 | The headers and development library for the Nextcloud sync library. 34 | 35 | Package: nextcloud-client-l10n 36 | Architecture: all 37 | Depends: ${misc:Depends} 38 | Description: Nextcloud client internatialization files 39 | The translation files. 40 | 41 | Package: nextcloud-client-nautilus 42 | Architecture: all 43 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-nautilus, nautilus, ${misc:Depends} 44 | Description: Nautilus plugin for Nextcloud 45 | This package contains a Nautilus plugin to display 46 | synchronization status icons for Nextcloud files. 47 | 48 | Package: nextcloud-client-nemo 49 | Architecture: all 50 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-nemo | nemo-python, nemo, ${misc:Depends} 51 | Description: Nemo plugin for Nextcloud 52 | This package contains a Nemo plugin to display 53 | synchronization status icons for Nextcloud files. 54 | 55 | Package: nextcloud-client-caja 56 | Architecture: all 57 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-caja, caja, ${misc:Depends} 58 | Description: Caja plugin for Nextcloud 59 | This package contains a Caja plugin to display 60 | synchronization status icons for Nextcloud files. 61 | -------------------------------------------------------------------------------- /nextcloudtheme/nextcloudtheme.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) by Roeland Jago Douma 3 | * 4 | * This program is free software; you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation; either version 2 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, but 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 11 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 12 | * for more details. 13 | */ 14 | 15 | #ifndef NEXTCLOUD_THEME_H 16 | #define NEXTCLOUD_THEME_H 17 | 18 | #include "theme.h" 19 | 20 | #include 21 | #include 22 | #include 23 | #include 24 | 25 | #include "version.h" 26 | #include "config.h" 27 | 28 | 29 | namespace OCC { 30 | 31 | /** 32 | * @brief The NextcloudTheme class 33 | * @ingroup libsync 34 | */ 35 | class NextcloudTheme : public Theme 36 | { 37 | 38 | public: 39 | NextcloudTheme() {}; 40 | 41 | QString configFileName() const { 42 | return QLatin1String("nextcloud.cfg"); 43 | } 44 | 45 | QIcon trayFolderIcon( const QString& ) const { 46 | return themeIcon( QLatin1String("Nextcloud-icon") ); 47 | } 48 | QIcon applicationIcon() const { 49 | return themeIcon( QLatin1String("Nextcloud-icon") ); 50 | } 51 | 52 | QString updateCheckUrl() const { 53 | return QLatin1String("https://updates.nextcloud.org/client/"); 54 | } 55 | 56 | QString helpUrl() const { 57 | return QString::fromLatin1("https://docs.nextcloud.com/desktop/2.2/").arg(MIRALL_VERSION_MAJOR).arg(MIRALL_VERSION_MINOR); 58 | } 59 | 60 | #ifndef TOKEN_AUTH_ONLY 61 | QColor wizardHeaderBackgroundColor() const { 62 | return QColor("#0082c9"); 63 | } 64 | 65 | QColor wizardHeaderTitleColor() const { 66 | return QColor("#ffffff"); 67 | } 68 | 69 | QPixmap wizardHeaderLogo() const { 70 | return QPixmap(hidpiFileName(":/client/theme/colored/wizard_logo.png")); 71 | } 72 | #endif 73 | 74 | QString about() const { 75 | QString re; 76 | re = tr("

Version %1. For more information please visit %3.

") 77 | .arg(MIRALL_VERSION_STRING).arg("http://" MIRALL_STRINGIFY(APPLICATION_DOMAIN)) 78 | .arg(MIRALL_STRINGIFY(APPLICATION_DOMAIN)); 79 | 80 | re += trUtf8("

By Klaas Freitag, Daniel Molkentin, Jan-Christoph Borchardt, " 81 | "Olivier Goffart, Markus Götz and others.

"); 82 | 83 | re += tr("

This release was supplied by the Nextcloud GmbH
" 84 | "Copyright 2012-2017 ownCloud GmbH

"); 85 | 86 | re += tr("

Licensed under the GNU General Public License (GPL) Version 2.0.
" 87 | "%2 and the %2 Logo are registered trademarks of %1 in the " 88 | "European Union, other countries, or both.

") 89 | .arg(APPLICATION_VENDOR).arg(APPLICATION_NAME); 90 | 91 | re += gitSHA1(); 92 | return re; 93 | } 94 | 95 | }; 96 | 97 | } 98 | #endif // NEXTCLOUD_THEME_H 99 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian.stable/control: -------------------------------------------------------------------------------- 1 | Source: nextcloud-client 2 | Section: contrib/devel 3 | Priority: optional 4 | Maintainer: István Váradi 5 | Build-Depends: cmake, 6 | debhelper, 7 | cdbs, 8 | dh-python, 9 | extra-cmake-modules (>= 5.16), 10 | kdelibs5-dev, 11 | kio-dev, 12 | libcmocka-dev, 13 | libhttp-dav-perl, 14 | libinotify-dev [kfreebsd-any], 15 | libqt5webkit5-dev, 16 | libsqlite3-dev, 17 | libssl-dev (>> 1.0.0), 18 | zlib1g-dev, 19 | optipng, 20 | pkg-kde-tools, 21 | python-sphinx | python3-sphinx, 22 | python3-all, 23 | qt5keychain-dev, 24 | qtdeclarative5-dev, 25 | qttools5-dev, 26 | qttools5-dev-tools, 27 | xvfb 28 | Standards-Version: 3.9.8 29 | Homepage: https://github.com/nextcloud/client_theming 30 | #Vcs-Git: git://anonscm.debian.org/collab-maint/nextcloud-client.git 31 | #Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/nextcloud-client.git 32 | 33 | Package: nextcloud-client 34 | Architecture: any 35 | Depends: libnextcloudsync0 (=${binary:Version}), ${shlibs:Depends}, ${misc:Depends}, nextcloud-client-l10n 36 | Recommends: libgnome-keyring0 37 | Description: Nextcloud desktop sync client 38 | Use the desktop client to keep your files synchronized 39 | between your Nextcloud server and your desktop. Select 40 | one or more directories on your local machine and always 41 | have access to your latest files wherever you are. 42 | 43 | Package: libnextcloudsync0 44 | Architecture: any 45 | Depends: ${shlibs:Depends}, ${misc:Depends} 46 | Description: Nextcloud sync library 47 | Used by the Nextcloud desktop client as the synchronization engine. 48 | 49 | Package: libnextcloudsync-dev 50 | Architecture: any 51 | Section: contrib/libdevel 52 | Depends: libnextcloudsync0 (=${binary:Version}), ${misc:Depends} 53 | Description: Nextcloud sync library development files 54 | The headers and development library for the Nextcloud sync library. 55 | 56 | Package: nextcloud-client-l10n 57 | Architecture: all 58 | Depends: ${misc:Depends} 59 | Description: Nextcloud client internatialization files 60 | The translation files. 61 | 62 | Package: nextcloud-client-nautilus 63 | Architecture: all 64 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-nautilus, nautilus, ${misc:Depends} 65 | Description: Nautilus plugin for Nextcloud 66 | This package contains a Nautilus plugin to display 67 | synchronization status icons for Nextcloud files. 68 | 69 | Package: nextcloud-client-nemo 70 | Architecture: all 71 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-nemo, nemo, ${misc:Depends} 72 | Description: Nemo plugin for Nextcloud 73 | This package contains a Nemo plugin to display 74 | synchronization status icons for Nextcloud files. 75 | 76 | Package: nextcloud-client-caja 77 | Architecture: all 78 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-caja, caja, ${misc:Depends} 79 | Description: Caja plugin for Nextcloud 80 | This package contains a Caja plugin to display 81 | synchronization status icons for Nextcloud files. 82 | -------------------------------------------------------------------------------- /linux/AppImage/build-appimage.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | export SUDO_UID=${SUDO_UID:-1000} 4 | export SUDO_GID=${SUDO_GID:-1000} 5 | 6 | export APP=Nextcloud 7 | export LOWERAPP=${APP,,} 8 | export ARCH=x86_64 9 | export VERSION=2.3.2-beta 10 | 11 | #Set Qt-5.8 12 | export QT_BASE_DIR=/opt/qt58 13 | export QTDIR=$QT_BASE_DIR 14 | export PATH=$QT_BASE_DIR/bin:$PATH 15 | export LD_LIBRARY_PATH=$QT_BASE_DIR/lib/x86_64-linux-gnu:$QT_BASE_DIR/lib:$LD_LIBRARY_PATH 16 | export PKG_CONFIG_PATH=$QT_BASE_DIR/lib/pkgconfig:$PKG_CONFIG_PATH 17 | 18 | #QtKeyChain 0.8.0 19 | cd 20 | git clone https://github.com/frankosterfeld/qtkeychain.git 21 | cd qtkeychain 22 | git checkout v0.8.0 23 | mkdir build 24 | cd build 25 | cmake -D CMAKE_INSTALL_PREFIX=/app ../ 26 | make -j4 27 | make install 28 | 29 | #Build client 30 | cd 31 | mkdir build-client 32 | cd build-client 33 | cmake -D CMAKE_INSTALL_PREFIX=/app \ 34 | -D NO_SHIBBOLETH=1 \ 35 | -D OEM_THEME_DIR=/home/client/nextcloudtheme \ 36 | -DMIRALL_VERSION_SUFFIX=beta \ 37 | -DMIRALL_VERSION_BUILD=14 \ 38 | /home/client/client 39 | make -j4 40 | make install 41 | 42 | #Create skeleton 43 | mkdir -p $HOME/$APP/$APP.AppDir/usr/ 44 | cd $HOME/$APP/ 45 | 46 | #Fetch appimage functions 47 | wget -q https://github.com/probonopd/AppImages/raw/master/functions.sh -O ./functions.sh 48 | . ./functions.sh 49 | 50 | cd $APP.AppDir 51 | 52 | #clean binary 53 | sed -i -e 's|/app|././|g' /app/bin/nextcloud 54 | 55 | # Copy installed stuff 56 | cp -r /app/* ./usr/ 57 | 58 | get_apprun 59 | 60 | cp /app/share/applications/nextcloud.desktop . 61 | cp /app/share/icons/hicolor/256x256/apps/Nextcloud.png nextcloud.png 62 | 63 | #Copy qt plugins 64 | mkdir -p ./usr/lib/qt5/plugis 65 | cp -r /opt/qt58/plugins ./usr/lib/qt5/plugins 66 | 67 | #Copy dependencies 68 | copy_deps 69 | 70 | delete_blacklisted 71 | 72 | # We don't bundle the developer stuff 73 | rm -rf usr/include || true 74 | rm -rf usr/lib/cmake || true 75 | rm -rf usr/lib/pkgconfig || true 76 | find . -name '*.la' | xargs -i rm {} 77 | strip usr/bin/* usr/lib/* || true 78 | rm -rf app/ || true 79 | # Copy, since libssl must be in sync with libcrypto 80 | cp /lib/x86_64-linux-gnu/libssl.so.1.0.0 usr/lib/ 81 | # No need to add CMake stuff 82 | rm -rf usr/lib/x86_64-linux-gnu/cmake/ 83 | rm -rf usr/mkspecs 84 | # Don't bundle nextcloudcmd as we don't run it anyway 85 | rm usr/bin/nextcloudcmd 86 | # Don't bundle the explorer extentions as we can't do anything with them in the AppImage 87 | rm -rf usr/share/caja-python/ 88 | rm -rf usr/share/nautilus-python/ 89 | rm -rf usr/share/nemo-python/ 90 | 91 | #Move qt5.8 libs to the right location 92 | mv ./opt/qt58/lib/* ./usr/lib/ 93 | rm -rf ./opt/ 94 | 95 | #Move sync exlucde to right location 96 | mv ./usr/etc/Nextcloud/sync-exclude.lst ./usr/bin/ 97 | rm -rf ./usr/etc 98 | 99 | #desktop intergration 100 | get_desktopintegration $LOWERAPP 101 | 102 | #Generate the appimage 103 | cd .. 104 | wget -c https://github.com/probonopd/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage 105 | chmod +x appimagetool-x86_64.AppImage 106 | ./appimagetool-x86_64.AppImage --appimage-extract 107 | 108 | mkdir -p ../out/ 109 | GLIBC_NEEDED=$(glibc_needed) 110 | APPIMAGE_FILENAME=${APP}-${VERSION}-${ARCH}.glibc$GLIBC_NEEDED.AppImage 111 | APPIMAGE_PATH=../out/$APPIMAGE_FILENAME 112 | 113 | ./squashfs-root/AppRun -n -v $APP.AppDir $APPIMAGE_PATH 114 | 115 | #move appimage 116 | chown $SUDO_UID:$SUDO_GID ../out/*.AppImage 117 | mkdir -p /home/client/out 118 | mv ../out/*.AppImage /home/client/out/ 119 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/control: -------------------------------------------------------------------------------- 1 | Source: nextcloud-client 2 | Section: contrib/devel 3 | Priority: optional 4 | Maintainer: István Váradi 5 | Build-Depends: cmake, 6 | debhelper, 7 | cdbs, 8 | dh-python, 9 | extra-cmake-modules (>= 5.16), 10 | kdelibs5-dev, 11 | kio-dev, 12 | libcmocka-dev, 13 | libhttp-dav-perl, 14 | libinotify-dev [kfreebsd-any], 15 | libqt5webkit5-dev, 16 | libsqlite3-dev, 17 | libssl-dev (>> 1.0.0), 18 | zlib1g-dev, 19 | optipng, 20 | pkg-kde-tools, 21 | python-sphinx | python3-sphinx, 22 | python3-all, 23 | qt5keychain-dev, 24 | qtdeclarative5-dev, 25 | qttools5-dev, 26 | qttools5-dev-tools, 27 | xvfb 28 | Standards-Version: 3.9.8 29 | Homepage: https://github.com/nextcloud/client_theming 30 | #Vcs-Git: git://anonscm.debian.org/collab-maint/nextcloud-client.git 31 | #Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/nextcloud-client.git 32 | 33 | Package: nextcloud-client 34 | Architecture: any 35 | Depends: libnextcloudsync0 (=${binary:Version}), ${shlibs:Depends}, ${misc:Depends}, nextcloud-client-l10n 36 | Recommends: libgnome-keyring0 37 | Description: Nextcloud desktop sync client 38 | Use the desktop client to keep your files synchronized 39 | between your Nextcloud server and your desktop. Select 40 | one or more directories on your local machine and always 41 | have access to your latest files wherever you are. 42 | 43 | Package: libnextcloudsync0 44 | Architecture: any 45 | Depends: ${shlibs:Depends}, ${misc:Depends} 46 | Description: Nextcloud sync library 47 | Used by the Nextcloud desktop client as the synchronization engine. 48 | 49 | Package: libnextcloudsync-dev 50 | Architecture: any 51 | Section: contrib/libdevel 52 | Depends: libnextcloudsync0 (=${binary:Version}), ${misc:Depends} 53 | Description: Nextcloud sync library development files 54 | The headers and development library for the Nextcloud sync library. 55 | 56 | Package: nextcloud-client-l10n 57 | Architecture: all 58 | Depends: ${misc:Depends} 59 | Description: Nextcloud client internatialization files 60 | The translation files. 61 | 62 | Package: nextcloud-client-nautilus 63 | Architecture: all 64 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-nautilus, nautilus, ${misc:Depends} 65 | Description: Nautilus plugin for Nextcloud 66 | This package contains a Nautilus plugin to display 67 | synchronization status icons for Nextcloud files. 68 | 69 | Package: nextcloud-client-nemo 70 | Architecture: all 71 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-nemo | nemo-python, nemo, ${misc:Depends} 72 | Description: Nemo plugin for Nextcloud 73 | This package contains a Nemo plugin to display 74 | synchronization status icons for Nextcloud files. 75 | 76 | Package: nextcloud-client-caja 77 | Architecture: all 78 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-caja, caja, ${misc:Depends} 79 | Description: Caja plugin for Nextcloud 80 | This package contains a Caja plugin to display 81 | synchronization status icons for Nextcloud files. 82 | 83 | Package: nextcloud-client-dolphin 84 | Architecture: any 85 | Depends: dolphin (>= 4:15.12.1), libnextcloudsync0 (= ${binary:Version}), nextcloud-client, ${misc:Depends}, ${shlibs:Depends} 86 | Description: Dolphin plugin for Nextcloud 87 | This package contains a Dolphin plugin to display 88 | synchronization status icons for Nextcloud files. 89 | -------------------------------------------------------------------------------- /linux/travis-build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Copyright (C) 2017 Marco Trevisan 3 | 4 | set -xe 5 | 6 | TRAVIS_BUILD_STEP="$1" 7 | DOCKER_BUILDER_NAME='builder' 8 | THIS_PATH=$(dirname $0) 9 | 10 | if [ -z "$TRAVIS_BUILD_STEP" ]; then 11 | echo "No travis build step defined" 12 | exit 0 13 | fi 14 | 15 | function docker_exec() { 16 | docker exec -i $DOCKER_BUILDER_NAME $* 17 | } 18 | 19 | if [ "$BUILD_TYPE" == "appimage" ]; then 20 | if [ "$TRAVIS_BUILD_STEP" == "script" ]; then 21 | $THIS_PATH/appimage-build.sh 22 | fi 23 | elif [ "$BUILD_TYPE" == "snap" ]; then 24 | if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then 25 | if [ "$SNAP_PRIME_ON_PULL_REQUEST" != "true" ]; then 26 | echo '$SNAP_PRIME_ON_PULL_REQUEST is not set to true, thus we skip this now' 27 | exit 0 28 | fi 29 | fi 30 | 31 | if [ "$TRAVIS_BUILD_STEP" == "before_install" ]; then 32 | if [ -n "$ARCH" ]; then DOCKER_IMAGE="$ARCH/$DOCKER_IMAGE"; fi 33 | docker run --name $DOCKER_BUILDER_NAME -e LANG=C.UTF-8 -e TERM \ 34 | -v $PWD:$PWD -w $PWD/$THIS_PATH -td $DOCKER_IMAGE 35 | elif [ "$TRAVIS_BUILD_STEP" == "install" ]; then 36 | docker_exec apt-get update -q 37 | docker_exec apt-get install -y snapcraft 38 | elif [ "$TRAVIS_BUILD_STEP" == "before_script" ]; then 39 | last_tag=$(git describe --tags --abbrev=0 | sed "s/^v\([0-9]\)/\1/") 40 | snap_version=$last_tag 41 | 42 | if [ -z "$TRAVIS_TAG" ]; then 43 | rev_commit=$(git rev-parse --short HEAD) 44 | snap_version=$last_tag+git${rev_commit} 45 | fi 46 | 47 | sed "s,^\(version:\)\([ ]*[0-9.a-z_-+]*\),\1 $snap_version," \ 48 | -i $THIS_PATH/snap/snapcraft.yaml 49 | echo "Snap version is $snap_version" 50 | elif [ "$TRAVIS_BUILD_STEP" == "script" ]; then 51 | snapcraft_action='' 52 | if [ -z "$TRAVIS_TAG" ] || [ "$TRAVIS_PULL_REQUEST" != "false" ]; then 53 | snapcraft_action='prime' 54 | fi 55 | 56 | docker_exec snapcraft $snapcraft_action 57 | elif [ "$TRAVIS_BUILD_STEP" == "after_success" ]; then 58 | if [ -n "$GITHUB_TOKEN" ]; then 59 | exec $0 snap_github_release 60 | else 61 | exec $0 snap_transfer_deploy 62 | fi 63 | elif [ "$TRAVIS_BUILD_STEP" == "snap_store_deploy" ]; then 64 | sudo mkdir -p $THIS_PATH/.snapcraft -m 777 65 | set +x 66 | openssl aes-256-cbc -K $SNAPCRAFT_CONFIG_KEY \ 67 | -iv $SNAPCRAFT_CONFIG_IV \ 68 | -in $THIS_PATH/travis_snapcraft.cfg \ 69 | -out $THIS_PATH/.snapcraft/snapcraft.cfg -d 70 | set -x 71 | 72 | ls $THIS_PATH/*.snap &> /dev/null || docker_exec snapcraft 73 | snap=$(find "$THIS_PATH" -name '*.snap' -printf '%P' -quit) 74 | docker_exec snapcraft push $snap --release edge 75 | elif [ "$TRAVIS_BUILD_STEP" == "snap_github_release" ]; then 76 | ls $THIS_PATH/*.snap &> /dev/null || docker_exec snapcraft 77 | snap=$(ls $THIS_PATH/*.snap -1 | head -n1) 78 | wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh 79 | chmod +x upload.sh 80 | exec ./upload.sh "$snap" 81 | elif [ "$TRAVIS_BUILD_STEP" == "snap_transfer_deploy" ]; then 82 | ls $THIS_PATH/*.snap &> /dev/null || docker_exec snapcraft 83 | snap=$(ls $THIS_PATH/*.snap -1 | head -n1) 84 | curl --progress-bar --upload-file "$snap" "https://transfer.sh/$(basename $snap)" 85 | fi 86 | elif [ "$BUILD_TYPE" == "debian" ]; then 87 | linux/debian/travis-build.sh "$@" 88 | elif [ "$BUILD_TYPE" == "win" ]; then 89 | win/travis-build.sh "$@" 90 | else 91 | echo 'No $BUILD_TYPE defined' 92 | exit 1 93 | fi 94 | -------------------------------------------------------------------------------- /linux/debian/scripts/git2changelog.py: -------------------------------------------------------------------------------- 1 | #!//usr/bin/env python2.7 2 | 3 | import subprocess 4 | import re 5 | import sys 6 | import datetime 7 | import os 8 | import ConfigParser 9 | 10 | distribution="yakkety" 11 | 12 | versionTagRE = re.compile("^v([0-9]+((\.[0-9]+)+))(-(.+))?$") 13 | 14 | def processVersionTag(tag): 15 | m = versionTagRE.match(tag) 16 | if m: 17 | return (m.group(1), "release" if m.group(4) is None else "beta") 18 | else: 19 | return None 20 | 21 | def collectEntries(baseCommit, baseVersion, kind): 22 | scriptdir = os.path.dirname(__file__) 23 | configPath = os.path.join(scriptdir, "git2changelog.cfg") 24 | 25 | newVersionCommit = None 26 | newVersionTag = None 27 | newVersionOrigTag = None 28 | 29 | if os.path.exists(configPath): 30 | config = ConfigParser.SafeConfigParser() 31 | config.read(configPath) 32 | if config.has_section("versionhack"): 33 | if config.has_option("versionhack", "commit") and \ 34 | config.has_option("versionhack", "tag"): 35 | newVersionCommit = config.get("versionhack", "commit") 36 | newVersionTag = config.get("versionhack", "tag") 37 | 38 | entries = [] 39 | 40 | args = ["git", "log", 41 | "--format=%h%x09%an%x09%ae%x09%aD%x09%ad%x09%s", 42 | "--date=unix", "--author-date-order", "--reverse"] 43 | try: 44 | output = subprocess.check_output(args + [baseCommit + ".."]) 45 | except: 46 | output = subprocess.check_output(args) 47 | 48 | 49 | lastVersionTag = None 50 | for line in output.splitlines(): 51 | (commit, name, email, date, revdate, subject) = line.split("\t") 52 | revdate = datetime.datetime.utcfromtimestamp(long(revdate)).strftime("%Y%m%d.%H%M%S") 53 | 54 | if commit==newVersionCommit: 55 | result = processVersionTag(newVersionTag) 56 | if result: 57 | newVersionOrigTag = lastVersionTag 58 | (baseVersion, kind) = result 59 | 60 | for tag in subprocess.check_output(["git", "tag", 61 | "--points-at", 62 | commit]).splitlines(): 63 | if tag!=newVersionOrigTag: 64 | result = processVersionTag(tag) 65 | if result: 66 | lastVersionTag = tag 67 | (b, k) = result 68 | if b>baseVersion or (k=="release" and kind=="beta"): 69 | (baseVersion, kind) = result 70 | 71 | entries.append((commit, name, email, date, revdate, subject, 72 | baseVersion, kind)) 73 | 74 | entries.reverse() 75 | 76 | return entries 77 | 78 | def genChangeLogEntries(f, entries, distribution): 79 | latestBaseVersion = None 80 | latestKind = None 81 | for (commit, name, email, date, revdate, subject, baseVersion, kind) in entries: 82 | if latestBaseVersion is None: 83 | latestBaseVersion = baseVersion 84 | latestKind = kind 85 | upstreamVersion = baseVersion + "-" + revdate 86 | if distribution=="stable": 87 | version = upstreamVersion 88 | else: 89 | version = upstreamVersion + "~" + distribution + "1" 90 | print >> f, "nextcloud-client (%s) %s; urgency=medium" % (version, distribution) 91 | print >> f 92 | print >> f, " * " + subject 93 | print >> f 94 | print >> f, " -- %s <%s> %s" % (name, email, date) 95 | print >> f 96 | return (latestBaseVersion, latestKind) 97 | 98 | if __name__ == "__main__": 99 | 100 | distribution = sys.argv[2] 101 | 102 | #entries = collectEntries("8aade24147b5313f8241a8b42331442b7f40eef9", "2.2.4", "release") 103 | entries = collectEntries("dcac71898e7fda7ae4b149e2db25c178c90e7172", "2.3.1", "release") 104 | 105 | 106 | with open(sys.argv[1], "wt") as f: 107 | (baseVersion, kind) = genChangeLogEntries(f, entries, distribution) 108 | print baseVersion, kind 109 | -------------------------------------------------------------------------------- /nextcloudtheme/theme.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | theme/colored/Nextcloud-icon-512.png 4 | theme/colored/Nextcloud-icon-256.png 5 | theme/colored/Nextcloud-icon-128.png 6 | theme/colored/Nextcloud-icon-22.png 7 | theme/colored/Nextcloud-icon-32.png 8 | theme/colored/Nextcloud-icon-48.png 9 | theme/colored/Nextcloud-icon-64.png 10 | theme/colored/state-error-32.png 11 | theme/colored/state-error-64.png 12 | theme/colored/state-error-128.png 13 | theme/colored/state-error-256.png 14 | theme/colored/state-information-32.png 15 | theme/colored/state-information-64.png 16 | theme/colored/state-information-128.png 17 | theme/colored/state-information-256.png 18 | theme/colored/state-offline-32.png 19 | theme/colored/state-offline-64.png 20 | theme/colored/state-offline-128.png 21 | theme/colored/state-offline-256.png 22 | theme/colored/state-ok-32.png 23 | theme/colored/state-ok-64.png 24 | theme/colored/state-ok-128.png 25 | theme/colored/state-ok-256.png 26 | theme/colored/state-pause-32.png 27 | theme/colored/state-pause-64.png 28 | theme/colored/state-pause-128.png 29 | theme/colored/state-pause-256.png 30 | theme/colored/state-sync-32.png 31 | theme/colored/state-sync-64.png 32 | theme/colored/state-sync-128.png 33 | theme/colored/state-sync-256.png 34 | theme/colored/wizard_logo.png 35 | theme/colored/wizard_logo@2x.png 36 | theme/white/state-error-32.png 37 | theme/white/state-error-64.png 38 | theme/white/state-error-128.png 39 | theme/white/state-error-256.png 40 | theme/white/state-information-32.png 41 | theme/white/state-information-64.png 42 | theme/white/state-information-128.png 43 | theme/white/state-information-256.png 44 | theme/white/state-offline-32.png 45 | theme/white/state-offline-64.png 46 | theme/white/state-offline-128.png 47 | theme/white/state-offline-256.png 48 | theme/white/state-ok-32.png 49 | theme/white/state-ok-64.png 50 | theme/white/state-ok-128.png 51 | theme/white/state-ok-256.png 52 | theme/white/state-pause-32.png 53 | theme/white/state-pause-64.png 54 | theme/white/state-pause-128.png 55 | theme/white/state-pause-256.png 56 | theme/white/state-sync-32.png 57 | theme/white/state-sync-64.png 58 | theme/white/state-sync-128.png 59 | theme/white/state-sync-256.png 60 | theme/black/state-error-32.png 61 | theme/black/state-error-64.png 62 | theme/black/state-error-128.png 63 | theme/black/state-error-256.png 64 | theme/black/state-information-32.png 65 | theme/black/state-information-64.png 66 | theme/black/state-information-128.png 67 | theme/black/state-information-256.png 68 | theme/black/state-offline-32.png 69 | theme/black/state-offline-64.png 70 | theme/black/state-offline-128.png 71 | theme/black/state-offline-256.png 72 | theme/black/state-ok-32.png 73 | theme/black/state-ok-64.png 74 | theme/black/state-ok-128.png 75 | theme/black/state-ok-256.png 76 | theme/black/state-pause-32.png 77 | theme/black/state-pause-64.png 78 | theme/black/state-pause-128.png 79 | theme/black/state-pause-256.png 80 | theme/black/state-sync-32.png 81 | theme/black/state-sync-64.png 82 | theme/black/state-sync-128.png 83 | theme/black/state-sync-256.png 84 | 85 | 86 | -------------------------------------------------------------------------------- /linux/debian/travis-build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -xe 4 | shopt -s extglob 5 | 6 | TRAVIS_BUILD_STEP="$1" 7 | 8 | PPA=sppa:nextcloud-devs/client 9 | PPA_BETA=sppa:nextcloud-devs/client-beta 10 | 11 | OBS_PROJECT=home:ivaradi 12 | OBS_PROJECT_BETA=home:ivaradi:beta 13 | OBS_PACKAGE=nextcloud-client 14 | 15 | if [ "$TRAVIS_BUILD_STEP" == "install" ]; then 16 | sudo apt-get update -q 17 | sudo apt-get install -y devscripts cdbs osc python-paramiko 18 | 19 | if test "$encrypted_585e03da75ed_key" -a "$encrypted_585e03da75ed_iv"; then 20 | openssl aes-256-cbc -K $encrypted_585e03da75ed_key -iv $encrypted_585e03da75ed_iv -in linux/debian/signing-key.txt.enc -d | gpg --import 21 | echo "DEBUILD_DPKG_BUILDPACKAGE_OPTS='-k7D14AA7B'" >> ~/.devscripts 22 | 23 | openssl aes-256-cbc -K $encrypted_585e03da75ed_key -iv $encrypted_585e03da75ed_iv -in linux/debian/ssh-key.txt.enc -d > ~/.ssh/id_rsa 24 | chmod 0400 ~/.ssh/id_rsa 25 | 26 | openssl aes-256-cbc -K $encrypted_585e03da75ed_key -iv $encrypted_585e03da75ed_iv -in linux/debian/oscrc.enc -out ~/.oscrc -d 27 | elif test "$encrypted_8da7a4416c7a_key" -a "$encrypted_8da7a4416c7a_iv"; then 28 | openssl aes-256-cbc -K $encrypted_8da7a4416c7a_key -iv $encrypted_8da7a4416c7a_iv -in linux/debian/oscrc.enc -out ~/.oscrc -d 29 | PPA=sppa:ivaradi/nextcloud-client-exp 30 | fi 31 | 32 | elif [ "$TRAVIS_BUILD_STEP" == "script" ]; then 33 | #pwd 34 | #ls -al 35 | #git log 36 | read basever kind <<<$(linux/debian/scripts/git2changelog.py /tmp/tmpchangelog stable) 37 | 38 | cd .. 39 | 40 | echo "$kind" > kind 41 | 42 | if test "$kind" = "beta"; then 43 | repo=client-beta 44 | else 45 | repo=client 46 | fi 47 | 48 | origsourceopt="" 49 | #if ! wget http://ppa.launchpad.net/ivaradi/nextcloud-client-exp/ubuntu/pool/main/n/nextcloud-client/nextcloud-client_${basever}.orig.tar.bz2; then 50 | if ! wget http://ppa.launchpad.net/nextcloud-devs/${repo}/ubuntu/pool/main/n/nextcloud-client/nextcloud-client_${basever}.orig.tar.bz2; then 51 | mv client_theming nextcloud-client_${basever} 52 | tar cjf nextcloud-client_${basever}.orig.tar.bz2 --exclude .git nextcloud-client_${basever} 53 | mv nextcloud-client_${basever} client_theming 54 | origsourceopt="-sa" 55 | fi 56 | 57 | for distribution in xenial zesty artful bionic stable; do 58 | rm -rf nextcloud-client_${basever} 59 | cp -a client_theming nextcloud-client_${basever} 60 | 61 | cd nextcloud-client_${basever} 62 | 63 | cp -a linux/debian/nextcloud-client/debian . 64 | if test -d linux/debian/nextcloud-client/debian.${distribution}; then 65 | tar cf - -C linux/debian/nextcloud-client/debian.${distribution} . | tar xf - -C debian 66 | fi 67 | 68 | linux/debian/scripts/git2changelog.py /tmp/tmpchangelog ${distribution} 69 | cp /tmp/tmpchangelog debian/changelog 70 | if test -f linux/debian/nextcloud-client/debian.${distribution}/changelog; then 71 | cat linux/debian/nextcloud-client/debian.${distribution}/changelog >> debian/changelog 72 | else 73 | cat linux/debian/nextcloud-client/debian/changelog >> debian/changelog 74 | fi 75 | 76 | EDITOR=true dpkg-source --commit . local-changes 77 | 78 | if test "$encrypted_585e03da75ed_key" -a "$encrypted_585e03da75ed_iv"; then 79 | debuild -S ${origsourceopt} 80 | else 81 | debuild -S ${origsourceopt} -us -uc 82 | fi 83 | 84 | cd .. 85 | done 86 | 87 | elif [ "$TRAVIS_BUILD_STEP" == "ppa_deploy" ]; then 88 | cd .. 89 | 90 | kind=`cat kind` 91 | 92 | echo "kind: $kind" 93 | 94 | if test "$kind" = "beta"; then 95 | PPA=$PPA_BETA 96 | OBS_PROJECT=$OBS_PROJECT_BETA 97 | fi 98 | OBS_SUBDIR="${OBS_PROJECT}/${OBS_PACKAGE}" 99 | 100 | if test "$encrypted_585e03da75ed_key" -a "$encrypted_585e03da75ed_iv"; then 101 | ssh-keyscan ppa.launchpad.net >> ~/.ssh/known_hosts 102 | 103 | cat > ~/.dput.cf < /dev/null 113 | done 114 | fi 115 | 116 | mkdir osc 117 | cd osc 118 | osc co ${OBS_PROJECT} ${OBS_PACKAGE} 119 | if test "$(ls ${OBS_SUBDIR})"; then 120 | osc delete ${OBS_SUBDIR}/* 121 | fi 122 | cp ../nextcloud-client*.orig.tar.* ${OBS_SUBDIR}/ 123 | cp ../nextcloud-client_*[0-9.][0-9].dsc ${OBS_SUBDIR}/ 124 | cp ../nextcloud-client_*[0-9.][0-9].debian.tar* ${OBS_SUBDIR}/ 125 | cp ../nextcloud-client_*[0-9.][0-9]_source.changes ${OBS_SUBDIR}/ 126 | osc add ${OBS_SUBDIR}/* 127 | 128 | cd ${OBS_SUBDIR} 129 | osc commit -m "Travis update" 130 | fi 131 | -------------------------------------------------------------------------------- /linux/appimage-build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ######################################################################## 4 | # Build as per the instructions, but install in /app rather than /usr 5 | ######################################################################## 6 | 7 | sudo sh -c "echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/Ubuntu_14.04/ /' >> /etc/apt/sources.list.d/owncloud-client.list" 8 | sudo sh -c "echo 'deb-src http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/Ubuntu_14.04/ /' >> /etc/apt/sources.list.d/owncloud-client.list" 9 | wget http://download.opensuse.org/repositories/isv:ownCloud:desktop/Ubuntu_14.04/Release.key 10 | sudo apt-key add - < Release.key 11 | sudo apt-get update 12 | sudo apt-get -y build-dep owncloud-client 13 | 14 | git submodule update --init --recursive 15 | mkdir build-linux 16 | cd build-linux 17 | cmake -D CMAKE_INSTALL_PREFIX=/usr -D OEM_THEME_DIR=`pwd`/../nextcloudtheme ../client 18 | make 19 | find . 20 | sudo make install DESTDIR=/app 21 | find /app 22 | 23 | ######################################################################## 24 | # Package the binaries built on Travis-CI as an AppImage 25 | # By Simon Peter 2016 26 | # For more information, see http://appimage.org/ 27 | ######################################################################## 28 | 29 | export ARCH=$(arch) 30 | 31 | APP=Nextcloud 32 | LOWERAPP=${APP,,} 33 | 34 | GIT_REV=$(git rev-parse --short HEAD) 35 | echo $GIT_REV 36 | 37 | mkdir -p $HOME/$APP/$APP.AppDir/usr/ 38 | 39 | cd $HOME/$APP/ 40 | 41 | wget -q https://github.com/probonopd/AppImages/raw/master/functions.sh -O ./functions.sh 42 | . ./functions.sh 43 | 44 | cd $APP.AppDir 45 | 46 | sudo chown -R $USER /app/ 47 | sed -i -e 's|/app|././|g' /app/bin/nextcloud 48 | 49 | cp -r /app/* ./usr/ 50 | 51 | ######################################################################## 52 | # Copy desktop and icon file to AppDir for AppRun to pick them up 53 | ######################################################################## 54 | 55 | get_apprun 56 | 57 | cp /app/share/applications/nextcloud.desktop . 58 | cp /app/share/icons/hicolor/256x256/apps/Nextcloud.png nextcloud.png 59 | 60 | ######################################################################## 61 | # Copy in the dependencies that cannot be assumed to be available 62 | # on all target systems 63 | ######################################################################## 64 | 65 | # FIXME: How to find out which subset of plugins is really needed? 66 | mkdir -p ./usr/lib/qt4/plugins/ 67 | cp -r /usr/lib/x86_64-linux-gnu/qt4/plugins/* ./usr/lib/qt4/plugins/ 68 | 69 | copy_deps 70 | 71 | ######################################################################## 72 | # Delete stuff that should not go into the AppImage 73 | ######################################################################## 74 | 75 | # Delete dangerous libraries; see 76 | # https://github.com/probonopd/AppImages/blob/master/excludelist 77 | delete_blacklisted 78 | 79 | # We don't bundle the developer stuff 80 | rm -rf usr/include || true 81 | rm -rf usr/lib/cmake || true 82 | rm -rf usr/lib/pkgconfig || true 83 | find . -name '*.la' | xargs -i rm {} 84 | strip usr/bin/* usr/lib/* || true 85 | rm -rf app/ || true 86 | # Copy, since libssl must be in sync with libcrypto 87 | cp /lib/x86_64-linux-gnu/libssl.so.1.0.0 usr/lib/ 88 | 89 | ######################################################################## 90 | # desktopintegration asks the user on first run to install a menu item 91 | ######################################################################## 92 | 93 | get_desktopintegration $LOWERAPP 94 | 95 | ######################################################################## 96 | # Determine the version of the app 97 | ######################################################################## 98 | 99 | VERSION=git.$GIT_REV 100 | 101 | ######################################################################## 102 | # Patch away absolute paths; it would be nice if they were relative 103 | ######################################################################## 104 | 105 | # patch_usr 106 | # Possibly need to patch additional hardcoded paths away, replace 107 | # "/usr" with "././" which means "usr/ in the AppDir" 108 | 109 | ######################################################################## 110 | # AppDir complete 111 | # Now packaging it as an AppImage 112 | ######################################################################## 113 | 114 | cd .. # Go out of AppImage 115 | 116 | mkdir -p ../out/ 117 | generate_type2_appimage 118 | 119 | ######################################################################## 120 | # Upload the AppDir 121 | ######################################################################## 122 | 123 | if [ -n "$GITHUB_TOKEN" ]; then 124 | wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh 125 | bash upload.sh ../out/* 126 | else 127 | transfer ../out/* 128 | echo "AppImage has been uploaded to the URL above; use something like GitHub Releases for permanent storage" 129 | fi 130 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Nextcloud desktop client 2 | [![Build Status](https://travis-ci.org/nextcloud/client_theming.svg?branch=master)](https://travis-ci.org/nextcloud/client_theming) 3 | 4 | **Theme and build instructions for the [Nextcloud](https://nextcloud.com) desktop client.** 5 | 6 | Based on https://github.com/owncloud/client/blob/master/doc/building.rst 7 | 8 | ## Installing on Ubuntu 9 | ```bash 10 | sudo add-apt-repository ppa:nextcloud-devs/client 11 | sudo apt-get update 12 | sudo apt-get install nextcloud-client 13 | ``` 14 | Launchpad: https://launchpad.net/~nextcloud-devs/+archive/ubuntu/client 15 | 16 | ### Beta packages 17 | 18 | ```bash 19 | sudo add-apt-repository ppa:nextcloud-devs/client-beta 20 | sudo apt-get update 21 | sudo apt-get install nextcloud-client 22 | ``` 23 | Launchpad: https://launchpad.net/~nextcloud-devs/+archive/ubuntu/client-beta 24 | 25 | If you always want the latest versions (including the betas), add both 26 | repositories. If you want only the stable version, add the non-beta 27 | repository only. 28 | 29 | ## Installing on Debian 30 | 31 | You need to add to `sources.list` or a separate source list file one of the source lines below corresponding to your Debian version: 32 | 33 | ``` 34 | deb http://download.opensuse.org/repositories/home:/ivaradi/Debian_9.0_update/ / 35 | deb http://download.opensuse.org/repositories/home:/ivaradi/Debian_9.0/ / 36 | deb http://download.opensuse.org/repositories/home:/ivaradi/Debian_8.0/ / 37 | deb http://download.opensuse.org/repositories/home:/ivaradi/Debian_7.0/ / 38 | ``` 39 | 40 | Before installing, you also need to add the respository's key to the list of trusted APT keys with a command line: 41 | 42 | ``` 43 | wget -q -O - /Release.key | apt-key add 44 | ``` 45 | 46 | For example (as root): 47 | 48 | ```bash 49 | echo 'deb http://download.opensuse.org/repositories/home:/ivaradi/Debian_9.0/ /' > /etc/apt/sources.list.d/nextcloud-client.list 50 | wget -q -O - http://download.opensuse.org/repositories/home:/ivaradi/Debian_9.0/Release.key | apt-key add - 51 | apt-get update 52 | apt-get install nextcloud-client 53 | ``` 54 | 55 | ### Beta packages 56 | 57 | Beta packages are also available: 58 | 59 | ``` 60 | deb http://download.opensuse.org/repositories/home:/ivaradi:/beta/Debian_9.0_update/ / 61 | deb http://download.opensuse.org/repositories/home:/ivaradi:/beta/Debian_9.0/ / 62 | deb http://download.opensuse.org/repositories/home:/ivaradi:/beta/Debian_8.0/ / 63 | deb http://download.opensuse.org/repositories/home:/ivaradi:/beta/Debian_7.0/ / 64 | ``` 65 | 66 | If you always want the latest versions (including the betas), add both the normal and the beta repositories. If you want only the stable version, add the non-beta repository only. 67 | 68 | ## Snaps 69 | 70 | ### Building the snap 71 | ```bash 72 | cd linux 73 | snapcraft 74 | ``` 75 | 76 | ### Installing via Snap package ([supported distributions](https://snapcraft.io/docs/core/install)) 77 | Download the [snap package](https://github.com/nextcloud/client_theming/releases/tag/continuous) for your architecture 78 | ```bash 79 | sudo snap install --dangerous nextcloud-client_*.snap 80 | ``` 81 | Installing a snap is very quick. Snaps are secure. They are isolated with all of their dependencies. Snaps also auto update when a new version is released. 82 | The snap is confined, thus the synced folders will be by default in `~/snap//`, the client can access to the actual home, but not to the `.dotted` files, use symlinks if you need to. 83 | 84 | ## Building on Linux 85 | 86 | ### Getting repository ready 87 | 88 | Run: 89 | ```bash 90 | git submodule update --init --recursive 91 | ``` 92 | 93 | Run: 94 | 95 | ```bash 96 | # If building on Ubuntu 97 | sudo apt-get install libsqlite3-dev qt5-default libqt5webkit5-dev qt5keychain-dev libssl-dev 98 | 99 | # All distributions 100 | mkdir build-linux 101 | cd build-linux 102 | cmake -D OEM_THEME_DIR=$(realpath ../nextcloudtheme) ../client 103 | make 104 | sudo make install 105 | ``` 106 | 107 | ## Building on Debian 108 | 109 | Install required packages. 110 | 111 | sudo apt-get install git libsqlite3-dev qt5-default libqt5webkit5-dev qt5keychain-dev cmake build-essential libowncloudsync0 112 | 113 | If you are using Debian 9 install libssl1.0-dev 114 | 115 | sudo apt-get install libssl1.0-dev 116 | 117 | If you are using Debian 8 install libssl-dev 118 | 119 | sudo apt-get install libssl-dev 120 | 121 | Then: 122 | 123 | ```bash 124 | git clone https://github.com/nextcloud/client_theming.git 125 | cd client_theming 126 | git submodule update --init --recursive 127 | mkdir build-linux 128 | cd build-linux 129 | cmake -D OEM_THEME_DIR=$(realpath ../nextcloudtheme) -DCMAKE_INSTALL_PREFIX=/usr ../client 130 | make 131 | sudo make install 132 | ``` 133 | 134 | ## Building on OSX 135 | 136 | *Attention:* When building make sure to use an old Core 2 Duo build machine running OS X 10.10. Otherwise the resulting binary won't work properly for users of an older device. Have at least 180 GB free disk space when compiling Qt. Make sure your user is named "builder". 137 | 138 | ### Install dependencies 139 | 140 | 1. Install [HomeBrew](http://brew.sh/) 141 | 2. `brew install openssl wget cmake` 142 | 3. `wget https://github.com/sparkle-project/Sparkle/releases/download/1.14.0/Sparkle-1.14.0.tar.bz2` 143 | 4. `tar -xf Sparkle-1.14.0.tar.bz2` 144 | 5. `mv Sparkle.framework ~/Library/Frameworks/` 145 | 6. Install XCode 7.2.1 146 | 7. sudo xcode-select -s /Applications/Xcode.app/Contents/Developer 147 | 8. Generate Sparkle keys: `./bin/generate_keys`. Keep those, if you loose it you won't be able to deploy updates anymore. 148 | 9. Store the keys in `osx/`. Make sure to not make the `dsa_priv.pem` publicly available. 149 | 10. Install http://s.sudre.free.fr/Software/Packages/about.html 150 | 151 | ### Compile Qt 152 | 153 | Download and compile Qt 5.9.2 source. Unfortunately the Qt patches don't apply anymore, 154 | so we just ignore them for the time being. 155 | 156 | ```bash 157 | cd /tmp/ 158 | wget http://download.qt.io/official_releases/qt/5.9/5.9.2/single/qt-everywhere-opensource-src-5.9.2.tar.xz 159 | tar -xjf qt-everywhere-opensource-src-5.9.2.tar.xz 160 | cd /tmp/qt-everywhere-opensource-src-5.9.2 161 | ./configure -sdk macosx10.11 -openssl -openssl-linked -I /usr/local/opt/openssl/include/ -L /usr/local/opt/openssl/lib/ -nomake examples 162 | make -j2 163 | sudo make -j1 install 164 | ``` 165 | 166 | ### Build the client 167 | 168 | ```bash 169 | sh osx/build.sh 170 | ``` 171 | 172 | ## Building on Windows 173 | 174 | ### Building the docker image 175 | 176 | The docker image contains the toolchain to build the windows binary. 177 | Build it: 178 | 179 | ```bash 180 | docker build -t nextcloud-client-win32: client/admin/win/docker/ 181 | ``` 182 | 183 | _Note: if you encounter an error at this step that the MinGW repository was not found, apply the patch at_ `win/opensuse-mingw-repo-location.patch` _and try again:_ 184 | 185 | ```bash 186 | cd client 187 | patch -p1 < ../win/opensuse-mingw-repo-location.patch 188 | cd .. 189 | ``` 190 | 191 | ### Building the binary 192 | 193 | ```bash 194 | docker run -v "$PWD:/home/user/" nextcloud-client-win32:2.2.2 /home/user/win/build.sh $(id -u) 195 | ``` 196 | 197 | ## Building a release 198 | 199 | When we build releases there are two additional cmake parameters to consider: 200 | 201 | * `-DMIRALL_VERSION_SUFFIX=`: for a generic suffix name such as `beta` or `rc1` 202 | * `-DMIRALL_VERSION_BUILD=`: an internal build number. Should be strictly increasing. This allows update detection from `rc` to `final` 203 | 204 | Note that this had mostly usage on Windows and OS X. On Linux the package manager will take care of all this. 205 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/patches/fix-application-icon-name.patch: -------------------------------------------------------------------------------- 1 | Description: 2 | TODO: Put a short summary on the line above and replace this paragraph 3 | with a longer explanation of this change. Complete the meta-information 4 | with other relevant fields (see below for details). To make it easier, the 5 | information below has been extracted from the changelog. Adjust it or drop 6 | it. 7 | . 8 | nextcloud-client (2.2.4-1) yakkety; urgency=medium 9 | . 10 | * Initial release. 11 | Author: István Váradi 12 | 13 | --- 14 | The information above should follow the Patch Tagging Guidelines, please 15 | checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here 16 | are templates for supplementary fields that you might want to add: 17 | 18 | Origin: , 19 | Bug: 20 | Bug-Debian: https://bugs.debian.org/ 21 | Bug-Ubuntu: https://launchpad.net/bugs/ 22 | Forwarded: 23 | Reviewed-By: 24 | Last-Update: 2016-12-20 25 | 26 | --- nextcloud-client-2.3.3.orig/client/mirall.desktop.in 27 | +++ nextcloud-client-2.3.3/client/mirall.desktop.in 28 | @@ -5,7 +5,7 @@ 29 | Name=@APPLICATION_NAME@ desktop sync client 30 | Comment=@APPLICATION_NAME@ desktop synchronization client 31 | GenericName=Folder Sync 32 | -Icon=@APPLICATION_EXECUTABLE@ 33 | +Icon=@APPLICATION_SHORTNAME@ 34 | Keywords=@APPLICATION_NAME@;syncing;file;sharing; 35 | X-GNOME-Autostart-Delay=3 36 | 37 | @@ -184,177 +184,177 @@ 38 | Comment[oc]=@APPLICATION_NAME@ sincronizacion del client 39 | GenericName[oc]=Dorsièr de Sincronizacion 40 | Name[oc]=@APPLICATION_NAME@ sincronizacion del client 41 | -Icon[oc]=@APPLICATION_EXECUTABLE@ 42 | +Icon[oc]=@APPLICATION_SHORTNAME@ 43 | Comment[ar]=@APPLICATION_NAME@ زبون مزامنة مكتبي 44 | GenericName[ar]=مزامنة المجلد 45 | Name[ar]=@APPLICATION_NAME@ زبون مزامنة مكتبي 46 | -Icon[ar]=@APPLICATION_EXECUTABLE@ 47 | +Icon[ar]=@APPLICATION_SHORTNAME@ 48 | Comment[bg_BG]=@APPLICATION_NAME@ клиент за десктоп синхронизация 49 | GenericName[bg_BG]=Синхронизиране на папката 50 | Name[bg_BG]=@APPLICATION_NAME@ клиент десктоп синхронизация 51 | -Icon[bg_BG]=@APPLICATION_EXECUTABLE@ 52 | +Icon[bg_BG]=@APPLICATION_SHORTNAME@ 53 | Comment[ca]=Client de sincronització d'escriptori @APPLICATION_NAME@ 54 | GenericName[ca]=Sincronització de carpetes 55 | Name[ca]=Client de sincronització d'escriptori @APPLICATION_NAME@ 56 | -Icon[ca]=@APPLICATION_EXECUTABLE@ 57 | +Icon[ca]=@APPLICATION_SHORTNAME@ 58 | Comment[da]=@APPLICATION_NAME@ skrivebordsklient til synkronisering 59 | GenericName[da]=Mappesynkronisering 60 | Name[da]=@APPLICATION_NAME@ skrivebordsklient til synk 61 | -Icon[da]=@APPLICATION_EXECUTABLE@ 62 | +Icon[da]=@APPLICATION_SHORTNAME@ 63 | Comment[de]=@APPLICATION_NAME@ Desktop-Synchronisationsclient 64 | GenericName[de]=Ordner-Synchronisation 65 | Name[de]=@APPLICATION_NAME@ Desktop-Synchronisationsclient 66 | -Icon[de]=@APPLICATION_EXECUTABLE@ 67 | +Icon[de]=@APPLICATION_SHORTNAME@ 68 | Comment[ja_JP]=@APPLICATION_NAME@ デスクトップ同期クライアント 69 | GenericName[ja_JP]=フォルダー同期 70 | Name[ja_JP]=@APPLICATION_NAME@ デスクトップ同期クライアント 71 | -Icon[ja_JP]=@APPLICATION_EXECUTABLE@ 72 | +Icon[ja_JP]=@APPLICATION_SHORTNAME@ 73 | Comment[el]=@ΟΝΟΜΑ_ΕΦΑΡΜΟΓΗΣ@ συγχρονισμός επιφάνειας εργασίας πελάτη 74 | GenericName[el]=Συγχρονισμός φακέλου 75 | Name[el]=@ΟΝΟΜΑ_ΕΦΑΡΜΟΓΗΣ@ συγχρονισμός επιφάνειας εργασίας πελάτη 76 | -Icon[el]=@APPLICATION_EXECUTABLE@ 77 | +Icon[el]=@APPLICATION_SHORTNAME@ 78 | Comment[en_GB]=@APPLICATION_NAME@ desktop synchronisation client 79 | GenericName[en_GB]=Folder Sync 80 | Name[en_GB]=@APPLICATION_NAME@ desktop sync client 81 | -Icon[en_GB]=@APPLICATION_EXECUTABLE@ 82 | +Icon[en_GB]=@APPLICATION_SHORTNAME@ 83 | Comment[es]=@APPLICATION_NAME@ cliente de sincronización de escritorio 84 | GenericName[es]=Sincronización de carpeta 85 | Name[es]=@APPLICATION_NAME@ cliente de sincronización de escritorio 86 | -Icon[es]=@APPLICATION_EXECUTABLE@ 87 | +Icon[es]=@APPLICATION_SHORTNAME@ 88 | Comment[de_DE]=@APPLICATION_NAME@ Desktop-Synchronisationsclient 89 | GenericName[de_DE]=Ordner-Synchronisation 90 | Name[de_DE]=@APPLICATION_NAME@ Desktop-Synchronisationsclient 91 | -Icon[de_DE]=@APPLICATION_EXECUTABLE@ 92 | +Icon[de_DE]=@APPLICATION_SHORTNAME@ 93 | Comment[eu]=@APPLICATION_NAME@ mahaigaineko sinkronizazio bezeroa 94 | GenericName[eu]=Karpetaren sinkronizazioa 95 | Name[eu]=@APPLICATION_NAME@ mahaigaineko sinkronizazio bezeroa 96 | -Icon[eu]=@APPLICATION_EXECUTABLE@ 97 | +Icon[eu]=@APPLICATION_SHORTNAME@ 98 | GenericName[fa]=همسان سازی پوشه‌ها 99 | Name[fa]=@APPLICATION_EXECUTABLE@ نسخه‌ی همسان سازی مشتری 100 | -Icon[fa]=@APPLICATION_EXECUTABLE@ 101 | +Icon[fa]=@APPLICATION_SHORTNAME@ 102 | Comment[fr]=Synchronisez vos dossiers avec un serveur @APPLICATION_NAME@ 103 | GenericName[fr]=Synchronisation de dossier 104 | Name[fr]=Client de synchronisation @APPLICATION_NAME@ 105 | -Icon[fr]=@APPLICATION_EXECUTABLE@ 106 | +Icon[fr]=@APPLICATION_SHORTNAME@ 107 | Comment[gl]=@APPLICATION_NAME@ cliente de sincronización para escritorio 108 | GenericName[gl]=Sincronizar Cartafol 109 | Name[gl]=@APPLICATION_NAME@ cliente de sincronización para escritorio 110 | -Icon[gl]=@APPLICATION_EXECUTABLE@ 111 | +Icon[gl]=@APPLICATION_SHORTNAME@ 112 | Comment[he]=@APPLICATION_NAME@ לקוח סנכון שולחן עבודה 113 | GenericName[he]=סנכון תיקייה 114 | Name[he]=@APPLICATION_NAME@ לקוח סנכרון שולחן עבודה 115 | -Icon[he]=@APPLICATION_EXECUTABLE@ 116 | +Icon[he]=@APPLICATION_SHORTNAME@ 117 | Comment[ia]=@APPLICATION_NAME@ cliente de synchronisation pro scriptorio 118 | GenericName[ia]=Synchronisar Dossier 119 | Name[ia]=@APPLICATION_NAME@ cliente de synchronisation pro scriptorio 120 | -Icon[ia]=@APPLICATION_EXECUTABLE@ 121 | +Icon[ia]=@APPLICATION_SHORTNAME@ 122 | Comment[id]=Klien sinkronisasi desktop @APPLICATION_NAME@ 123 | GenericName[id]=Folder Sync 124 | Name[id]=Klien sync desktop @APPLICATION_NAME@ 125 | -Icon[id]=@APPLICATION_EXECUTABLE@ 126 | +Icon[id]=@APPLICATION_SHORTNAME@ 127 | Comment[is]=@APPLICATION_NAME@ skjáborðsforrit samstillingar 128 | GenericName[is]=Samstilling möppu 129 | Name[is]=@APPLICATION_NAME@ skjáborðsforrit samstillingar 130 | -Icon[is]=@APPLICATION_EXECUTABLE@ 131 | +Icon[is]=@APPLICATION_SHORTNAME@ 132 | Comment[it]=Client di sincronizzazione del desktop di @APPLICATION_NAME@ 133 | GenericName[it]=Sincronizzazione cartella 134 | Name[it]=Client di sincronizzazione del desktop di @APPLICATION_NAME@ 135 | -Icon[it]=@APPLICATION_EXECUTABLE@ 136 | +Icon[it]=@APPLICATION_SHORTNAME@ 137 | Comment[ko]=@APPLICATION_NAME@ 데스크톱 동기화 클라이언트 138 | GenericName[ko]=폴더 동기화 139 | Name[ko]=@APPLICATION_NAME@ 데스크톱 동기화 클라이언트 140 | Comment[hu_HU]=@APPLICATION_NAME@ asztali szinkronizációs kliens 141 | GenericName[hu_HU]=Könyvtár szinkronizálás 142 | Name[hu_HU]=@APPLICATION_NAME@ asztali szinkr. kliens 143 | -Icon[hu_HU]=@APPLICATION_EXECUTABLE@ 144 | +Icon[hu_HU]=@APPLICATION_SHORTNAME@ 145 | Comment[nl]=@APPLICATION_NAME@ desktop synchronisatie client 146 | GenericName[nl]=Mappen sync 147 | Name[nl]=@APPLICATION_NAME@ desktop sync client 148 | -Icon[nl]=@APPLICATION_EXECUTABLE@ 149 | +Icon[nl]=@APPLICATION_SHORTNAME@ 150 | Comment[et_EE]=@APPLICATION_NAME@ sünkroonimise klient töölauale 151 | GenericName[et_EE]=Kaustade sünkroonimine 152 | Name[et_EE]=@APPLICATION_NAME@ sünkroonimise klient töölauale 153 | -Icon[et_EE]=@APPLICATION_EXECUTABLE@ 154 | +Icon[et_EE]=@APPLICATION_SHORTNAME@ 155 | Comment[pl]=@APPLICATION_NAME@ klient synchronizacji dla komputerów stacjonarnych 156 | GenericName[pl]=Folder Synchronizacji 157 | Name[pl]=@APPLICATION_NAME@ klient synchronizacji dla komputerów stacjonarnych 158 | -Icon[pl]=@APPLICATION_EXECUTABLE@ 159 | +Icon[pl]=@APPLICATION_SHORTNAME@ 160 | Comment[pt_BR]=@APPLICATION_NAME@ cliente de sincronização do computador 161 | GenericName[pt_BR]=Sincronização de Pasta 162 | Name[pt_BR]=@APPLICATION_NAME@ cliente de sincronização de desktop 163 | -Icon[pt_BR]=@APPLICATION_EXECUTABLE@ 164 | +Icon[pt_BR]=@APPLICATION_SHORTNAME@ 165 | Comment[cs_CZ]=@APPLICATION_NAME@ počítačový synchronizační klient 166 | GenericName[cs_CZ]=Synchronizace adresáře 167 | Name[cs_CZ]=@APPLICATION_NAME@ počítačový synchronizační klient 168 | -Icon[cs_CZ]=@APPLICATION_EXECUTABLE@ 169 | +Icon[cs_CZ]=@APPLICATION_SHORTNAME@ 170 | Comment[ru]=Настольный клиент синхронизации @APPLICATION_NAME@ 171 | GenericName[ru]=Синхронизация каталогов 172 | Name[ru]=Настольный клиент синхронизации @APPLICATION_NAME@ 173 | -Icon[ru]=@APPLICATION_EXECUTABLE@ 174 | +Icon[ru]=@APPLICATION_SHORTNAME@ 175 | Comment[sl]=@APPLICATION_NAME@ ‒ Program za usklajevanje datotek z namizjem 176 | GenericName[sl]=Usklajevanje map 177 | Name[sl]=@APPLICATION_NAME@ ‒ Program za usklajevanje datotek z namizjem 178 | -Icon[sl]=@APPLICATION_EXECUTABLE@ 179 | +Icon[sl]=@APPLICATION_SHORTNAME@ 180 | Comment[sq]=Klient njëkohësimesh @APPLICATION_NAME@ për desktop 181 | GenericName[sq]=Njëkohësim Dosjesh 182 | Name[sq]=Klient njëkohësimesh @APPLICATION_NAME@ për desktop 183 | -Icon[sq]=@APPLICATION_EXECUTABLE@ 184 | +Icon[sq]=@APPLICATION_SHORTNAME@ 185 | Comment[fi_FI]=@APPLICATION_NAME@ työpöytäsynkronointisovellus 186 | GenericName[fi_FI]=Kansion synkronointi 187 | Name[fi_FI]=@APPLICATION_NAME@ työpöytäsynkronointisovellus 188 | -Icon[fi_FI]=@APPLICATION_EXECUTABLE@ 189 | +Icon[fi_FI]=@APPLICATION_SHORTNAME@ 190 | Comment[sv]=@APPLICATION_NAME@ desktop synkroniseringsklient 191 | GenericName[sv]=Mappsynk 192 | Name[sv]=@APPLICATION_NAME@ desktop synk-klient 193 | -Icon[sv]=@APPLICATION_EXECUTABLE@ 194 | +Icon[sv]=@APPLICATION_SHORTNAME@ 195 | Comment[tr]=@APPLICATION_NAME@ masaüstü eşitleme istemcisi 196 | GenericName[tr]=Dosya Eşitleme 197 | Name[tr]=@APPLICATION_NAME@ masaüstü eşitleme istemcisi 198 | -Icon[tr]=@APPLICATION_EXECUTABLE@ 199 | +Icon[tr]=@APPLICATION_SHORTNAME@ 200 | Comment[uk]=Настільний клієнт синхронізації @APPLICATION_NAME@ 201 | GenericName[uk]=Синхронізація теки 202 | Name[uk]=Настільний клієнт синхронізації @APPLICATION_NAME@ 203 | -Icon[uk]=@APPLICATION_EXECUTABLE@ 204 | +Icon[uk]=@APPLICATION_SHORTNAME@ 205 | Comment[ro]=@APPLICATION_NAME@ client de sincronizare pe desktop 206 | GenericName[ro]=Sincronizare director 207 | Name[ro]=@APPLICATION_NAME@ client de sincronizare pe desktop 208 | -Icon[ro]=@APPLICATION_EXECUTABLE@ 209 | +Icon[ro]=@APPLICATION_SHORTNAME@ 210 | Comment[zh_CN]=@APPLICATION_NAME@ 桌面同步客户端 211 | GenericName[zh_CN]=文件夹同步 212 | Name[zh_CN]=@APPLICATION_NAME@ 桌面同步客户端 213 | -Icon[zh_CN]=@APPLICATION_EXECUTABLE@ 214 | +Icon[zh_CN]=@APPLICATION_SHORTNAME@ 215 | Comment[zh_HK]=桌面版同步客户端 216 | GenericName[zh_TW]=資料夾同步 217 | Comment[es_AR]=Cliente de sincronización para escritorio @APPLICATION_NAME@ 218 | GenericName[es_AR]=Sincronización de directorio 219 | Name[es_AR]=Cliente de sincronización para escritorio @APPLICATION_NAME@ 220 | -Icon[es_AR]=@APPLICATION_EXECUTABLE@ 221 | +Icon[es_AR]=@APPLICATION_SHORTNAME@ 222 | Comment[lt_LT]=@APPLICATION_NAME@ darbalaukio sinchronizavimo programa 223 | GenericName[lt_LT]=Katalogo sinchnorizacija 224 | Name[lt_LT]=@APPLICATION_NAME@ darbalaukio programa 225 | -Icon[lt_LT]=@APPLICATION_EXECUTABLE@ 226 | +Icon[lt_LT]=@APPLICATION_SHORTNAME@ 227 | Comment[th_TH]=@APPLICATION_NAME@ ไคลเอนต์ประสานข้อมูลเดสก์ท็อป 228 | GenericName[th_TH]=ประสานข้อมูลโฟลเดอร์ 229 | Name[th_TH]= @APPLICATION_NAME@ ไคลเอนต์ประสานข้อมูลเดสก์ท็อป 230 | -Icon[th_TH]=@APPLICATION_EXECUTABLE@ 231 | +Icon[th_TH]=@APPLICATION_SHORTNAME@ 232 | Comment[es_MX]=Cliente de escritorio para sincronziación de @APPLICATION_NAME@ 233 | GenericName[es_MX]=Sincronización de Carpetas 234 | Name[es_MX]=Cliente de escritorio para sincronziación de @APPLICATION_NAME@ 235 | -Icon[es_MX]=@APPLICATION_EXECUTABLE@ 236 | +Icon[es_MX]=@APPLICATION_SHORTNAME@ 237 | Comment[nb_NO]=@APPLICATION_NAME@ skrivebordssynkroniseringsklient 238 | GenericName[nb_NO]=Mappesynkronisering 239 | Name[nb_NO]=@APPLICATION_NAME@ skrivebordssynkroniseringsklient 240 | -Icon[nb_NO]=@APPLICATION_EXECUTABLE@ 241 | +Icon[nb_NO]=@APPLICATION_SHORTNAME@ 242 | Comment[nn_NO]=@APPLICATION_NAME@ klient for å synkronisera frå skrivebord 243 | GenericName[nn_NO]=Mappe synkronisering 244 | Name[nn_NO]=@APPLICATION_NAME@ klient for å synkronisera frå skrivebord 245 | -Icon[nn_NO]=@APPLICATION_EXECUTABLE@ 246 | +Icon[nn_NO]=@APPLICATION_SHORTNAME@ 247 | Comment[pt_PT]=@APPLICATION_NAME@ - Cliente de Sincronização para PC 248 | GenericName[pt_PT]=Sincronizar Pasta 249 | Name[pt_PT]=@APPLICATION_NAME@ - Cliente de Sincronização para PC 250 | -Icon[pt_PT]=@APPLICATION_EXECUTABLE@ 251 | -Icon[km]=@APPLICATION_EXECUTABLE@ 252 | +Icon[pt_PT]=@APPLICATION_SHORTNAME@ 253 | +Icon[km]=@APPLICATION_SHORTNAME@ 254 | Comment[lb]=@APPLICATION_NAME@ Desktop Synchronisatioun Client 255 | GenericName[lb]=Dossier Dync 256 | Name[lb]=@APPLICATION_NAME@ Desktop Sync Client 257 | -Icon[lb]=@APPLICATION_EXECUTABLE@ 258 | +Icon[lb]=@APPLICATION_SHORTNAME@ 259 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /nextcloudtheme/states.svg: -------------------------------------------------------------------------------- 1 | 2 | image/svg+xmlJan-Christoph Borchardtall synced 294 | syncing 308 | paused 322 | connecting / first run 336 | connecting / first run (branded) 350 | warning / conflicts 364 | error 378 | --------------------------------------------------------------------------------