fix(admin): Update Desktop client config interval default values

* Updated `notificationRefreshInterval` default interval value (was changed in nextcloud/desktop#4426
* Added sec / min / hr equivalents for quickly referencing by those that don't deal in msec (similar to what we do for bytes->MB).

Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
Josh
2025-05-30 11:13:41 -04:00
committed by GitHub
parent 223d8a5cdd
commit 5ffbbb902b

View File

@ -22,19 +22,19 @@ format. You can overwrite changes using the Nextcloud configuration dialog.
Some interesting values that can be set on the configuration file are:
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``[Nextcloud]`` section |
+=================================+===============+========================================================================================================+
| Variable | Default | Meaning |
+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+
| ``remotePollInterval`` | ``30000`` | Specifies the poll time for the remote repository in milliseconds. |
+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+
| ``forceSyncInterval`` | ``7200000`` | The duration of no activity after which a synchronization run shall be triggered automatically. |
+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+
| ``fullLocalDiscoveryInterval`` | ``3600000`` | The interval after which the next synchronization will perform a full local discovery. |
+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+
| ``notificationRefreshInterval`` | ``300000`` | Specifies the default interval of checking for new server notifications in milliseconds. |
+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``[Nextcloud]`` section |
+=================================+====================+========================================================================================================+
| Variable | Default | Meaning |
+---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+
| ``remotePollInterval`` | ``30000`` (30 sec) | Specifies the poll time for the remote repository in milliseconds. |
+---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+
| ``forceSyncInterval`` | ``7200000`` (2 hr) | The duration of no activity after which a synchronization run shall be triggered automatically. |
+---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+
| ``fullLocalDiscoveryInterval`` | ``3600000`` (1 hr) | The interval after which the next synchronization will perform a full local discovery. |
+---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+
| ``notificationRefreshInterval`` | ``60000`` (1 min) | Specifies the default interval of checking for new server notifications in milliseconds. |
+---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+