├── 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-nemo.install │ │ │ ├── nextcloud-client-l10n.install │ │ │ ├── 101-sync-inotify.conf │ │ │ ├── nextcloud-client-nautilus.install │ │ │ ├── patches │ │ │ │ ├── series │ │ │ │ ├── fix-application-icon-name.patch │ │ │ │ └── fix-synctstate-nemo-branding.patch │ │ │ ├── libnextcloudsync0.install │ │ │ ├── libnextcloudsync-dev.install │ │ │ ├── copyright │ │ │ ├── nextcloud-client.install │ │ │ ├── nextcloud-client.lintian-overrides │ │ │ ├── rules │ │ │ ├── changelog │ │ │ └── control │ │ ├── debian.stable │ │ │ ├── changelog │ │ │ └── control │ │ ├── debian.trusty │ │ │ └── changelog │ │ └── debian.xenial │ │ │ └── changelog │ ├── misc │ │ └── pbuilder │ │ │ └── hook.d │ │ │ └── D70setupdeps │ ├── scripts │ │ ├── pbuild_all.sh │ │ ├── build.sh │ │ ├── build_all.sh │ │ ├── pbuilder_all.sh │ │ ├── config.sh │ │ └── create_debdir.sh │ └── README └── build.sh ├── .gitmodules ├── nextcloudtheme ├── win │ ├── welcome.bmp │ ├── installer.ico │ ├── page_header.bmp │ └── page_header.svg ├── theme │ ├── black │ │ ├── state-ok-16.png │ │ ├── state-ok-32.png │ │ ├── state-ok-64.png │ │ ├── state-error-16.png │ │ ├── state-error-32.png │ │ ├── state-error-64.png │ │ ├── state-ok-128.png │ │ ├── state-ok-256.png │ │ ├── state-pause-16.png │ │ ├── state-pause-32.png │ │ ├── state-pause-64.png │ │ ├── state-sync-128.png │ │ ├── state-sync-16.png │ │ ├── state-sync-256.png │ │ ├── state-sync-32.png │ │ ├── state-sync-64.png │ │ ├── state-error-128.png │ │ ├── state-error-256.png │ │ ├── state-offline-16.png │ │ ├── state-offline-32.png │ │ ├── state-offline-64.png │ │ ├── state-pause-128.png │ │ ├── state-pause-256.png │ │ ├── state-warning-16.png │ │ ├── state-warning-32.png │ │ ├── state-warning-64.png │ │ ├── state-download-128.png │ │ ├── state-download-16.png │ │ ├── state-download-256.png │ │ ├── state-download-32.png │ │ ├── state-download-64.png │ │ ├── state-offline-128.png │ │ ├── state-offline-256.png │ │ ├── state-warning-128.png │ │ ├── state-warning-256.png │ │ ├── state-information-128.png │ │ ├── state-information-16.png │ │ ├── state-information-256.png │ │ ├── state-information-32.png │ │ ├── state-information-64.png │ │ ├── state-ok.svg │ │ ├── state-warning.svg │ │ ├── state-sync.svg │ │ ├── state-offline.svg │ │ ├── state-pause.svg │ │ ├── state-download.svg │ │ ├── state-information.svg │ │ └── state-error.svg │ ├── white │ │ ├── state-ok-16.png │ │ ├── state-ok-32.png │ │ ├── state-ok-64.png │ │ ├── state-error-16.png │ │ ├── state-error-32.png │ │ ├── state-error-64.png │ │ ├── state-ok-128.png │ │ ├── state-ok-256.png │ │ ├── state-pause-16.png │ │ ├── state-pause-32.png │ │ ├── state-pause-64.png │ │ ├── state-sync-128.png │ │ ├── state-sync-16.png │ │ ├── state-sync-256.png │ │ ├── state-sync-32.png │ │ ├── state-sync-64.png │ │ ├── state-error-128.png │ │ ├── state-error-256.png │ │ ├── state-offline-16.png │ │ ├── state-offline-32.png │ │ ├── state-offline-64.png │ │ ├── state-pause-128.png │ │ ├── state-pause-256.png │ │ ├── state-warning-16.png │ │ ├── state-warning-32.png │ │ ├── state-warning-64.png │ │ ├── state-download-128.png │ │ ├── state-download-16.png │ │ ├── state-download-256.png │ │ ├── state-download-32.png │ │ ├── state-download-64.png │ │ ├── state-offline-128.png │ │ ├── state-offline-256.png │ │ ├── state-warning-128.png │ │ ├── state-warning-256.png │ │ ├── state-information-128.png │ │ ├── state-information-16.png │ │ ├── state-information-256.png │ │ ├── state-information-32.png │ │ ├── state-information-64.png │ │ ├── state-ok.svg │ │ ├── state-warning.svg │ │ ├── state-sync.svg │ │ ├── state-offline.svg │ │ ├── state-pause.svg │ │ ├── state-download.svg │ │ ├── state-information.svg │ │ └── state-error.svg │ └── colored │ │ ├── state-ok-128.png │ │ ├── state-ok-16.png │ │ ├── state-ok-256.png │ │ ├── state-ok-32.png │ │ ├── state-ok-64.png │ │ ├── wizard_logo.png │ │ ├── state-error-16.png │ │ ├── state-error-32.png │ │ ├── state-error-64.png │ │ ├── state-pause-16.png │ │ ├── state-pause-32.png │ │ ├── state-pause-64.png │ │ ├── state-sync-128.png │ │ ├── state-sync-16.png │ │ ├── state-sync-256.png │ │ ├── state-sync-32.png │ │ ├── state-sync-64.png │ │ ├── wizard_logo@2x.png │ │ ├── Nextcloud-icon-16.png │ │ ├── Nextcloud-icon-22.png │ │ ├── Nextcloud-icon-32.png │ │ ├── Nextcloud-icon-48.png │ │ ├── Nextcloud-icon-64.png │ │ ├── state-download-16.png │ │ ├── state-download-32.png │ │ ├── state-download-64.png │ │ ├── state-error-128.png │ │ ├── state-error-256.png │ │ ├── state-offline-128.png │ │ ├── state-offline-16.png │ │ ├── state-offline-256.png │ │ ├── state-offline-32.png │ │ ├── state-offline-64.png │ │ ├── state-pause-128.png │ │ ├── state-pause-256.png │ │ ├── state-warning-128.png │ │ ├── state-warning-16.png │ │ ├── state-warning-256.png │ │ ├── state-warning-32.png │ │ ├── state-warning-64.png │ │ ├── Nextcloud-icon-128.png │ │ ├── Nextcloud-icon-256.png │ │ ├── Nextcloud-icon-512.png │ │ ├── state-download-128.png │ │ ├── state-download-256.png │ │ ├── state-information-128.png │ │ ├── state-information-16.png │ │ ├── state-information-256.png │ │ ├── state-information-32.png │ │ ├── state-information-64.png │ │ ├── state-ok.svg │ │ ├── wizard_logo.svg │ │ ├── state-warning.svg │ │ ├── state-sync.svg │ │ ├── state-offline.svg │ │ ├── state-pause.svg │ │ ├── state-download.svg │ │ ├── state-information.svg │ │ └── state-error.svg ├── osx │ ├── installer-background.png │ ├── installer-background_2x.png │ └── installer-background.svg ├── OEM.cmake ├── nextcloudtheme.h └── theme.qrc ├── .travis.yml ├── issue_template.md ├── win └── build.sh ├── 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/debian/qtkeychain/debian/libqtkeychain1.install: -------------------------------------------------------------------------------- 1 | usr/lib/*/libqtkeychain.so.?* 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-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/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/probonopd/client_theming/patch-1/nextcloudtheme/win/welcome.bmp -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | os: linux 2 | sudo: true 3 | dist: trusty 4 | language: cpp 5 | 6 | script: 7 | - bash -ex linux/build.sh 8 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/patches/series: -------------------------------------------------------------------------------- 1 | fix-application-icon-name.patch 2 | fix-synctstate-nemo-branding.patch 3 | -------------------------------------------------------------------------------- /nextcloudtheme/win/installer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/win/installer.ico -------------------------------------------------------------------------------- /nextcloudtheme/win/page_header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/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/theme/black/state-ok-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-ok-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-ok-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-ok-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-ok-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-ok-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-ok-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-ok-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-ok-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 | -------------------------------------------------------------------------------- /nextcloudtheme/osx/installer-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/osx/installer-background.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-error-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-error-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-error-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-ok-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-ok-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-ok-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-ok-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-pause-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-pause-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-pause-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-sync-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-sync-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-sync-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-sync-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-sync-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-ok-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-ok-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-ok-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-ok-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-ok-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-ok-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-ok-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-ok-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-ok-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-ok-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/wizard_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/wizard_logo.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-error-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-error-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-error-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-ok-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-ok-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-pause-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-pause-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-pause-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-sync-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-sync-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-sync-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-sync-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-sync-64.png -------------------------------------------------------------------------------- /nextcloudtheme/osx/installer-background_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/osx/installer-background_2x.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-error-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-error-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-offline-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-offline-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-offline-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-pause-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-pause-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-warning-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-warning-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-warning-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-error-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-error-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-error-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-pause-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-pause-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-pause-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-sync-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-sync-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-sync-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-sync-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-sync-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/wizard_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/wizard_logo@2x.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-error-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-error-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-offline-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-offline-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-offline-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-pause-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-pause-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-warning-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-warning-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/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-download-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-download-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-download-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-download-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-download-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-download-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-download-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-download-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-download-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-download-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-offline-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-offline-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-warning-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-warning-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/Nextcloud-icon-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/Nextcloud-icon-22.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/Nextcloud-icon-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/Nextcloud-icon-48.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/Nextcloud-icon-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-download-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-download-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-download-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-download-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-download-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-download-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-error-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-error-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-offline-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-offline-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-offline-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-offline-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-offline-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-pause-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-pause-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-warning-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-warning-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-warning-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-warning-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-warning-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-download-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-download-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-download-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-download-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-download-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-download-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-download-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-download-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-download-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-download-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-offline-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-offline-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-warning-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-warning-256.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 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/nextcloud-client.lintian-overrides: -------------------------------------------------------------------------------- 1 | nextcloud-client: binary-or-shlib-defines-rpath 2 | nextcloud-client: binary-without-manpage 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-information-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-information-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-information-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-information-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-information-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-information-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-information-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-information-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-information-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/black/state-information-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/Nextcloud-icon-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/Nextcloud-icon-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/Nextcloud-icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/Nextcloud-icon-512.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-download-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-download-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-download-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-download-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-information-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-information-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-information-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-information-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-information-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-information-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-information-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-information-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-information-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/white/state-information-64.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-information-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-information-128.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-information-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-information-16.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-information-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-information-256.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-information-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-information-32.png -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-information-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/client_theming/patch-1/nextcloudtheme/theme/colored/state-information-64.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 | -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /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/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/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 | -------------------------------------------------------------------------------- /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}"; debuild "$@") 21 | 22 | popd 23 | -------------------------------------------------------------------------------- /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 | ../client 14 | make -j4 15 | make package 16 | ctest . 17 | EOF 18 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian.stable/changelog: -------------------------------------------------------------------------------- 1 | nextcloud-client (2.2.4-1.2) stable; urgency=medium 2 | 3 | * Fixed appname in the Nemo syncstate extension. 4 | 5 | -- István Váradi Thu, 19 Jan 2017 16:46:50 +0100 6 | 7 | nextcloud-client (2.2.4-1.1) stable; urgency=medium 8 | 9 | * Added Nautilus and Nemo syncstate extensions. 10 | 11 | -- István Váradi Tue, 17 Jan 2017 19:55:32 +0100 12 | 13 | nextcloud-client (2.2.4-1.0) stable; urgency=medium 14 | 15 | * Initial release. 16 | 17 | -- István Váradi Wed, 14 Dec 2016 20:07:46 +0100 18 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian.trusty/changelog: -------------------------------------------------------------------------------- 1 | nextcloud-client (2.2.4-1.2~trusty1) trusty; urgency=medium 2 | 3 | * Fixed appname in the Nemo syncstate extension. 4 | 5 | -- István Váradi Thu, 19 Jan 2017 16:46:50 +0100 6 | 7 | nextcloud-client (2.2.4-1.1~trusty1) trusty; urgency=medium 8 | 9 | * Added Nautilus and Nemo syncstate extensions. 10 | 11 | -- István Váradi Tue, 17 Jan 2017 19:55:32 +0100 12 | 13 | nextcloud-client (2.2.4-1.0~trusty1) trusty; urgency=medium 14 | 15 | * Initial release. 16 | 17 | -- István Váradi Wed, 14 Dec 2016 20:07:46 +0100 18 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian.xenial/changelog: -------------------------------------------------------------------------------- 1 | nextcloud-client (2.2.4-1.2~xenial1) xenial; urgency=medium 2 | 3 | * Fixed appname in the Nemo syncstate extension. 4 | 5 | -- István Váradi Thu, 19 Jan 2017 16:46:50 +0100 6 | 7 | nextcloud-client (2.2.4-1.1~xenial1) xenial; urgency=medium 8 | 9 | * Added Nautilus and Nemo syncstate extensions. 10 | 11 | -- István Váradi Tue, 17 Jan 2017 19:55:32 +0100 12 | 13 | nextcloud-client (2.2.4-1.0~xenial1) xenial; urgency=medium 14 | 15 | * Initial release. 16 | 17 | -- István Váradi Wed, 14 Dec 2016 20:07:46 +0100 18 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/changelog: -------------------------------------------------------------------------------- 1 | nextcloud-client (2.2.4-1.2~yakkety1) yakkety; urgency=medium 2 | 3 | * Fixed appname in the Nemo syncstate extension. 4 | 5 | -- István Váradi Thu, 19 Jan 2017 16:46:50 +0100 6 | 7 | nextcloud-client (2.2.4-1.1~yakkety1) yakkety; urgency=medium 8 | 9 | * Added Nautilus and Nemo syncstate extensions. 10 | 11 | -- István Váradi Tue, 17 Jan 2017 19:55:32 +0100 12 | 13 | nextcloud-client (2.2.4-1.0~yakkety1) yakkety; urgency=medium 14 | 15 | * Initial release. 16 | 17 | -- István Váradi Wed, 14 Dec 2016 20:07:46 +0100 18 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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.2.4 27 | 28 | # The FULL version of the nextcloud-client package 29 | NEXTCLOUD_CLIENT_FULL_VERSION="${NEXTCLOUD_CLIENT_VERSION}-1.2~@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/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 | -------------------------------------------------------------------------------- /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 | 8 | set( THEME_CLASS "NextcloudTheme" ) 9 | set( APPLICATION_REV_DOMAIN "com.nextcloud.desktopclient" ) 10 | set( WIN_SETUP_BITMAP_PATH "${OEM_THEME_DIR}/win" ) 11 | 12 | set( MAC_INSTALLER_BACKGROUND_FILE "${OEM_THEME_DIR}/osx/installer-background.png" CACHE STRING "The MacOSX installer background image") 13 | 14 | set( THEME_INCLUDE "${OEM_THEME_DIR}/nextcloudtheme.h" ) 15 | # set( APPLICATION_LICENSE "${OEM_THEME_DIR}/license.txt ) 16 | 17 | option( WITH_CRASHREPORTER "Build crashreporter" OFF ) 18 | set( CRASHREPORTER_SUBMIT_URL "https://crash-reports.owncloud.com/submit" CACHE string "URL for crash reporter" ) 19 | set( CRASHREPORTER_ICON ":/owncloud-icon.png" ) 20 | 21 | if(CPACK_GENERATOR MATCHES "NSIS") 22 | SET( CPACK_PACKAGE_ICON "{OEM_THEME_DIR}/win/installer.ico" ) # Set installer icon 23 | endif(CPACK_GENERATOR MATCHES "NSIS") 24 | -------------------------------------------------------------------------------- /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-ok.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/osx/installer-background.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/wizard_logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-ok.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /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.2.4.orig/client/mirall.desktop.in 27 | +++ nextcloud-client-2.2.4/client/mirall.desktop.in 28 | @@ -5,7 +5,7 @@ Exec=@APPLICATION_EXECUTABLE@ 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 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-ok.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/win/page_header.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /osx/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export PATH=/usr/local/Qt-5.4.0/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 | cd ~ 13 | git clone --recursive https://github.com/owncloud/client.git 14 | cd client 15 | git checkout v2.2.4 16 | git submodule update --recursive 17 | 18 | # Build qtkeychain 19 | cd ~/client/src/3rdparty/qtkeychain 20 | cmake -DCMAKE_OSX_SYSROOT="/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk" -DCMAKE_OSX_DEPLOYMENT_TARGET=10.8 -DCMAKE_INSTALL_PREFIX=/Users/builder/install -DCMAKE_PREFIX_PATH=/Users/builder/Qt/5.4/clang_64 . 21 | sudo make install 22 | 23 | # Build the client 24 | cd ~ 25 | cp client_theming/osx/dsa_pub.pem client/admin/osx/sparkle/ 26 | rm -rf build-mac 27 | mkdir build-mac 28 | cd build-mac 29 | cmake -DCMAKE_OSX_SYSROOT="/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk" -DCMAKE_OSX_DEPLOYMENT_TARGET=10.8 -DCMAKE_INSTALL_PREFIX=/Users/builder/install -DCMAKE_PREFIX_PATH=/Users/builder/Qt/5.4/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 -DMIRALL_VERSION_BUILD=1 ../client 30 | make 31 | sudo make install 32 | sudo ~/client_theming/client/admin/osx/sign_app.sh ~/install/nextcloud.app 14C6139C495F80E3086E9912410161BFB41F0578 33 | sudo ./admin/osx/create_mac.sh ../install/ . 3EA9DE660A8EE9ED0852BEEEA29269A22E97D427 34 | 35 | # Generate a sparkle signature for the tbz 36 | openssl dgst -sha1 -binary < ~/install/*.tbz | openssl dgst -dss1 -sign ~/dsa_priv.pem | openssl enc -base64 > ~/sig.txt 37 | sudo mv ~/sig.txt ~/install/signature.txt 38 | -------------------------------------------------------------------------------- /linux/debian/nextcloud-client/debian/patches/fix-synctstate-nemo-branding.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.0~trusty1) trusty; 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: http://bugs.debian.org/ 21 | Bug-Ubuntu: https://launchpad.net/bugs/ 22 | Forwarded: 23 | Reviewed-By: 24 | Last-Update: 25 | 26 | --- nextcloud-client-2.2.4.orig/client/shell_integration/nautilus/CMakeLists.txt 27 | +++ nextcloud-client-2.2.4/client/shell_integration/nautilus/CMakeLists.txt 28 | @@ -3,7 +3,6 @@ 29 | if( UNIX AND NOT APPLE ) 30 | 31 | configure_file(syncstate.py syncstate.py COPYONLY) 32 | - configure_file(syncstate.py syncstate_nemo.py COPYONLY) 33 | 34 | # Call the setupappname.sh script to set the custom app name. 35 | set (cmd "${CMAKE_CURRENT_SOURCE_DIR}/setappname.sh") 36 | --- nextcloud-client-2.2.4.orig/client/shell_integration/nautilus/createnemoplugin.sh 37 | +++ nextcloud-client-2.2.4/client/shell_integration/nautilus/createnemoplugin.sh 38 | @@ -2,5 +2,5 @@ 39 | 40 | # this script creates a plugin for nemo, just be replacing 41 | # all occurences of Nautilus with Nemo. 42 | - 43 | +cp syncstate.py syncstate_nemo.py 44 | sed -i.org -e 's/autilus/emo/g' syncstate_nemo.py 45 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-sync.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-sync.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-sync.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /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/nextcloud-client/debian/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 | Description: Nextcloud desktop sync client 16 | Use the desktop client to keep your files synchronized 17 | between your Nextcloud server and your desktop. Select 18 | one or more directories on your local machine and always 19 | have access to your latest files wherever you are. 20 | 21 | Package: libnextcloudsync0 22 | Architecture: any 23 | Depends: ${shlibs:Depends}, ${misc:Depends} 24 | Description: Nextcloud sync library 25 | Used by the Nextcloud desktop client as the synchronization engine. 26 | 27 | Package: libnextcloudsync-dev 28 | Architecture: any 29 | Section: contrib/libdevel 30 | Depends: libnextcloudsync0 (=${binary:Version}), ${misc:Depends} 31 | Description: Nextcloud sync library development files 32 | The headers and development library for the Nextcloud sync library. 33 | 34 | Package: nextcloud-client-l10n 35 | Architecture: all 36 | Depends: ${misc:Depends} 37 | Description: Nextcloud client internatialization files 38 | The translation files. 39 | 40 | Package: nextcloud-client-nautilus 41 | Architecture: all 42 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-nautilus, nautilus, ${misc:Depends} 43 | Description: Nautilus plugin for Nextcloud 44 | This package contains a Nautilus plugin to display 45 | synchronization status icons for Nextcloud files. 46 | 47 | Package: nextcloud-client-nemo 48 | Architecture: all 49 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-nemo, nemo, ${misc:Depends} 50 | Description: Nemo plugin for Nextcloud 51 | This package contains a Nemo plugin to display 52 | synchronization status icons for Nextcloud files. 53 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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: debhelper (>= 9), cdbs, cmake, libssl-dev (>= 1.0.0), libsqlite3-dev (>=3.5.9), 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 | Description: Nextcloud desktop sync client 16 | Use the desktop client to keep your files synchronized 17 | between your Nextcloud server and your desktop. Select 18 | one or more directories on your local machine and always 19 | have access to your latest files wherever you are. 20 | 21 | Package: libnextcloudsync0 22 | Architecture: any 23 | Depends: ${shlibs:Depends}, ${misc:Depends} 24 | Description: Nextcloud sync library 25 | Used by the Nextcloud desktop client as the synchronization engine. 26 | 27 | Package: libnextcloudsync-dev 28 | Architecture: any 29 | Section: contrib/libdevel 30 | Depends: libnextcloudsync0 (=${binary:Version}), ${misc:Depends} 31 | Description: Nextcloud sync library development files 32 | The headers and development library for the Nextcloud sync library. 33 | 34 | Package: nextcloud-client-l10n 35 | Architecture: all 36 | Depends: ${misc:Depends} 37 | Description: Nextcloud client internatialization files 38 | The translation files. 39 | 40 | Package: nextcloud-client-nautilus 41 | Architecture: all 42 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-nautilus, nautilus, ${misc:Depends} 43 | Description: Nautilus plugin for Nextcloud 44 | This package contains a Nautilus plugin to display 45 | synchronization status icons for Nextcloud files. 46 | 47 | Package: nextcloud-client-nemo 48 | Architecture: all 49 | Depends: nextcloud-client (>=${binary:Version}), libnextcloudsync0, python-nemo, nemo, ${misc:Depends} 50 | Description: Nemo plugin for Nextcloud 51 | This package contains a Nemo plugin to display 52 | synchronization status icons for Nextcloud files. 53 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-offline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-offline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-offline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /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("

Distributed by %1 and licensed under the GNU General Public License (GPL) Version 2.0.
" 84 | "%2 and the %2 Logo are registered trademarks of %1 in the " 85 | "European Union, other countries, or both.

") 86 | .arg(APPLICATION_VENDOR).arg(APPLICATION_NAME); 87 | 88 | re += gitSHA1(); 89 | return re; 90 | } 91 | 92 | }; 93 | 94 | } 95 | #endif // NEXTCLOUD_THEME_H 96 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-information.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-information.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-information.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/black/state-error.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/white/state-error.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /nextcloudtheme/theme/colored/state-error.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /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/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=/app -D OEM_THEME_DIR=`pwd`/../nextcloudtheme ../client 18 | make 19 | find . 20 | sudo make install 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; also include needed glibc version 97 | ######################################################################## 98 | 99 | GLIBC_NEEDED=$(glibc_needed) 100 | VERSION=git$GIT_REV-glibc$GLIBC_NEEDED 101 | 102 | ######################################################################## 103 | # Patch away absolute paths; it would be nice if they were relative 104 | ######################################################################## 105 | 106 | # patch_usr 107 | # Possibly need to patch additional hardcoded paths away, replace 108 | # "/usr" with "././" which means "usr/ in the AppDir" 109 | 110 | ######################################################################## 111 | # AppDir complete 112 | # Now packaging it as an AppImage 113 | ######################################################################## 114 | 115 | cd .. # Go out of AppImage 116 | 117 | mkdir -p ../out/ 118 | generate_type2_appimage 119 | 120 | ######################################################################## 121 | # Upload the AppDir 122 | ######################################################################## 123 | 124 | transfer ../out/* 125 | echo "AppImage has been uploaded to the URL above; use something like GitHub Releases for permanent storage" 126 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nextcloud desktop client [![Build Status](https://travis-ci.org/nextcloud/client_theming.svg?branch=master)](https://travis-ci.org/nextcloud/client_theming) 2 | :computer: theme and build instructions for the nextcloud desktop client 3 | 4 | Based on https://github.com/owncloud/client/blob/master/doc/building.rst 5 | 6 | ## Getting repository ready 7 | 8 | Run: 9 | ```bash 10 | git submodule update --init --recursive 11 | ``` 12 | 13 | ## Building on Linux 14 | 15 | Run: 16 | 17 | ```bash 18 | mkdir build-linux 19 | cd build-linux 20 | cmake -D OEM_THEME_DIR=`pwd`/../nextcloudtheme ../client 21 | make 22 | make install 23 | ``` 24 | 25 | ## Building on OSX 26 | 27 | *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". 28 | 29 | ### Install dependencies 30 | 31 | 1. Install [HomeBrew](http://brew.sh/) 32 | 2. `brew install openssl wget cmake` 33 | 3. `wget https://github.com/sparkle-project/Sparkle/releases/download/1.14.0/Sparkle-1.14.0.tar.bz2` 34 | 4. `tar -xf Sparkle-1.14.0.tar.bz2` 35 | 5. `mv Sparkle.framework ~/Library/Frameworks/` 36 | 6. Install XCode 6.4 from http://adcdownload.apple.com/Developer_Tools/Xcode_6.4/Xcode_6.4.dmg 37 | 7. sudo xcode-select -s /Applications/Xcode.app/Contents/Developer 38 | 8. Generate Sparkle keys: `./bin/generate_keys`. Keep those, if you loose it you won't be able to deploy updates anymore. 39 | 9. Store the keys in `osx/`. Make sure to not make the `dsa_priv.pem` publicly available. 40 | 10. Install http://s.sudre.free.fr/Software/Packages/about.html 41 | 42 | ### Compile Qt 43 | 44 | Because the desktop client comes with a lot of custom patches you have to download the Qt 5.4.0 source and then apply all of them. 45 | 46 | In addition to below patches you also need to apply https://codereview.qt-project.org/#/c/121545/ 47 | 48 | ```bash 49 | cd /tmp/ 50 | wget http://download.qt.io/official_releases/qt/5.4/5.4.0/single/qt-everywhere-opensource-src-5.4.0.tar.gz 51 | tar -xf qt-everywhere-opensource-src-5.4.0.tar.gz 52 | cd /tmp/qt-everywhere-opensource-src-5.4.0/qtbase 53 | git apply --reject /Users/builder/client/admin/qt/patches/0001-Fix-crash-on-Mac-OS-if-PAC-URL-contains-non-URL-lega.patch 54 | git apply --reject /Users/builder/client/admin/qt/patches/0002-Fix-possible-crash-when-passing-an-invalid-PAC-URL.patch 55 | git apply --reject /Users/builder/client/admin/qt/patches/0003-Fix-crash-if-PAC-script-retrieval-returns-a-null-CFD.patch 56 | git apply --reject /Users/builder/client/admin/qt/patches/0004-Cocoa-Fix-systray-SVG-icons.patch 57 | git apply --reject /Users/builder/client/admin/qt/patches/0005-OSX-Fix-disapearing-tray-icon.patch 58 | git apply --reject /Users/builder/client/admin/qt/patches/0006-Fix-force-debug-info-with-macx-clang_NOUPSTREAM.patch 59 | git apply --reject /Users/builder/client/admin/qt/patches/0007-QNAM-Fix-upload-corruptions-when-server-closes-conne.patch 60 | git apply --reject /Users/builder/client/admin/qt/patches/0007-X-Network-Fix-up-previous-corruption-patch.patch 61 | git apply --reject /Users/builder/client/admin/qt/patches/0008-QNAM-Fix-reply-deadlocks-on-server-closing-connectio.patch 62 | git apply --reject /Users/builder/client/admin/qt/patches/0009-QNAM-Assign-proper-channel-before-sslErrors-emission.patch 63 | git apply --reject /Users/builder/client/admin/qt/patches/0010-Don-t-let-closed-http-sockets-pass-as-valid-connecti.patch 64 | git apply --reject /Users/builder/client/admin/qt/patches/0011-Make-sure-to-report-correct-NetworkAccessibility.patch 65 | git apply --reject /Users/builder/client/admin/qt/patches/0012-Make-sure-networkAccessibilityChanged-is-emitted.patch 66 | git apply --reject /Users/builder/client/admin/qt/patches/0013-Make-UnknownAccessibility-not-block-requests.patch 67 | git apply --reject /Users/builder/client/admin/qt/patches/0015-Remove-legacy-platform-code-in-QSslSocket-for-OS-X-1.patch 68 | git apply --reject /Users/builder/client/admin/qt/patches/0016-QSslSocket-evaluate-CAs-in-all-keychain-categories.patch 69 | git apply --reject /Users/builder/client/admin/qt/patches/0017-Win32-Re-init-system-proxy-if-internet-settings-chan.patch 70 | git apply --reject /Users/builder/client/admin/qt/patches/0018-Windows-Do-not-crash-if-SSL-context-is-gone-after-ro.patch 71 | git apply --reject /Users/builder/client/admin/qt/patches/0019-Ensure-system-tray-icon-is-prepared-even-when-menu-bar.patch 72 | cd .. 73 | ./configure -sdk macosx10.9 74 | make -j7 75 | sudo make -j1 install 76 | ``` 77 | 78 | ### Build the client 79 | 80 | ```bash 81 | sh osx/build.sh 82 | ``` 83 | 84 | ## Building on Windows 85 | 86 | ### Building the docker image 87 | 88 | The docker image contains the toolchain to build the windows binary. 89 | Build it: 90 | 91 | ```bash 92 | docker build -t nextcloud-client-win32: client/admin/win/docker/ 93 | ``` 94 | 95 | ### Building the binary 96 | 97 | ```bash 98 | docker run -v "$PWD:/home/user/" nextcloud-client-win32:2.2.2 /home/user/win/build.sh $(id -u) 99 | ``` 100 | 101 | ## Building a release 102 | 103 | When we build releases there are two additional cmake parameters to consider: 104 | 105 | * `-DMIRALL_VERSION_SUFFIX=`: for a generic suffix name such as `beta` or `rc1` 106 | * `-DMIRALL_VERSION_BUILD=`: an internal build number. Should be strickly increasing. This allows update detection from `rc` to `final` 107 | 108 | Note that this had mostly usage on Windows and OS X. On linux the package manager will take care of all this. 109 | -------------------------------------------------------------------------------- /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 | --------------------------------------------------------------------------------