Index: head/deskutils/owncloudclient/Makefile =================================================================== --- head/deskutils/owncloudclient/Makefile (revision 415821) +++ head/deskutils/owncloudclient/Makefile (revision 415822) @@ -1,60 +1,60 @@ # Created by: Mathieu Arnold # $FreeBSD$ PORTNAME= owncloudclient -PORTVERSION= 2.1.1 +PORTVERSION= 2.2.0 DISTVERSIONPREFIX= v CATEGORIES= deskutils MAINTAINER= yonas@fizk.net COMMENT= OwnCloud Desktop Syncing Client LICENSE= GPLv2 LIB_DEPENDS= libinotify.so:devel/libinotify \ libqt5keychain.so:security/qtkeychain-qt5 USES= cmake:outsource compiler:c++11-lib gmake iconv localbase \ pkgconfig sqlite USE_QT5= buildtools_build concurrent core dbus gui linguist_build network \ qmake_build webkit xml USE_OPENSSL= yes CMAKE_ARGS= -DBUILD_WITH_QT4:BOOL=OFF \ -DCMAKE_INSTALL_MANDIR:STRING=man \ -DWITH_STACK_PROTECTOR:BOOL=OFF USE_LDCONFIG= yes INSTALLS_ICONS= yes USE_GITHUB= yes GH_ACCOUNT= owncloud GH_PROJECT= client OPTIONS_DEFINE= DEBUG DOCS DOCS_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx DOCS_USE= tex=dvipsk:build,latex:build DOCS_CMAKE_ON= -DWITH_DOC:BOOL=ON DEBUG_CMAKE_ON= -DCMAKE_BUILD_TYPE:STRING=Debug PLIST_SUB= VERSION=${PORTVERSION} .include .if ${OPSYS} != FreeBSD || ${OSVERSION} < 1000015 WITH_OPENSSL_PORT= yes # CMake 3.3.x will use $PATH when looking for headers and libraries by default, # and OpenSSL from base will end up being used. Make sure ${LOCALBASE} is # preferred over $PATH. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH=${LOCALBASE} .endif post-patch: @${REINPLACE_CMD} -e \ 's|.lst |.lst.sample |' ${WRKSRC}/CMakeLists.txt pre-configure: @(cd ${WRKSRC} && ${CP} -f sync-exclude.lst sync-exclude.lst.sample) .include Index: head/deskutils/owncloudclient/distinfo =================================================================== --- head/deskutils/owncloudclient/distinfo (revision 415821) +++ head/deskutils/owncloudclient/distinfo (revision 415822) @@ -1,2 +1,3 @@ -SHA256 (owncloud-client-v2.1.1_GH0.tar.gz) = 3eb349e0b5195dd48cfac3288fd45ae545266202b3e3403bc00ffaa4537a3f9d -SIZE (owncloud-client-v2.1.1_GH0.tar.gz) = 13873040 +TIMESTAMP = 1463740754 +SHA256 (owncloud-client-v2.2.0_GH0.tar.gz) = e3e86eec8f8a07019f510359f65cfb852e380abaadb6a5505b529c1db5ed7323 +SIZE (owncloud-client-v2.2.0_GH0.tar.gz) = 14007830 Index: head/deskutils/owncloudclient/files/patch-src_gui_accountsettings.cpp =================================================================== --- head/deskutils/owncloudclient/files/patch-src_gui_accountsettings.cpp (revision 415821) +++ head/deskutils/owncloudclient/files/patch-src_gui_accountsettings.cpp (revision 415822) @@ -1,12 +1,12 @@ ---- src/gui/accountsettings.cpp.orig 2015-03-16 14:28:58 UTC +--- src/gui/accountsettings.cpp.orig 2016-05-12 07:59:12 UTC +++ src/gui/accountsettings.cpp -@@ -30,7 +30,8 @@ - #include "selectivesyncdialog.h" +@@ -31,7 +31,8 @@ #include "creds/abstractcredentials.h" + #include "tooltipupdater.h" -#include +#include +#include #include #include Index: head/deskutils/owncloudclient/files/patch-src_gui_generalsettings.cpp =================================================================== --- head/deskutils/owncloudclient/files/patch-src_gui_generalsettings.cpp (revision 415821) +++ head/deskutils/owncloudclient/files/patch-src_gui_generalsettings.cpp (revision 415822) @@ -1,23 +1,23 @@ ---- src/gui/generalsettings.cpp.orig 2015-09-01 13:50:21 UTC +--- src/gui/generalsettings.cpp.orig 2016-05-12 07:59:12 UTC +++ src/gui/generalsettings.cpp -@@ -105,6 +105,7 @@ void GeneralSettings::loadMiscSettings() +@@ -109,6 +109,7 @@ void GeneralSettings::loadMiscSettings() void GeneralSettings::slotUpdateInfo() { +#if 0 - if (OCUpdater *updater = dynamic_cast(Updater::instance())) { - connect(updater, SIGNAL(downloadStateChanged()), SLOT(slotUpdateInfo()), Qt::UniqueConnection); - connect(_ui->restartButton, SIGNAL(clicked()), updater, SLOT(slotStartInstaller()), Qt::UniqueConnection); -@@ -112,9 +113,12 @@ void GeneralSettings::slotUpdateInfo() + OCUpdater *updater = dynamic_cast(Updater::instance()); + if (ConfigFile().skipUpdateCheck()) { + updater = 0; // don't show update info if updates are disabled +@@ -121,9 +122,12 @@ void GeneralSettings::slotUpdateInfo() _ui->updateStateLabel->setText(updater->statusString()); _ui->restartButton->setVisible(updater->downloadState() == OCUpdater::DownloadComplete); } else { +#endif // can't have those infos from sparkle currently _ui->updatesGroupBox->setVisible(false); +#if 0 } +#endif } void GeneralSettings::saveMiscSettings() Index: head/deskutils/owncloudclient/files/patch-src_gui_owncloudgui.cpp =================================================================== --- head/deskutils/owncloudclient/files/patch-src_gui_owncloudgui.cpp (revision 415821) +++ head/deskutils/owncloudclient/files/patch-src_gui_owncloudgui.cpp (revision 415822) @@ -1,11 +1,11 @@ ---- src/gui/owncloudgui.cpp.orig 2015-03-16 14:28:58 UTC +--- src/gui/owncloudgui.cpp.orig 2016-05-12 07:59:12 UTC +++ src/gui/owncloudgui.cpp -@@ -33,6 +33,8 @@ - #include "openfilemanager.h" +@@ -34,6 +34,8 @@ + #include "accountmanager.h" #include "creds/abstractcredentials.h" +#include + #include + #include #include - #include Index: head/deskutils/owncloudclient/files/patch-src_libsync_configfile.cpp =================================================================== --- head/deskutils/owncloudclient/files/patch-src_libsync_configfile.cpp (revision 415821) +++ head/deskutils/owncloudclient/files/patch-src_libsync_configfile.cpp (revision 415822) @@ -1,25 +1,25 @@ ---- src/libsync/configfile.cpp.orig 2015-03-16 14:28:58 UTC +--- src/libsync/configfile.cpp.orig 2016-05-12 07:59:12 UTC +++ src/libsync/configfile.cpp -@@ -383,11 +383,22 @@ bool ConfigFile::skipUpdateCheck( const +@@ -415,11 +415,22 @@ bool ConfigFile::skipUpdateCheck( const QString con( connection ); if( connection.isEmpty() ) con = defaultConnection(); +#if 0 QVariant fallback = getValue(QLatin1String(skipUpdateCheckC), con, false); +#else + QVariant fallback = getValue(QLatin1String(skipUpdateCheckC), con, true); +#endif fallback = getValue(QLatin1String(skipUpdateCheckC), QString(), fallback); QVariant value = getPolicySetting(QLatin1String(skipUpdateCheckC), fallback); +#if 0 return value.toBool(); +#else + if ( !value.toBool() ) + qDebug() << "FreeBSD package disabled the UpdateCheck mechanism."; + + return true; +#endif } void ConfigFile::setSkipUpdateCheck( bool skip, const QString& connection ) Index: head/deskutils/owncloudclient/pkg-plist =================================================================== --- head/deskutils/owncloudclient/pkg-plist (revision 415821) +++ head/deskutils/owncloudclient/pkg-plist (revision 415822) @@ -1,246 +1,252 @@ bin/owncloud bin/owncloudcmd @sample etc/ownCloud/sync-exclude.lst.sample include/owncloudsync/creds/abstractcredentials.h include/owncloudsync/creds/httpcredentials.h include/owncloudsync/mirall/account.h include/owncloudsync/mirall/configfile.h include/owncloudsync/mirall/networkjobs.h include/owncloudsync/mirall/progressdispatcher.h include/owncloudsync/mirall/syncengine.h include/owncloudsync/mirall/syncfileitem.h include/owncloudsync/mirall/syncjournaldb.h include/owncloudsync/mirall/syncresult.h lib/libowncloudsync.so lib/libowncloudsync.so.0 lib/libowncloudsync.so.%%VERSION%% lib/owncloud/libocsync.so lib/owncloud/libocsync.so.0 lib/owncloud/libocsync.so.%%VERSION%% %%PORTDOCS%%man/man1/owncloud.1.gz %%PORTDOCS%%man/man1/owncloudcmd.1.gz share/applications/owncloud.desktop %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/.buildinfo %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-1.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-2.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-3.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-4.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-7.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-8.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client-9.png +%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client12.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/client6.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/folderwizard_local.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/folderwizard_remote.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon-error.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon-information.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon-offline.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon-paused.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon-syncing.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/icon.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/ignored_files_editor.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/log_output_window.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/mac-share.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/menu.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/save_log_file.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_account.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_activity.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_general.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/settings_network.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/share-1.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_images/share-2.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/advancedusage.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/architecture.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/autoupdate.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/building.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/conffile.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/faq.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/glossary.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/index.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/installing.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/introduction.txt +%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/lowdiskspace.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/navigating.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/options.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/owncloud.1.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/owncloudcmd.1.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/owncloudcmd.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/troubleshooting.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_sources/visualtour.txt %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/ajax-loader.gif %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/basic.css %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/classic.css %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/comment-bright.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/comment-close.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/comment.png +%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/default.css %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/doctools.js %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/down-pressed.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/down.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/file.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/jquery-1.11.1.js %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/jquery.js %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/minus.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/plus.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/pygments.css %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/searchtools.js %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/sidebar.js %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/underscore-1.3.1.js %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/underscore.js %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/up-pressed.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/up.png %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/_static/websupport.js %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/advancedusage.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/architecture.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/autoupdate.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/building.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/conffile.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/faq.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/genindex.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/glossary.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/index.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/installing.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/introduction.html +%%PORTDOCS%%%%DOCSDIR%%/html/unthemed/lowdiskspace.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/navigating.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/objects.inv %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/options.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/owncloud.1.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/owncloudcmd.1.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/owncloudcmd.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/search.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/searchindex.js %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/troubleshooting.html %%PORTDOCS%%%%DOCSDIR%%/html/unthemed/visualtour.html %%PORTDOCS%%%%DOCSDIR%%/latex/Makefile %%PORTDOCS%%%%DOCSDIR%%/latex/client-1.png %%PORTDOCS%%%%DOCSDIR%%/latex/client-2.png %%PORTDOCS%%%%DOCSDIR%%/latex/client-3.png %%PORTDOCS%%%%DOCSDIR%%/latex/client-4.png %%PORTDOCS%%%%DOCSDIR%%/latex/client-7.png %%PORTDOCS%%%%DOCSDIR%%/latex/client-8.png %%PORTDOCS%%%%DOCSDIR%%/latex/client-9.png +%%PORTDOCS%%%%DOCSDIR%%/latex/client12.png %%PORTDOCS%%%%DOCSDIR%%/latex/client6.png %%PORTDOCS%%%%DOCSDIR%%/latex/fncychap.sty %%PORTDOCS%%%%DOCSDIR%%/latex/icon-error.png %%PORTDOCS%%%%DOCSDIR%%/latex/icon-information.png %%PORTDOCS%%%%DOCSDIR%%/latex/icon-offline.png %%PORTDOCS%%%%DOCSDIR%%/latex/icon-paused.png %%PORTDOCS%%%%DOCSDIR%%/latex/icon-syncing.png %%PORTDOCS%%%%DOCSDIR%%/latex/icon.png %%PORTDOCS%%%%DOCSDIR%%/latex/ignored_files_editor.png %%PORTDOCS%%%%DOCSDIR%%/latex/log_output_window.png %%PORTDOCS%%%%DOCSDIR%%/latex/logo-blue.pdf %%PORTDOCS%%%%DOCSDIR%%/latex/mac-share.png %%PORTDOCS%%%%DOCSDIR%%/latex/menu.png +%%PORTDOCS%%%%DOCSDIR%%/latex/newfloat.sty %%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.aux %%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.idx %%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.ilg %%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.ind %%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.log %%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.out %%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.pdf %%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.tex %%PORTDOCS%%%%DOCSDIR%%/latex/ownCloudClientManual.toc %%PORTDOCS%%%%DOCSDIR%%/latex/python.ist %%PORTDOCS%%%%DOCSDIR%%/latex/save_log_file.png %%PORTDOCS%%%%DOCSDIR%%/latex/settings_network.png %%PORTDOCS%%%%DOCSDIR%%/latex/share-1.png %%PORTDOCS%%%%DOCSDIR%%/latex/share-2.png %%PORTDOCS%%%%DOCSDIR%%/latex/sphinx.sty %%PORTDOCS%%%%DOCSDIR%%/latex/sphinxhowto.cls %%PORTDOCS%%%%DOCSDIR%%/latex/sphinxmanual.cls %%PORTDOCS%%%%DOCSDIR%%/latex/tabulary.sty share/icons/hicolor/128x128/apps/ownCloud_error.png share/icons/hicolor/128x128/apps/ownCloud_error_shared.png share/icons/hicolor/128x128/apps/ownCloud_ok.png share/icons/hicolor/128x128/apps/ownCloud_ok_shared.png share/icons/hicolor/128x128/apps/ownCloud_sync.png share/icons/hicolor/128x128/apps/ownCloud_sync_shared.png share/icons/hicolor/128x128/apps/ownCloud_warn.png share/icons/hicolor/128x128/apps/ownCloud_warn_shared.png share/icons/hicolor/128x128/apps/owncloud.png share/icons/hicolor/16x16/apps/ownCloud_error.png share/icons/hicolor/16x16/apps/ownCloud_error_shared.png share/icons/hicolor/16x16/apps/ownCloud_ok.png share/icons/hicolor/16x16/apps/ownCloud_ok_shared.png share/icons/hicolor/16x16/apps/ownCloud_sync.png share/icons/hicolor/16x16/apps/ownCloud_sync_shared.png share/icons/hicolor/16x16/apps/ownCloud_warn.png share/icons/hicolor/16x16/apps/ownCloud_warn_shared.png share/icons/hicolor/22x22/apps/owncloud.png share/icons/hicolor/256x256/apps/ownCloud_error.png share/icons/hicolor/256x256/apps/ownCloud_error_shared.png share/icons/hicolor/256x256/apps/ownCloud_ok.png share/icons/hicolor/256x256/apps/ownCloud_ok_shared.png share/icons/hicolor/256x256/apps/ownCloud_sync.png share/icons/hicolor/256x256/apps/ownCloud_sync_shared.png share/icons/hicolor/256x256/apps/ownCloud_warn.png share/icons/hicolor/256x256/apps/ownCloud_warn_shared.png share/icons/hicolor/256x256/apps/owncloud.png share/icons/hicolor/32x32/apps/ownCloud_error.png share/icons/hicolor/32x32/apps/ownCloud_error_shared.png share/icons/hicolor/32x32/apps/ownCloud_ok.png share/icons/hicolor/32x32/apps/ownCloud_ok_shared.png share/icons/hicolor/32x32/apps/ownCloud_sync.png share/icons/hicolor/32x32/apps/ownCloud_sync_shared.png share/icons/hicolor/32x32/apps/ownCloud_warn.png share/icons/hicolor/32x32/apps/ownCloud_warn_shared.png share/icons/hicolor/32x32/apps/owncloud.png share/icons/hicolor/48x48/apps/ownCloud_error.png share/icons/hicolor/48x48/apps/ownCloud_error_shared.png share/icons/hicolor/48x48/apps/ownCloud_ok.png share/icons/hicolor/48x48/apps/ownCloud_ok_shared.png share/icons/hicolor/48x48/apps/ownCloud_sync.png share/icons/hicolor/48x48/apps/ownCloud_sync_shared.png share/icons/hicolor/48x48/apps/ownCloud_warn.png share/icons/hicolor/48x48/apps/ownCloud_warn_shared.png share/icons/hicolor/48x48/apps/owncloud.png share/icons/hicolor/512x512/apps/owncloud.png share/icons/hicolor/64x64/apps/ownCloud_error.png share/icons/hicolor/64x64/apps/ownCloud_error_shared.png share/icons/hicolor/64x64/apps/ownCloud_ok.png share/icons/hicolor/64x64/apps/ownCloud_ok_shared.png share/icons/hicolor/64x64/apps/ownCloud_sync.png share/icons/hicolor/64x64/apps/ownCloud_sync_shared.png share/icons/hicolor/64x64/apps/ownCloud_warn.png share/icons/hicolor/64x64/apps/ownCloud_warn_shared.png share/icons/hicolor/64x64/apps/owncloud.png share/icons/hicolor/72x72/apps/ownCloud_error.png share/icons/hicolor/72x72/apps/ownCloud_error_shared.png share/icons/hicolor/72x72/apps/ownCloud_ok.png share/icons/hicolor/72x72/apps/ownCloud_ok_shared.png share/icons/hicolor/72x72/apps/ownCloud_sync.png share/icons/hicolor/72x72/apps/ownCloud_sync_shared.png share/icons/hicolor/72x72/apps/ownCloud_warn.png share/icons/hicolor/72x72/apps/ownCloud_warn_shared.png share/nautilus-python/extensions/syncstate.py share/nemo-python/extensions/syncstate.py share/owncloud/i18n/client_TW.qm share/owncloud/i18n/client_ca.qm share/owncloud/i18n/client_cs.qm share/owncloud/i18n/client_de.qm share/owncloud/i18n/client_el.qm share/owncloud/i18n/client_en.qm share/owncloud/i18n/client_es.qm share/owncloud/i18n/client_es_AR.qm share/owncloud/i18n/client_et.qm share/owncloud/i18n/client_eu.qm share/owncloud/i18n/client_fa.qm share/owncloud/i18n/client_fi.qm share/owncloud/i18n/client_fr.qm share/owncloud/i18n/client_gl.qm share/owncloud/i18n/client_hu.qm share/owncloud/i18n/client_it.qm share/owncloud/i18n/client_ja.qm share/owncloud/i18n/client_nb_NO.qm share/owncloud/i18n/client_nl.qm share/owncloud/i18n/client_pl.qm share/owncloud/i18n/client_pt.qm share/owncloud/i18n/client_pt_BR.qm share/owncloud/i18n/client_ru.qm share/owncloud/i18n/client_sk.qm share/owncloud/i18n/client_sl.qm share/owncloud/i18n/client_sr.qm share/owncloud/i18n/client_sv.qm share/owncloud/i18n/client_th.qm share/owncloud/i18n/client_tr.qm share/owncloud/i18n/client_uk.qm share/owncloud/i18n/client_zh_CN.qm share/owncloud/i18n/client_zh_TW.qm