1 Commits
2.0.1 ... 2.1.0

Author SHA1 Message Date
Steph Ango
47b8b962de Update Bases syntax to Obsidian 1.9.2 2025-06-05 11:42:17 -07:00
42 changed files with 772 additions and 385 deletions

View File

@@ -49,6 +49,7 @@
"loc": "multitext", "loc": "multitext",
"monthly-uses": "number", "monthly-uses": "number",
"runtime": "number", "runtime": "number",
"pages": "number" "pages": "number",
"acquired": "date"
} }
} }

View File

@@ -1,21 +1,23 @@
filters: filters:
and: and:
- contains(property.categories, "[[Albums]]") - note.categories.contains(link("Albums"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
file.name: Album file.name:
property.year: Year displayName: Album
property.artist: Artist note.year:
property.created: Added displayName: Year
property.rating: Rating note.artist:
property.genre: Genre displayName: Artist
note.created:
displayName: Added
note.rating:
displayName: Rating
note.genre:
displayName: Genre
views: views:
- type: table - type: table
name: Albums name: Albums
filters:
and:
- contains(categories, concat("[[", this.file.name, "]]"))
- not(contains(file.name, "Template"))
order: order:
- file.name - file.name
- artist - artist
@@ -26,7 +28,7 @@ views:
name: Artist name: Artist
filters: filters:
and: and:
- contains(artist, concat("[[", this.file.name, "]]")) - list(artist).contains(this)
order: order:
- file.name - file.name
- artist - artist
@@ -37,7 +39,7 @@ views:
name: Genre name: Genre
filters: filters:
and: and:
- contains(genre, concat("[[", this.file.name, "]]")) - list(genre).contains(this)
order: order:
- file.name - file.name
- artist - artist

View File

@@ -1,14 +1,31 @@
filters: filters:
and: and:
- linksTo(file.file, this.file.path) - file.hasLink(this)
display: formulas:
property.category: Category Path: file.path
file.name: Name properties:
property.created: Created note.created:
displayName: Date
file.name:
displayName: Title
note.categories:
displayName: Categories
views: views:
- type: table - type: table
name: Backlinks name: Backlinks
order: order:
- file.name - file.name
- category - categories
- created - created
sort:
- column: note.created
direction: DESC
- type: table
name: Recent entries
order:
- file.name
- created
sort:
- column: note.created
direction: DESC
limit: 20

View File

@@ -1,11 +1,14 @@
filters: filters:
and: and:
- contains(property.categories, "[[Board games]]") - categories.contains(link("Board games"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
file.name: Game file.name:
property.rating: Rating displayName: Game
property.last: Last note.rating:
displayName: Rating
note.last:
displayName: Last
views: views:
- type: table - type: table
name: Table name: Table

View File

@@ -1,52 +1,56 @@
filters: filters:
and: and:
- contains(property.categories, "[[Books]]") - categories.contains(link("Books"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
file.name: Name note.author:
property.last: Last displayName: Author
property.rating: Rating file.name:
property.year: Year displayName: Name
property.genre: Genre note.year:
property.author: Author displayName: Year
property.created: Added note.genre:
displayName: Genre
views: views:
- type: table - type: table
name: Favorites name: Books
order: order:
- file.name
- author - author
- file.name - length
- rating
- year
- created
- genre
- type: table
name: All
order:
- file.name
- year - year
- rating - rating
- topics
- last - last
- genre
- type: table
name: Last read
filters:
and:
- not(empty(property.last))
order:
- file.name
- year
- rating
- last
- genre
sort: sort:
- column: property.last - column: file.name
direction: ASC direction: ASC
- type: table
name: Top rated
order:
- file.name
- rating
- last
sort:
- column: note.last
direction: DESC
- type: table - type: table
name: Author name: Author
filters: filters:
and: and:
- contains(author, concat("[[", this.file.name, "]]")) - list(author).contains(this)
order:
- file.name
- year
- genre
sort:
- column: note.genre
direction: ASC
- type: table
name: Genre
filters:
and:
- list(genre).contains(this)
order: order:
- file.name - file.name
- year - year

View File

@@ -1,19 +1,19 @@
filters: filters:
and: and:
- contains(property.categories, "[[Clippings]]") - note.categories.contains(link("Clippings"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
file.name: Title file.name:
property.author: Author displayName: Title
property.created: Clipped note.author:
property.published: Published displayName: Author
note.created:
displayName: Clipped
note.published:
displayName: Published
views: views:
- type: table - type: table
name: Clippings name: Clippings
filters:
and:
- contains(categories, concat("[[", this.file.name, "]]"))
- not(contains(file.name, "Template"))
order: order:
- file.name - file.name
- author - author
@@ -26,7 +26,7 @@ views:
name: Author name: Author
filters: filters:
and: and:
- contains(author, concat("[[", this.file.name, "]]")) - list(author).contains(this)
order: order:
- file.name - file.name
- author - author

View File

@@ -1,13 +1,22 @@
display:
file.name: Company
property.url: Link
views:
- type: table
name: Table
filters: filters:
and: and:
- contains(categories, concat("[[", this.file.name, "]]")) - categories.contains(link("Companies"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
properties:
file.name:
displayName: Company
property.url:
displayName: Link
note.url:
displayName: URL
note.people:
displayName: People
views:
- type: table
name: Companies
order: order:
- file.name - file.name
- url - url
- people
columnSize:
note.url: 239

View File

@@ -1,28 +1,63 @@
filters: filters:
or: or:
- linksTo(file.file, this.file.path) - file.name.contains(this.file.name)
- contains(property.created, this.file.name) - created == this.file.name
- contains(property.last, this.file.name) - start == this.file.name
- contains(property.end, this.file.name) - end == this.file.name
display: - file.links.contains(this.file)
file.name: Entry properties:
property.created: Created file.name:
property.categories: Categories displayName: Entry
note.categories:
displayName: Categories
note.created:
displayName: Created
note.tags:
displayName: Tags
views: views:
- type: table - type: table
name: Daily notes name: Daily notes
filters: filters:
and: and:
- not(taggedWith(file.file, "daily")) - '!tags.contains("daily")'
- not(taggedWith(file.file, "monthly")) - '!tags.contains("monthly")'
order:
- file.name
- created
- categories
- tags
sort:
- column: note.tags
direction: ASC
- column: note.created
direction: DESC
- column: file.name
direction: ASC
- column: note.categories
direction: ASC
- type: table
name: Monthly
filters:
and:
- '!tags.contains("daily")'
- '!tags.contains("monthly")'
order: order:
- file.name - file.name
- categories - categories
- created - created
sort: sort:
- column: file.name - column: note.created
direction: ASC direction: ASC
- column: property.created - type: table
name: Yearly
filters:
and:
- '!tags.contains("daily")'
- '!tags.contains("monthly")'
order:
- file.name
- categories
- created
sort:
- column: note.created
direction: ASC direction: ASC
columnSize:
file.name: 263

View File

@@ -1,29 +1,22 @@
filters: filters:
and: and:
- contains(property.categories, "[[Events]]") - categories.contains(link("Events"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
file.name: Event note.end:
property.loc: Location displayName: End
note.loc:
displayName: Location
note.start:
displayName: Start
views: views:
- type: table - type: table
name: Events name: Events
order: order:
- file.name - file.name
- loc
- start - start
- type: table - end
name: Type
filters:
and:
- contains(type, concat("[[", this.file.name, "]]"))
order:
- file.name
- loc - loc
- start
columnSize:
file.name: 226
property.loc: 199
sort: sort:
- column: property.start - column: note.start
direction: DESC direction: DESC

View File

@@ -1,13 +1,18 @@
display:
file.name: Name
property.created: Created
views:
- type: table
name: Table
filters: filters:
and: and:
- contains(property.tags, "0🌲") - tags.contains("0🌲")
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
properties:
file.name:
displayName: Name
note.created:
displayName: Created
views:
- type: table
name: Evergreen
order: order:
- file.name - file.name
- created - created
sort:
- column: note.created
direction: DESC

View File

@@ -0,0 +1,24 @@
filters:
and:
- file.ext.contains("md")
properties:
file.name:
displayName: Name
note.categories:
displayName: Categories
views:
- type: table
name: Notes
order:
- file.name
- categories
- type: table
name: All files
order:
- file.name
- file.mtime
- file.path
- file.ext
sort:
- column: file.path
direction: ASC

View File

@@ -1,21 +1,23 @@
filters: filters:
and: and:
- contains(property.categories, "[[Games]]") - note.categories.contains(link("Games"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
file.name: Games file.name:
property.year: Year displayName: Games
property.maker: Maker note.year:
property.rating: Rating displayName: Year
property.genre: Genre note.maker:
property.last: Last played displayName: Maker
note.rating:
displayName: Rating
note.genre:
displayName: Genre
note.last:
displayName: Last played
views: views:
- type: table - type: table
name: Games name: Games
filters:
and:
- contains(property.categories, "[[Games]]")
- not(contains(file.name, "Template"))
order: order:
- file.name - file.name
- maker - maker
@@ -27,7 +29,7 @@ views:
name: Studio name: Studio
filters: filters:
and: and:
- contains(maker, concat("[[", this.file.name, "]]")) - list(maker).contains(this)
order: order:
- file.name - file.name
- maker - maker
@@ -39,7 +41,7 @@ views:
name: Genre name: Genre
filters: filters:
and: and:
- contains(genre, concat("[[", this.file.name, "]]")) - list(genre).contains(this)
order: order:
- file.name - file.name
- maker - maker

View File

@@ -1,17 +1,28 @@
filters: filters:
and: and:
- contains(genre, concat("[[", this.file.name, "]]")) - list(genre).contains(this)
display: properties:
property.categories: Categories note.rating:
property.rating: Rating displayName: Rating
property.last: Last note.categories:
file.name: Name displayName: Category
note.last:
displayName: Last
file.name:
displayName: Name
views: views:
- type: table - type: table
name: Table name: Genre
order: order:
- file.name - file.name
- categories
- rating - rating
- categories
- last - last
sort: [] sort:
- column: note.rating
direction: DESC
- column: note.last
direction: DESC
columnSize:
file.name: 248
note.categories: 170

View File

@@ -1,10 +1,12 @@
filters: filters:
and: and:
- contains(property.tags, "journal") - '!file.name.contains("Template")'
- not(contains(file.name, "Template")) - tags.contains("journal")
display: properties:
file.name: Entry file.name:
property.created: Created displayName: Entry
note.created:
displayName: Created
views: views:
- type: table - type: table
name: Table name: Table

View File

@@ -1,12 +1,16 @@
filters: filters:
and: and:
- contains(property.categories, "[[Meetings]]") - note.categories.contains(link("Meetings"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
property.date: Date note.date:
property.people: People displayName: Date
property.type: Type note.people:
file.name: Meeting displayName: People
note.type:
displayName: Type
file.name:
displayName: Meeting
views: views:
- type: table - type: table
name: Meetings name: Meetings
@@ -16,18 +20,18 @@ views:
- type - type
- people - people
sort: sort:
- column: property.date - column: note.date
direction: ASC direction: ASC
- type: table - type: table
name: Person name: Person
filters: filters:
and: and:
- contains(people, concat("[[", this.file.name, "]]")) - list(people).contains(this)
order: order:
- file.name - file.name
- date - date
- type - type
- people - people
sort: sort:
- column: property.date - column: note.date
direction: ASC direction: ASC

View File

@@ -1,28 +1,30 @@
filters: filters:
and: and:
- not(contains(file.name, "Template")) - categories.contains(link("Movies"))
- contains(property.categories, "[[Movies]]") - '!file.name.contains("Template")'
display: formulas: {}
file.name: Name properties:
property.last: Last file.name:
property.rating: Rating displayName: Name
property.year: Year note.last:
property.director: Director displayName: Last
property.genre: Genre note.rating:
property.cast: Cast displayName: Rating
note.year:
displayName: Year
note.director:
displayName: Director
note.genre:
displayName: Genre
note.cast:
displayName: Cast
note.scoreImdb:
displayName: IMDB
note.scoreRT:
displayName: RT
note.runtime:
displayName: Runtime
views: views:
- type: table
name: Favorites
filters:
and:
- property.rating > 6
order:
- file.name
- year
- rating
- last
- director
- genre
- type: table - type: table
name: All name: All
order: order:
@@ -30,18 +32,77 @@ views:
- year - year
- rating - rating
- last - last
- plot
- genre
- director
sort:
- column: note.director
direction: ASC
- column: formula.test
direction: DESC
- column: note.plot
direction: ASC
columnSize:
note.plot: 233
note.genre: 261
- type: table
name: To-watch
filters:
and:
- empty(note.last)
- empty(note.rating)
order:
- file.name
- year
- scoreImdb
- runtime
- scoreRT
- watchlist
- director - director
- genre - genre
sort: sort:
- column: note.scoreImdb
direction: DESC
- column: note.scoreRT
direction: DESC
- column: note.watchlist
direction: DESC
- column: file.name - column: file.name
direction: ASC direction: ASC
- column: property.director - column: note.director
direction: ASC direction: ASC
columnSize:
file.name: 283
note.year: 68
note.scoreRT: 67
note.director: 238
- type: table
name: Favorites
filters:
and:
- note.rating > 6
order:
- file.name
- director
- year
- genre
- rating
- ratingImdb
- last
sort:
- column: file.name
direction: ASC
- column: note.ratingImdb
direction: DESC
columnSize:
file.name: 283
note.director: 221
note.year: 68
- type: table - type: table
name: Last seen name: Last seen
filters: filters:
and: and:
- not(empty(property.last)) - note.last != ""
order: order:
- file.name - file.name
- year - year
@@ -50,14 +111,14 @@ views:
- director - director
- genre - genre
sort: sort:
- column: property.last - column: note.last
direction: DESC direction: DESC
limit: 20 limit: 15
- type: table - type: table
name: Actor name: Actor
filters: filters:
and: and:
- contains(cast, concat("[[", this.file.name, "]]")) - list(cast).contains(this)
order: order:
- file.name - file.name
- year - year
@@ -67,19 +128,69 @@ views:
name: Genre name: Genre
filters: filters:
and: and:
- contains(genre, concat("[[", this.file.name, "]]")) - list(genre).contains(this)
order: order:
- file.name - file.name
- rating
- year - year
- director - director
- last
- genre - genre
columnSize:
note.director: 166
note.last: 115
sort:
- column: note.last
direction: DESC
- column: note.genre
direction: ASC
- column: note.rating
direction: DESC
- type: table - type: table
name: Director name: Director
filters: filters:
and: and:
- contains(director, concat("[[", this.file.name, "]]")) - list(director).contains(this)
order: order:
- file.name - file.name
- year - year
- rating
- last
- cast - cast
- genre - genre
sort:
- column: note.last
direction: DESC
- column: note.rating
direction: ASC
- column: note.year
direction: DESC
columnSize:
file.name: 186
note.year: 79
note.rating: 96
note.genre: 243
- type: table
name: Soundtrack
filters:
and:
- list(music).contains(this)
order:
- file.name
- year
- rating
- last
- cast
- genre
sort:
- column: note.last
direction: DESC
- column: note.rating
direction: ASC
- column: note.year
direction: DESC
columnSize:
file.name: 186
note.year: 79
note.rating: 96
note.genre: 243

View File

@@ -1,10 +1,12 @@
filters: filters:
and: and:
- contains(property.categories, "[[People]]") - '!file.name.contains("Template")'
- not(contains(file.name, "Template")) - note.tags.contains("people")
display: properties:
file.name: Name file.name:
property.tags: Tags displayName: Name
note.tags:
displayName: Tags
views: views:
- type: table - type: table
name: Table name: Table

View File

@@ -1,24 +0,0 @@
filters:
and:
- contains(type, concat("[[", this.file.name, "]]"))
display:
property.rating: Rating
file.name: Name
property.loc: Location
property.last: Last
views:
- type: table
name: Default view
order:
- file.name
- rating
- last
- loc
sort:
- column: property.last
direction: DESC
- column: property.rating
direction: ASC
columnSize:
property.rating: 94
property.loc: 270

View File

@@ -1,52 +1,93 @@
filters: filters:
and: and:
- contains(property.categories, "[[Places]]") - note.categories.contains(link("Places"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
property.type: Type note.type:
property.rating: Rating displayName: Type
property.loc: Location note.rating:
file.name: Name displayName: Rating
property.last: Last note.loc:
displayName: Location
file.name:
displayName: Name
note.last:
displayName: Last
views: views:
- type: table - type: table
name: Places name: Places
order: order:
- file.name - file.name
- rating
- loc - loc
- type - type
- rating
- last - last
sort: sort:
- column: property.loc - column: note.last
direction: DESC
- column: note.type
direction: ASC direction: ASC
- column: note.loc
direction: ASC
columnSize:
file.name: 162
note.loc: 145
note.type: 199
- type: table - type: table
name: Location name: Location
filters: filters:
and: and:
- contains(loc, concat("[[", this.file.name, "]]")) - list(loc).contains(this)
order: order:
- file.name - file.name
- type - type
- rating - rating
- last - last
sort: sort:
- column: property.last - column: note.rating
direction: DESC direction: DESC
- column: property.loc - column: note.last
direction: DESC
- column: note.loc
direction: ASC direction: ASC
columnSize:
note.type: 197
- type: table - type: table
name: Type name: Type
filters: filters:
and: and:
- contains(type, concat("[[", this.file.name, "]]")) - list(type).contains(this)
order: order:
- file.name - file.name
- type - type
- rating - rating
- last - last
sort: sort:
- column: property.last - column: note.last
direction: DESC direction: DESC
- column: property.loc - column: note.loc
direction: ASC direction: ASC
columnSize:
note.type: 153
- type: table
name: Related
filters:
and:
- file.hasLink(this)
order:
- file.name
- rating
- loc
- type
- last
sort:
- column: note.last
direction: DESC
- column: note.type
direction: ASC
- column: note.loc
direction: ASC
columnSize:
file.name: 162
note.loc: 145
note.type: 199

View File

@@ -1,14 +1,22 @@
filters: filters:
and: and:
- contains(property.categories, "[[Podcast episodes]]") - note.categories.contains(link("Podcast episodes"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
file.name: Podcast file.name:
property.show: Show displayName: Podcast
property.guests: Guests note.show:
property.episode: Episode displayName: Show
property.rating: Rating note.guests:
property.published: Published displayName: Guests
note.episode:
displayName: Episode
note.rating:
displayName: Rating
note.published:
displayName: Published
note.guest:
displayName: Guest
views: views:
- type: table - type: table
name: All episodes name: All episodes
@@ -19,23 +27,26 @@ views:
- episode - episode
- rating - rating
- published - published
sort:
- column: note.published
direction: DESC
- type: table - type: table
name: Show name: Show
filters: filters:
and: and:
- contains(show, concat("[[", this.file.name, "]]")) - list(show).contains(this)
order: order:
- file.name - file.name
- show - show
- guests
- episode - episode
- rating - rating
- published - published
- guest
- type: table - type: table
name: Guest name: Guest
filters: filters:
and: and:
- contains(guests, concat("[[", this.file.name, "]]")) - list(guest).contains(this)
order: order:
- file.name - file.name
- show - show

View File

@@ -1,10 +1,12 @@
filters: filters:
and: and:
- contains(property.categories, "[[Podcasts]]") - note.categories.contains(link("Podcasts"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
file.name: Podcast file.name:
property.host: Host displayName: Podcast
note.host:
displayName: Host
views: views:
- type: table - type: table
name: Table name: Table

View File

@@ -1,15 +1,21 @@
display: properties:
file.name: Title file.name:
property.status: Status displayName: Title
property.published: Published note.status:
displayName: Status
note.published:
displayName: Published
views: views:
- type: table - type: table
name: Table name: All
filters: filters:
and: and:
- contains(categories, concat("[[", this.file.name, "]]")) - list(categories).contains(link("Posts"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
order: order:
- file.name - file.name
- status - status
- published - published
sort:
- column: note.published
direction: DESC

View File

@@ -1,88 +1,143 @@
filters: filters:
and: and:
- contains(property.categories, "[[Products]]") - note.categories.contains(link("Products"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
formulas: formulas:
Usage: formula.Owned * monthly-uses Owned: ((now() - acquired) / 2629746000).round()
Owned: round(dateDiff(acquired, now()) / -2629746000) totalUses: monthlyUses * formula.Owned.round()
Per use: concat("$", price / formula.Usage) perUse: '"$" + (price / formula.totalUses).toFixed(2)'
display: properties:
property.monthly-uses: Uses/month note.monthlyUses:
formula.Owned: Months displayName: Uses/month
formula.Usage: Total uses formula.Owned:
property.price: Price displayName: Months
property.rating: Rating formula.totalUses:
property.acquired: Acquired displayName: Total uses
property.type: Type formula.perUse:
file.name: Product displayName: Per use
note.price:
displayName: Price
note.rating:
displayName: Rating
note.acquired:
displayName: Acquired
note.type:
displayName: Type
file.name:
displayName: Product
views: views:
- type: table - type: table
name: Products name: Products
order: order:
- file.name - file.name
- acquired
- rating - rating
- price - price
- acquired - monthlyUses
- formula.perUse
- formula.Owned
- formula.totalUses
- type - type
columnSize: columnSize:
file.name: 209 file.name: 209
property.monthly-uses: 82 note.price: 78
formula.Usage: 115 note.monthlyUses: 128
formula.perUse: 78
formula.Owned: 96
formula.totalUses: 115
sort: sort:
- column: file.name - column: note.acquired
direction: DESC
- column: note.monthlyUses
direction: DESC
- column: note.rating
direction: DESC
- column: formula.Owned
direction: ASC direction: ASC
- column: formula.Usage
direction: DESC
- column: property.acquired
direction: DESC
- column: property.monthly-uses
direction: DESC
- type: table - type: table
name: Cost per use name: Cost per use
filters:
and:
- note.monthlyUses > 0
order: order:
- file.name - file.name
- rating - rating
- formula.Per use - formula.perUse
- monthly-uses - monthlyUses
- price - price
- formula.Usage - formula.totalUses
- formula.Owned - formula.Owned
- acquired - acquired
- type - type
columnSize: columnSize:
formula.Per use: 77 file.name: 209
property.monthly-uses: 82 formula.perUse: 77
formula.Usage: 115 note.monthlyUses: 82
note.price: 78
formula.totalUses: 122
formula.Owned: 96
sort:
- column: formula.totalUses
direction: DESC
- column: note.acquired
direction: DESC
- column: note.monthlyUses
direction: DESC
- type: table
name: Maker
filters:
and:
- list(maker).contains(this)
order:
- file.name
- rating
- formula.perUse
- monthlyUses
- price
- formula.totalUses
- formula.Owned
- acquired
- type
columnSize:
file.name: 209
note.monthlyUses: 82
formula.totalUses: 115
sort: sort:
- column: file.name - column: file.name
direction: ASC direction: ASC
- column: formula.Usage - column: formula.totalUses
direction: DESC direction: DESC
- column: property.acquired - column: note.acquired
direction: DESC direction: DESC
- column: property.monthly-uses - column: note.monthlyUses
direction: DESC direction: DESC
- type: table - type: table
name: Type name: Type
filters: filters:
and: and:
- contains(type, concat("[[", this.file.name, "]]")) - list(type).contains(this)
order: order:
- file.name - file.name
- rating - rating
- formula.perUse
- monthlyUses
- price - price
- formula.totalUses
- formula.Owned
- acquired - acquired
- type - type
columnSize: columnSize:
file.name: 209 file.name: 209
property.monthly-uses: 82 note.monthlyUses: 82
formula.Usage: 115 formula.totalUses: 115
sort: sort:
- column: note.rating
direction: DESC
- column: file.name - column: file.name
direction: ASC direction: ASC
- column: formula.Usage - column: formula.totalUses
direction: DESC direction: DESC
- column: property.acquired - column: note.acquired
direction: DESC direction: DESC
- column: property.monthly-uses - column: note.monthlyUses
direction: DESC direction: DESC

View File

@@ -1,13 +1,18 @@
filters: filters:
and: and:
- contains(categories, concat("[[", this.file.name, "]]")) - '!file.name.contains("Template")'
- not(contains(file.name, "Template")) - note.categories.contains(link("Projects"))
display: properties:
property.status: Status note.status:
property.url: URL displayName: Status
file.name: Name note.url:
property.type: Type displayName: URL
property.year: Year file.name:
displayName: Name
note.type:
displayName: Type
note.year:
displayName: Year
views: views:
- type: table - type: table
name: Table name: Table
@@ -17,3 +22,11 @@ views:
- year - year
- status - status
- url - url
sort:
- column: note.status
direction: ASC
- column: note.year
direction: DESC
columnSize:
file.name: 209
note.type: 199

View File

@@ -0,0 +1,39 @@
filters:
and:
- rating > 0
properties:
note.rating:
displayName: Rating
note.last:
displayName: Last
file.name:
displayName: Name
note.categories:
displayName: Categories
views:
- type: table
name: Ratings
order:
- file.name
- rating
- last
- categories
sort:
- column: note.last
direction: DESC
columnSize:
file.name: 238
- type: table
name: Recent
filters:
and:
- last > now() - "60d"
order:
- file.name
- rating
- last
- categories
sort:
- column: note.last
direction: DESC
limit: 100

View File

@@ -1,21 +1,30 @@
filters: filters:
and: and:
- contains(categories, concat("[[", this.file.name, "]]")) - note.categories.contains(link("Recipes"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
file.name: Name file.name:
property.author: Author displayName: Name
property.type: Type note.author:
property.ingredients: Ingredients displayName: Author
property.cuisine: Cuisine note.type:
property.rating: Rating displayName: Type
note.ingredients:
displayName: Ingredients
note.cuisine:
displayName: Cuisine
note.rating:
displayName: Rating
views: views:
- type: table - type: table
name: Recipes name: Recipes
order: order:
- file.name - file.name
- type - type
- cuisine
- author - author
- ingredients - ingredients
- cuisine
- rating - rating
columnSize:
note.type: 201
note.cuisine: 174

View File

@@ -1,28 +1,23 @@
filters: filters:
and: and:
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
- contains(property.categories, "[[Shows]]") - note.categories.contains(link("Shows"))
display: properties:
file.name: Name file.name:
property.last: Last displayName: Name
property.rating: Rating note.last:
property.year: Year displayName: Last
property.director: Director note.rating:
property.genre: Genre displayName: Rating
property.cast: Cast note.year:
displayName: Year
note.director:
displayName: Director
note.genre:
displayName: Genre
note.cast:
displayName: Cast
views: views:
- type: table
name: Favorites
filters:
and:
- property.rating > 6
order:
- file.name
- year
- rating
- last
- director
- genre
- type: table - type: table
name: All name: All
order: order:
@@ -33,15 +28,29 @@ views:
- director - director
- genre - genre
sort: sort:
- column: note.rating
direction: DESC
- column: file.name - column: file.name
direction: ASC direction: ASC
- column: property.director - column: note.director
direction: ASC direction: ASC
- type: table
name: Favorites
filters:
and:
- note.rating > 6
order:
- file.name
- year
- rating
- last
- director
- genre
- type: table - type: table
name: Last seen name: Last seen
filters: filters:
and: and:
- not(empty(property.last)) - not(empty(note.last))
order: order:
- file.name - file.name
- year - year
@@ -50,14 +59,14 @@ views:
- director - director
- genre - genre
sort: sort:
- column: property.last - column: note.last
direction: DESC direction: DESC
limit: 20 limit: 20
- type: table - type: table
name: Actor name: Actor
filters: filters:
and: and:
- contains(cast, concat("[[", this.file.name, "]]")) - list(cast).contains(this)
order: order:
- file.name - file.name
- year - year
@@ -67,7 +76,7 @@ views:
name: Genre name: Genre
filters: filters:
and: and:
- contains(genre, concat("[[", this.file.name, "]]")) - list(genre).contains(this)
order: order:
- file.name - file.name
- year - year
@@ -77,7 +86,7 @@ views:
name: Director name: Director
filters: filters:
and: and:
- contains(director, concat("[[", this.file.name, "]]")) - list(director).contains(this)
order: order:
- file.name - file.name
- year - year

View File

@@ -1,27 +1,38 @@
filters: filters:
and: and:
- contains(property.categories, "[[Trips]]") - note.categories.contains(link("Trips"))
- not(contains(file.name, "Template")) - '!file.name.contains("Template")'
display: properties:
property.loc: Location note.start:
property.start: Start displayName: Start
property.end: End note.end:
file.name: Trip displayName: End
file.name:
displayName: Trip
note.loc:
displayName: Location
views: views:
- type: table - type: table
name: Trips name: All trips
order:
- file.name
- loc
- start
- end
- type: table
name: Related trips
filters: filters:
and: and:
- contains(loc, concat("[[", this.file.name, "]]")) - '!file.name.contains("Planning")'
order:
- file.name
- start
- end
- loc
sort:
- column: note.end
direction: DESC
columnSize:
file.name: 255
- type: table
name: Location
filters:
and:
- list(loc).contains(this)
order: order:
- file.name - file.name
- loc
- start - start
- end - end

View File

@@ -8,4 +8,4 @@ created: {{date}}
--- ---
## Movies ## Movies
![[Movies.base]] ![[Movies.base#Director]]

View File

@@ -7,4 +7,4 @@ tags:
--- ---
## Entries ## Entries
![[Daily.base]] ![[Daily.base#Monthly]]

View File

@@ -2,4 +2,4 @@
tags: tags:
- movies/genres - movies/genres
--- ---
![[Movies.base]] ![[Movies.base#Genre]]

View File

@@ -17,5 +17,3 @@ tags:
- references - references
--- ---
[[{{date}}]]

View File

@@ -3,4 +3,4 @@ tags:
- music/genres - music/genres
--- ---
![[Albums.base]] ![[Albums.base#Genre]]

View File

@@ -7,4 +7,4 @@ created: {{date}}
--- ---
## Albums ## Albums
![[Albums.base#Related albums]] ![[Albums.base#Artist]]

View File

@@ -14,4 +14,4 @@ height: 400px
## Places ## Places
![[Places.base]] ![[Places.base#Type]]

View File

@@ -13,4 +13,3 @@ rating:
published: published:
last: {{date}} last: {{date}}
--- ---
-

View File

@@ -8,4 +8,4 @@ tags:
--- ---
## Episodes ## Episodes
![[Podcast episodes.base#Podcast episodes]] ![[Podcast episodes.base#Show]]

View File

@@ -11,4 +11,3 @@ tags:
- places - places
- restaurants - restaurants
--- ---
## [[{{date}}]]

View File

@@ -11,5 +11,3 @@ tags:
- episodes - episodes
- references - references
--- ---
## [[{{date}}]]

View File

@@ -11,5 +11,3 @@ tags:
- shows - shows
- references - references
--- ---
## [[{{date}}]]

View File

@@ -2,4 +2,4 @@
tags: tags:
- games/genres - games/genres
--- ---
![[Games.base]] ![[Games.base#Genre]]

View File

@@ -12,5 +12,3 @@ tags:
- games - games
- references - references
--- ---
## [[{{date}}]]