mirror of
https://github.com/nextcloud/documentation.git
synced 2025-12-12 07:29:47 +07:00
Increase versions to 14
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
@@ -752,7 +752,7 @@ Verify your app::
|
||||
sudo -u www-data php occ integrity:check-app --path=/pathto/app appname
|
||||
|
||||
When it returns nothing, your app is signed correctly. When it returns a message then there is an error. See `Code Signing
|
||||
<https://docs.nextcloud.org/server/12/developer_manual/app/code_signing.html#how-to-get-your-app-signed>`_ in the Developer manual for more detailed information.
|
||||
<https://docs.nextcloud.org/server/14/developer_manual/app/code_signing.html#how-to-get-your-app-signed>`_ in the Developer manual for more detailed information.
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
``integrity:sign-core`` is for Nextcloud core developers only.
|
||||
|
||||
@@ -7,7 +7,7 @@ Starting with Nextcloud 10, it is possible to use two factor authentication
|
||||
Several 2FA apps are already available including
|
||||
`TOTP <https://en.wikipedia.org/wiki/Time-based_One-time_Password_Algorithm>`_,
|
||||
SMS 2-factor and `U2F <https://en.wikipedia.org/wiki/Universal_2nd_Factor>`_.
|
||||
Developers can `built new two-factor provider apps <https://docs.nextcloud.com/server/12/developer_manual/app/two-factor-provider.html>`_.
|
||||
Developers can `built new two-factor provider apps <https://docs.nextcloud.com/server/14/developer_manual/app/two-factor-provider.html>`_.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@@ -21,6 +21,6 @@ you want, 2FA will be installed and enabled on your Nextcloud server.
|
||||
|
||||
.. figure:: ../images/2fa-app-install.png
|
||||
|
||||
Once 2FA has been enabled, users have to `activate it in their personal settings. <https://docs.nextcloud.com/server/12/user_manual/user_2fa.html>`_
|
||||
Once 2FA has been enabled, users have to `activate it in their personal settings. <https://docs.nextcloud.com/server/14/user_manual/user_2fa.html>`_
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@@ -41,7 +41,7 @@ respective manuals:
|
||||
* `Nextcloud Desktop Client`_
|
||||
* `Nextcloud Android App`_
|
||||
|
||||
.. _`Nextcloud User Manual`: https://docs.nextcloud.com/server/12/user_manual/
|
||||
.. _`Nextcloud User Manual`: https://docs.nextcloud.com/server/14/user_manual/
|
||||
.. _`Nextcloud Desktop Client`: https://docs.nextcloud.com/desktop/2.3/
|
||||
.. _`Nextcloud Android App`: https://docs.nextcloud.com/android/
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ configuration report with the :ref:`occ config command
|
||||
.. _FAQ page: https://help.nextcloud.com/c/faq
|
||||
.. _bugtracker: https://github.com/nextcloud/server/issues
|
||||
.. _webchat: http://webchat.freenode.net/?channels=nextcloud
|
||||
https://docs.nextcloud.org/server/12/developer_manual/bugtracker/index.html
|
||||
https://docs.nextcloud.org/server/14/developer_manual/bugtracker/index.html
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
General troubleshooting
|
||||
|
||||
6
conf.py
6
conf.py
@@ -16,15 +16,15 @@ copyright = str(now.year) + ' Nextcloud GmbH'
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '13'
|
||||
version = '14'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '13'
|
||||
release = '14'
|
||||
|
||||
# substitutions go here
|
||||
rst_epilog = '.. |version| replace:: %s' % version
|
||||
|
||||
html_context = {
|
||||
'doc_versions': ['11', '12', '13'],
|
||||
'doc_versions': ['11', '12', '13', '14'],
|
||||
'current_doc': os.path.basename(os.getcwd()),
|
||||
}
|
||||
|
||||
|
||||
@@ -138,7 +138,7 @@ Federated Cloud Shares
|
||||
----------------------
|
||||
|
||||
Both the sending and the receiving instance need to have federated cloud sharing
|
||||
enabled and configured. See `Configuring Federated Cloud Sharing <https://docs.nextcloud.org/server/12/admin_manual/configuration_files/federated_cloud_sharing_configuration.html>`_.
|
||||
enabled and configured. See `Configuring Federated Cloud Sharing <https://docs.nextcloud.org/server/14/admin_manual/configuration_files/federated_cloud_sharing_configuration.html>`_.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ Please follow the steps on this page to set up your development environment.
|
||||
Set up Web server and database
|
||||
------------------------------
|
||||
|
||||
First `set up your Web server and database <https://docs.nextcloud.org/server/12/admin_manual/installation/index.html>`_ (**Section**: Manual Installation - Prerequisites).
|
||||
First `set up your Web server and database <https://docs.nextcloud.org/server/14/admin_manual/installation/index.html>`_ (**Section**: Manual Installation - Prerequisites).
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@@ -20,7 +20,7 @@ Get the source
|
||||
|
||||
There are two ways to obtain Nextcloud sources:
|
||||
|
||||
* Using the `stable version <https://docs.nextcloud.org/server/12/admin_manual/#installation>`_
|
||||
* Using the `stable version <https://docs.nextcloud.org/server/14/admin_manual/#installation>`_
|
||||
* Using the development version from `GitHub`_ which will be explained below.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@@ -6,7 +6,7 @@ The External Storage application allows you to mount external storage services,
|
||||
such as Google Drive, Dropbox, Amazon S3, SMB/CIFS fileservers, and FTP servers
|
||||
in Nextcloud. Your Nextcloud server administrator controls which of these are
|
||||
available to you. Please see `Configuring External Storage (GUI)
|
||||
<https://docs.nextcloud.org/server/13/admin_manual/configuration_files/
|
||||
<https://docs.nextcloud.org/server/14/admin_manual/configuration_files/
|
||||
external_storage_configuration_gui.html>`_ in the Nextcloud Administrator's
|
||||
manual for configuration howtos and examples.
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ How can encryption be disabled?
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
The only way to disable encryption is to run the `"decrypt all"
|
||||
<https://docs.nextcloud.org/server/13/admin_manual/configuration_server/occ_command.html#encryption-label>`_.
|
||||
<https://docs.nextcloud.org/server/14/admin_manual/configuration_server/occ_command.html#encryption-label>`_.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@@ -44,8 +44,8 @@ Is it possible to disable encryption with the recovery key?
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
Yes, *if* every user uses the `file recovery key
|
||||
<https://docs.nextcloud.com/server/13/admin_manual/configuration_files/encryption_configuration.html#enabling-users-file-recovery-keys>`_, `"decrypt all"
|
||||
<https://docs.nextcloud.org/server/13/admin_manual/configuration_server/occ_command.html#encryption-label>`_ will use it to decrypt all files.
|
||||
<https://docs.nextcloud.com/server/14/admin_manual/configuration_files/encryption_configuration.html#enabling-users-file-recovery-keys>`_, `"decrypt all"
|
||||
<https://docs.nextcloud.org/server/14/admin_manual/configuration_server/occ_command.html#encryption-label>`_ will use it to decrypt all files.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@@ -53,7 +53,7 @@ Can encryption be disabled without the user's password?
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
If you don't have the users password or `file recovery key
|
||||
<https://docs.nextcloud.com/server/13/admin_manual/configuration_files/encryption_configuration.html#enabling-users-file-recovery-keys>`_.
|
||||
<https://docs.nextcloud.com/server/14/admin_manual/configuration_files/encryption_configuration.html#enabling-users-file-recovery-keys>`_.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ set by your administrator):
|
||||
* Contact your administrator to request an increase in these variables
|
||||
|
||||
* Refer to the section in the `Admin Documentation
|
||||
<https://docs.nextcloud.org/server/12/admin_manual/configuration_files/
|
||||
<https://docs.nextcloud.org/server/14/admin_manual/configuration_files/
|
||||
big_file_upload_configuration.html>`_ that describes how to manage file
|
||||
upload size limits.
|
||||
|
||||
|
||||
@@ -18,5 +18,5 @@ Address book and Calendar
|
||||
|
||||
You should now find your contacts in the address book of your Android. If it's still not working, have a look at the `Troubleshooting Contacts & Calendar`_ guides.
|
||||
|
||||
.. _Troubleshooting Contacts & Calendar: https://docs.nextcloud.org/server/13/admin_manual/issues/index.html#troubleshooting-contacts-calendar
|
||||
.. _Troubleshooting Contacts & Calendar: https://docs.nextcloud.org/server/14/admin_manual/issues/index.html#troubleshooting-contacts-calendar
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@@ -53,5 +53,5 @@ Now should now find your contacts in the address book of your iPhone.
|
||||
If it's still not working, have a look at the :doc:`troubleshooting`
|
||||
and `Troubleshooting Contacts & Calendar`_ guides.
|
||||
|
||||
.. _Troubleshooting Contacts & Calendar: https://docs.nextcloud.org/server/12/admin_manual/issues/index.html#troubleshooting-contacts-calendar
|
||||
.. _Troubleshooting Contacts & Calendar: https://docs.nextcloud.org/server/14/admin_manual/issues/index.html#troubleshooting-contacts-calendar
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
Synchronizing with macOS
|
||||
========================
|
||||
|
||||
With Nextcloud 14 and its CalDAV-backend, syncing your Calendars with your macOS-device is easy.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
With Nextcloud 14+ and its CalDAV-backend, syncing your Calendars with your macOS-device is easy.
|
||||
|
||||
To use Nextcloud with macOS Calendar you will need to use the following steps:
|
||||
|
||||
|
||||
@@ -5,6 +5,6 @@ Einrichten externer Speicher
|
||||
Mithilfe der "Externe Speicher"-App können Sie externen Speicher von z.B. Google Drive,
|
||||
Dropbox, Amazon S3, SMB/CIFS Fileservern sowie FTP-Servern in Ihre Nextcloud einbinden.
|
||||
Ihr Nextcloud-Administrator kann einstellen, welche dieser Anbieter verwendet werden
|
||||
können. Mehr dazu finden Sie unter `Externen Speicher verwalten (GUI) <https://docs.nextcloud.org/server/12/admin_manual/configuration_files/external_storage_configuration_gui.html>`_.
|
||||
können. Mehr dazu finden Sie unter `Externen Speicher verwalten (GUI) <https://docs.nextcloud.org/server/14/admin_manual/configuration_files/external_storage_configuration_gui.html>`_.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@@ -15,6 +15,6 @@ der vom Administrator festgelegten Größe erlaubt wird:
|
||||
* Wenden Sie sich an Ihren Administrator, um eine Erhöhung dieser Variablen
|
||||
anzufordern
|
||||
|
||||
* Lesen Sie den Abschnitt in der `Admin-Dokumentation <https://docs.nextcloud.org/server/12/admin_manual/configuration_files/big_file_upload_configuration.html>`_ , in dem beschrieben wird, wie die Größenbeschränkungen für die Dateigröße zu verwalten sind.
|
||||
* Lesen Sie den Abschnitt in der `Admin-Dokumentation <https://docs.nextcloud.org/server/14/admin_manual/configuration_files/big_file_upload_configuration.html>`_ , in dem beschrieben wird, wie die Größenbeschränkungen für die Dateigröße zu verwalten sind.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
Reference in New Issue
Block a user