added first true commit

This commit is contained in:
liph
2026-05-07 14:39:10 +02:00
parent d8ce45f44a
commit c5605678f0
463 changed files with 175645 additions and 0 deletions
+94
View File
@@ -0,0 +1,94 @@
filters:
and:
- '!file.name.contains("Template")'
- note.categories.contains(link("Shows"))
properties:
file.name:
displayName: Name
note.last:
displayName: Last
note.rating:
displayName: Rating
note.year:
displayName: Year
note.director:
displayName: Director
note.genre:
displayName: Genre
note.cast:
displayName: Cast
views:
- type: table
name: All
order:
- file.name
- year
- rating
- last
- director
- genre
sort:
- column: note.rating
direction: DESC
- column: file.name
direction: ASC
- column: note.director
direction: ASC
- type: table
name: Favorites
filters:
and:
- note.rating > 6
order:
- file.name
- year
- rating
- last
- director
- genre
- type: table
name: Last seen
filters:
and:
- not(empty(note.last))
order:
- file.name
- year
- rating
- last
- director
- genre
sort:
- column: note.last
direction: DESC
limit: 20
- type: table
name: Actor
filters:
and:
- list(cast).contains(this)
order:
- file.name
- year
- director
- genre
- type: table
name: Genre
filters:
and:
- list(genre).contains(this)
order:
- file.name
- year
- director
- genre
- type: table
name: Director
filters:
and:
- list(director).contains(this)
order:
- file.name
- year
- cast
- genre