From 17a0f095cddc36e43be77ff06ac15cdb6f8505f4 Mon Sep 17 00:00:00 2001 From: invario <67800603+invario@users.noreply.github.com> Date: Sat, 7 Feb 2026 17:08:50 -0500 Subject: [PATCH] fix(docs): "type=" in README to use full name (e.g. boolean, integer) `type=int` and `type=bool` return errors `Unknown type int` and `Unknown type bool` It should be `type=integer` and `type=boolean` respectively Signed-off-by: invario <67800603+invario@users.noreply.github.com> --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2b1f96b..811346e 100644 --- a/README.md +++ b/README.md @@ -118,16 +118,16 @@ the aspect ratio. Will retain the aspect ratio and use the specified height. The width will be scaled according to the aspect ratio. -#### `occ config:app:set --value=false --type=bool previewgenerator job_disabled` +#### `occ config:app:set --value=false --type=boolean previewgenerator job_disabled` Set to true to disable the background job that generates previews by default without having to configure a manual system cron job. It is recommended to disable the default background job in case a custom system cron entry with `occ preview:pre-generate` is configured (set this config to true). -#### `occ config:app:set --value=600 --type=int previewgenerator job_max_execution_time` +#### `occ config:app:set --value=600 --type=integer previewgenerator job_max_execution_time` Limits the maximum execution time in seconds of the preview background job. (A value of zero means unlimited.) -#### `occ config:app:set --value=0 --type=int previewgenerator job_max_previews` +#### `occ config:app:set --value=0 --type=integer previewgenerator job_max_previews` Limits the count of previews to be generated in each execution of the preview background job. (A value of zero means unlimited.) Configure one, both or no limit (not recommended!). In case both limits are configured, the more restrictive one takes precedence.