Mark timeline indexing as not recommended
Signed-off-by: Varun Patil <varunpatil@ucla.edu>pull/579/head
parent
cf8533968d
commit
140f0fb059
|
@ -15,7 +15,12 @@ Note: this is a major release and may introduce breaking changes to your workflo
|
|||
Make sure your temp directory is writable by the web server.
|
||||
- **Breaking**: The `--cleanup` flag to `memories:index` has been removed and is no longer necessary.
|
||||
Folders having a `.nomedia` file will automatically be excluded from the timeline.
|
||||
- Significant performance improvements for the timeline view.
|
||||
- **Feature**: You can now choose which folders to index by default.
|
||||
This can be configured from the admin panel. The available options are:
|
||||
- All media files (excluding folders with `.nomedia` files, default and recommended)
|
||||
- All files in every user's configured timeline folder (not recommended).
|
||||
- All files in a given folder for each user (relative path).
|
||||
- **Feature**: Significant performance improvements for the timeline view.
|
||||
|
||||
## v4.13.1 (2023-04-03)
|
||||
|
||||
|
|
|
@ -83,7 +83,9 @@
|
|||
name="idxm_radio"
|
||||
type="radio"
|
||||
@update:checked="update('indexingMode')"
|
||||
>{{ t("memories", "Only index timeline folders (configured by user)") }}
|
||||
>{{
|
||||
t("memories", "Index per-user timeline folders (not recommended)")
|
||||
}}
|
||||
</NcCheckboxRadioSwitch>
|
||||
<NcCheckboxRadioSwitch
|
||||
:checked.sync="indexingMode"
|
||||
|
@ -91,7 +93,7 @@
|
|||
name="idxm_radio"
|
||||
type="radio"
|
||||
@update:checked="update('indexingMode')"
|
||||
>{{ t("memories", "Only index a selected path") }}
|
||||
>{{ t("memories", "Index a fixed relative path") }}
|
||||
</NcCheckboxRadioSwitch>
|
||||
<NcCheckboxRadioSwitch
|
||||
:checked.sync="indexingMode"
|
||||
|
|
Loading…
Reference in New Issue