mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-29 04:08:54 +03:00
OS X: Document how to disable the auto updater
This commit is contained in:
parent
8b9cd432b5
commit
372f8b3426
3 changed files with 6 additions and 1 deletions
BIN
admin/osx/deny_autoupdate_com.owncloud.desktopclient.plist
Normal file
BIN
admin/osx/deny_autoupdate_com.owncloud.desktopclient.plist
Normal file
Binary file not shown.
|
@ -63,9 +63,12 @@ There are two alternative approaches:
|
||||||
Mac OS X
|
Mac OS X
|
||||||
^^^^^^^^
|
^^^^^^^^
|
||||||
|
|
||||||
You can disable the update check via the system-wide ``.plist`` file located
|
You can disable the update check via a system-wide ``.plist`` file located
|
||||||
at ``/Library/Preferences/com.owncloud.desktopclient.plist``. Add a new root
|
at ``/Library/Preferences/com.owncloud.desktopclient.plist``. Add a new root
|
||||||
level item of type bool and the name ``skipUpdateCheck`` and set it to ``true``.
|
level item of type bool and the name ``skipUpdateCheck`` and set it to ``true``.
|
||||||
|
You can also just copy the file
|
||||||
|
``owncloud.app/Contents/Resources/deny_autoupdate_com.owncloud.desktopclient.plist```
|
||||||
|
to ``/Library/Preferences/com.owncloud.desktopclient.plist``.
|
||||||
|
|
||||||
Linux
|
Linux
|
||||||
^^^^^
|
^^^^^
|
||||||
|
|
|
@ -448,6 +448,8 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/mirall)
|
||||||
if(BUILD_OWNCLOUD_OSX_BUNDLE)
|
if(BUILD_OWNCLOUD_OSX_BUNDLE)
|
||||||
install(TARGETS ${owncloudcmd_NAME} DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/MacOS)
|
install(TARGETS ${owncloudcmd_NAME} DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/MacOS)
|
||||||
if (SPARKLE_FOUND)
|
if (SPARKLE_FOUND)
|
||||||
|
install(FILES ${CMAKE_SOURCE_DIR}/admin/osx/deny_autoupdate_com.owncloud.desktopclient.plist
|
||||||
|
DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/Resources)
|
||||||
install(FILES ${CMAKE_SOURCE_DIR}/admin/osx/sparkle/dsa_pub.pem
|
install(FILES ${CMAKE_SOURCE_DIR}/admin/osx/sparkle/dsa_pub.pem
|
||||||
DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/Resources)
|
DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/Resources)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue