Skip to content

Commit

Permalink
Update changelog and add more docs (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
SmilyOrg authored Sep 9, 2024
2 parents 4f4f5c4 + 66a2947 commit 4838061
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 7 deletions.
19 changes: 13 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,26 @@ version zero.

### Added

- Enable search even if AI is not enabled
- Add `skip_collection_counts` config option for faster startup in some cases
- Batch edit tags by selecting multiple photos with Ctrl/Cmd and clicking "#"
- Loading very large collections (100K .. 10M+ files) now works

### Changed

- Optimized loading very large collections (100K .. 10M+ files)
- Optimized initial loading of large collections
- Finally fixed "determinant of affine transformation matrix is zero" error
- Fixed unit in loading spinner
- Fixed the file counter not being updated while rescan was underway
- Search or other scenes using tags auto-update when tags are added or removed
- Search is now enabled even if AI is not enabled (e.g. for tag search)
- Fixed a bug where collections with dirs that are a prefix of other dirs would
in some cases erroneously also list files in these other dirs (e.g. /vacation
would include /vacation2 or /vacation-eu)

### Removed

- None

### Breaking changes

- There is a hard limit of 50000 source directories per loaded view for now.
Please let me know if you encounter this limit as it can be increased.

## [v0.15.2] - 2024-08-19 - Timezone, auto-crop, filters, tweaks

Expand Down
4 changes: 4 additions & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ export default defineConfig({

logo: "/favicon-32x32.png",

search: {
provider: 'local',
},

editLink: {
pattern: 'https://github.com/smilyorg/photofield/edit/main/docs/:path'
},
Expand Down
17 changes: 16 additions & 1 deletion docs/features/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,22 @@ tags:
## Tagging Photos
If tags are enabled, the fullscreen photo view adds a # (hash) button for toggling the tag selection dropdown. It also adds a 🤍 (heart) button that toggles the `fav` tag to serve as simple "liking" functionality.
If tags are enabled, the following features are shown.
1. The photo view # (hash) button allows for editing tags.
2. The photo view 🤍 (heart) button toggles the `fav` tag to serve as simple
"liking" functionality.
3. On the collection view, if you [select](#selection) photos, you can add tags
to all selected photos at once using the # (hash) button in the toolbar.

## Selection

You can select photos by holding `Ctrl / Cmd` and clicking on a photo or
dragging to select.

:::info
Selections are stored as temporary tags that can be used for filtering or other operations.
:::

## Search

Expand Down

0 comments on commit 4838061

Please sign in to comment.