Mark timeline indexing as not recommended

Signed-off-by: Varun Patil <varunpatil@ucla.edu>
pull/579/head
Varun Patil 2023-04-13 23:24:24 -07:00
parent cf8533968d
commit 140f0fb059
2 changed files with 10 additions and 3 deletions

View File

@ -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. 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. - **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. 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) ## v4.13.1 (2023-04-03)

View File

@ -83,7 +83,9 @@
name="idxm_radio" name="idxm_radio"
type="radio" type="radio"
@update:checked="update('indexingMode')" @update:checked="update('indexingMode')"
>{{ t("memories", "Only index timeline folders (configured by user)") }} >{{
t("memories", "Index per-user timeline folders (not recommended)")
}}
</NcCheckboxRadioSwitch> </NcCheckboxRadioSwitch>
<NcCheckboxRadioSwitch <NcCheckboxRadioSwitch
:checked.sync="indexingMode" :checked.sync="indexingMode"
@ -91,7 +93,7 @@
name="idxm_radio" name="idxm_radio"
type="radio" type="radio"
@update:checked="update('indexingMode')" @update:checked="update('indexingMode')"
>{{ t("memories", "Only index a selected path") }} >{{ t("memories", "Index a fixed relative path") }}
</NcCheckboxRadioSwitch> </NcCheckboxRadioSwitch>
<NcCheckboxRadioSwitch <NcCheckboxRadioSwitch
:checked.sync="indexingMode" :checked.sync="indexingMode"