11 Commits
2.1.0 ... 2.1.1

Author SHA1 Message Date
Steph Ango
aca2993b8e More updates to bases syntax 2025-07-18 09:02:24 -07:00
Steph Ango
08da8df936 Update for Obsidian 1.9.5 2025-07-18 08:59:04 -07:00
Steph Ango
aae37bf7ca Merge pull request #16 from sigrunixia/main
Fixes date handlebars for book and movie template
2025-07-06 09:26:24 +09:00
Rebbecca Bishop
202f8e3065 Corrects date handlebar 2025-06-29 00:13:33 -05:00
Rebbecca Bishop
d33fbe8283 Corrects date handlebar 2025-06-29 00:13:11 -05:00
Steph Ango
dd7cb4e6f4 Merge pull request #15 from claremacrae/patch-2
Make categories and tags consistent in Contact Template.md
2025-06-10 14:49:36 -07:00
Clare Macrae
69bc2f5b14 Make categories and tags consistent in Contact Template.md
I noticed that all other uses of the People category all added the people tag, so it seemed a good idea to add it in the Contact template.
2025-06-10 20:10:54 +01:00
Steph Ango
b0e50255f2 Meeting type 2025-06-06 10:31:15 -07:00
Steph Ango
a35651a27d syntax fix, add view 2025-06-06 10:23:53 -07:00
Steph Ango
c58f017573 Merge pull request #14 from claremacrae/fix-frontmatter
fix missing alias in Obsidian 1.9.2
2025-06-06 07:38:57 -07:00
Clare Macrae
4ea8f749a9 fix missing alias in Obsidian 1.9.2 2025-06-06 09:19:38 +01:00
22 changed files with 353 additions and 182 deletions

View File

@@ -2,19 +2,13 @@ filters:
and: and:
- note.categories.contains(link("Albums")) - note.categories.contains(link("Albums"))
- '!file.name.contains("Template")' - '!file.name.contains("Template")'
properties: display:
file.name: file.name: Album
displayName: Album note.year: Year
note.year: note.artist: Artist
displayName: Year note.created: Added
note.artist: note.rating: Rating
displayName: Artist note.genre: Genre
note.created:
displayName: Added
note.rating:
displayName: Rating
note.genre:
displayName: Genre
views: views:
- type: table - type: table
name: Albums name: Albums

View File

@@ -0,0 +1,32 @@
formulas:
Embeds: if(file.embeds[0].containsAny("jpg","gif","webp","jpeg","avif"), file.embeds[0])
Date: if(created,created,if(start,start))
links: file.
views:
- type: cards
name: Images
filters:
and:
- this.file.hasLink(file)
- '!file.ext.containsAny("base", "canvas", "pdf", "md")'
- file == ""
order: []
sort:
- property: file.name
direction: ASC
image: file.file
cardSize: 70
- type: table
name: Images 2
filters:
and:
- '!file.ext.containsAny("base", "canvas", "pdf", "md")'
order:
- file.name
- file.links
- formula.links
sort:
- property: file.name
direction: ASC
image: file.file
cardSize: 90

View File

@@ -18,7 +18,7 @@ views:
- categories - categories
- created - created
sort: sort:
- column: note.created - property: created
direction: DESC direction: DESC
- type: table - type: table
name: Recent entries name: Recent entries
@@ -26,6 +26,6 @@ views:
- file.name - file.name
- created - created
sort: sort:
- column: note.created - property: created
direction: DESC direction: DESC
limit: 20 limit: 20

View File

@@ -23,7 +23,7 @@ views:
- topics - topics
- last - last
sort: sort:
- column: file.name - property: file.name
direction: ASC direction: ASC
- type: table - type: table
name: Top rated name: Top rated
@@ -32,7 +32,7 @@ views:
- rating - rating
- last - last
sort: sort:
- column: note.last - property: last
direction: DESC direction: DESC
- type: table - type: table
name: Author name: Author
@@ -44,7 +44,7 @@ views:
- year - year
- genre - genre
sort: sort:
- column: note.genre - property: genre
direction: ASC direction: ASC
- type: table - type: table
name: Genre name: Genre

View File

@@ -20,8 +20,10 @@ views:
- created - created
- published - published
sort: sort:
- column: clipped - property: created
direction: DESC direction: DESC
columnSize:
note.author: 140
- type: table - type: table
name: Author name: Author
filters: filters:
@@ -33,5 +35,5 @@ views:
- created - created
- published - published
sort: sort:
- column: clipped - property: clipped
direction: DESC direction: DESC

View File

@@ -1,9 +1,9 @@
filters: filters:
or: or:
- file.name.contains(this.file.name) - file.name.contains(this.file.name)
- created == this.file.name - created.toString().contains(this.file.name)
- start == this.file.name - start.toString().contains(this.file.name)
- end == this.file.name - end.toString().contains(this.file.name)
- file.links.contains(this.file) - file.links.contains(this.file)
properties: properties:
file.name: file.name:
@@ -27,14 +27,18 @@ views:
- categories - categories
- tags - tags
sort: sort:
- column: note.tags - property: tags
direction: ASC direction: ASC
- column: note.created - property: created
direction: DESC direction: DESC
- column: file.name - property: file.name
direction: ASC direction: ASC
- column: note.categories - property: categories
direction: ASC direction: ASC
columnSize:
file.name: 287
note.created: 128
note.categories: 119
- type: table - type: table
name: Monthly name: Monthly
filters: filters:
@@ -46,8 +50,10 @@ views:
- categories - categories
- created - created
sort: sort:
- column: note.created - property: file.name
direction: ASC direction: ASC
- property: created
direction: DESC
- type: table - type: table
name: Yearly name: Yearly
filters: filters:
@@ -59,5 +65,5 @@ views:
- categories - categories
- created - created
sort: sort:
- column: note.created - property: created
direction: ASC direction: ASC

View File

@@ -18,5 +18,29 @@ views:
- end - end
- loc - loc
sort: sort:
- column: note.start - property: start
direction: DESC
- type: table
name: Type
filters:
and:
- list(type).contains(this)
order:
- file.name
- start
- loc
sort:
- property: start
direction: DESC
- type: table
name: Location
filters:
and:
- list(loc).contains(this)
order:
- file.name
- start
- loc
sort:
- property: start
direction: DESC direction: DESC

View File

@@ -1,17 +1,7 @@
filters: formulas:
and: Embeds: if(file.embeds[0].containsAny("jpg","gif","webp","jpeg","avif"), file.embeds[0])
- file.ext.contains("md") Date: if(created,created,if(start,start))
properties:
file.name:
displayName: Name
note.categories:
displayName: Categories
views: views:
- type: table
name: Notes
order:
- file.name
- categories
- type: table - type: table
name: All files name: All files
order: order:
@@ -19,6 +9,28 @@ views:
- file.mtime - file.mtime
- file.path - file.path
- file.ext - file.ext
- type: cards
name: Images
filters:
and:
- '!file.ext.containsAny("base", "canvas", "pdf", "md")'
order:
- file.name
sort: sort:
- column: file.path - property: file.name
direction: ASC direction: ASC
image: file.file
- type: cards
name: Images in posts
filters:
and:
- "!formula.Embeds.isEmpty()"
order:
- file.name
- formula.Date
sort:
- property: file.name
direction: ASC
- property: date
direction: DESC
image: formula.Embeds

View File

@@ -2,19 +2,13 @@ filters:
and: and:
- note.categories.contains(link("Games")) - note.categories.contains(link("Games"))
- '!file.name.contains("Template")' - '!file.name.contains("Template")'
properties: display:
file.name: file.name: Games
displayName: Games note.year: Year
note.year: note.maker: Maker
displayName: Year note.rating: Rating
note.maker: note.genre: Genre
displayName: Maker note.last: Last played
note.rating:
displayName: Rating
note.genre:
displayName: Genre
note.last:
displayName: Last played
views: views:
- type: table - type: table
name: Games name: Games

View File

@@ -1,15 +1,11 @@
filters: filters:
and: and:
- list(genre).contains(this) - list(genre).contains(this)
properties: display:
note.rating: note.rating: Rating
displayName: Rating note.categories: Category
note.categories: note.last: Last
displayName: Category file.name: Name
note.last:
displayName: Last
file.name:
displayName: Name
views: views:
- type: table - type: table
name: Genre name: Genre

View File

@@ -1,6 +1,6 @@
filters: filters:
and: and:
- note.categories.contains(link("Meetings")) - categories.contains(link("Meetings"))
- '!file.name.contains("Template")' - '!file.name.contains("Template")'
properties: properties:
note.date: note.date:
@@ -11,6 +11,8 @@ properties:
displayName: Type displayName: Type
file.name: file.name:
displayName: Meeting displayName: Meeting
note.org:
displayName: Org
views: views:
- type: table - type: table
name: Meetings name: Meetings
@@ -20,7 +22,7 @@ views:
- type - type
- people - people
sort: sort:
- column: note.date - property: date
direction: ASC direction: ASC
- type: table - type: table
name: Person name: Person
@@ -33,5 +35,18 @@ views:
- type - type
- people - people
sort: sort:
- column: note.date - property: date
direction: ASC direction: ASC
- type: table
name: Type
filters:
and:
- list(type).contains(this)
order:
- file.name
- date
- people
- org
sort:
- property: date
direction: DESC

View File

@@ -24,52 +24,54 @@ properties:
displayName: RT displayName: RT
note.runtime: note.runtime:
displayName: Runtime displayName: Runtime
note.watchlist:
displayName: Added
views: views:
- type: table - type: table
name: All name: All
order: order:
- file.name - file.name
- year - year
- director
- rating - rating
- last - last
- plot - plot
- genre - genre
- director
sort: sort:
- column: note.director - property: director
direction: ASC direction: ASC
- column: formula.test - property: plot
direction: DESC
- column: note.plot
direction: ASC direction: ASC
columnSize: columnSize:
file.name: 193
note.director: 205
note.plot: 233 note.plot: 233
note.genre: 261 note.genre: 261
- type: table - type: table
name: To-watch name: To-watch
filters: filters:
and: and:
- empty(note.last) - last.isEmpty()
- empty(note.rating) - rating.isEmpty()
order: order:
- file.name - file.name
- year - year
- scoreImdb - scoreImdb
- runtime
- scoreRT - scoreRT
- runtime
- watchlist - watchlist
- director - director
- genre - genre
sort: sort:
- column: note.scoreImdb - property: scoreImdb
direction: DESC direction: DESC
- column: note.scoreRT - property: scoreRT
direction: DESC direction: DESC
- column: note.watchlist - property: watchlist
direction: DESC direction: DESC
- column: file.name - property: file.name
direction: ASC direction: ASC
- column: note.director - property: director
direction: ASC direction: ASC
columnSize: columnSize:
file.name: 283 file.name: 283
@@ -90,9 +92,9 @@ views:
- ratingImdb - ratingImdb
- last - last
sort: sort:
- column: file.name - property: file.name
direction: ASC direction: ASC
- column: note.ratingImdb - property: ratingImdb
direction: DESC direction: DESC
columnSize: columnSize:
file.name: 283 file.name: 283
@@ -102,7 +104,7 @@ views:
name: Last seen name: Last seen
filters: filters:
and: and:
- note.last != "" - "!last.isEmpty()"
order: order:
- file.name - file.name
- year - year
@@ -111,9 +113,11 @@ views:
- director - director
- genre - genre
sort: sort:
- column: note.last - property: last
direction: DESC direction: DESC
limit: 15 - property: file.name
direction: ASC
limit: 20
- type: table - type: table
name: Actor name: Actor
filters: filters:
@@ -124,6 +128,10 @@ views:
- year - year
- director - director
- genre - genre
- ratingImdb
sort:
- property: ratingImdb
direction: DESC
- type: table - type: table
name: Genre name: Genre
filters: filters:
@@ -136,16 +144,16 @@ views:
- director - director
- last - last
- genre - genre
sort:
- property: last
direction: DESC
- property: genre
direction: ASC
- property: rating
direction: DESC
columnSize: columnSize:
note.director: 166 note.director: 166
note.last: 115 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:
@@ -159,11 +167,11 @@ views:
- cast - cast
- genre - genre
sort: sort:
- column: note.last - property: last
direction: DESC direction: DESC
- column: note.rating - property: rating
direction: ASC direction: ASC
- column: note.year - property: year
direction: DESC direction: DESC
columnSize: columnSize:
file.name: 186 file.name: 186
@@ -183,14 +191,50 @@ views:
- cast - cast
- genre - genre
sort: sort:
- column: note.last - property: last
direction: DESC direction: DESC
- column: note.rating - property: rating
direction: ASC direction: ASC
- column: note.year - property: year
direction: DESC direction: DESC
columnSize: columnSize:
file.name: 186 file.name: 186
note.year: 79 note.year: 79
note.rating: 96 note.rating: 96
note.genre: 243 note.genre: 243
- type: table
name: Theater
filters:
and:
- file.links.contains(this.file)
order:
- file.name
- rating
- last
- year
- scoreImdb
- runtime
- scoreRT
- watchlist
- director
- genre
sort:
- property: last
direction: DESC
- property: scoreImdb
direction: DESC
- property: scoreRT
direction: DESC
- property: watchlist
direction: DESC
- property: file.name
direction: ASC
- property: director
direction: ASC
columnSize:
file.name: 283
note.rating: 94
note.year: 68
note.scoreRT: 67
note.director: 238
note.genre: 243

View File

@@ -2,14 +2,32 @@ filters:
and: and:
- '!file.name.contains("Template")' - '!file.name.contains("Template")'
- note.tags.contains("people") - note.tags.contains("people")
formulas:
Age: (now() - birthday).years.floor()
properties: properties:
file.name: file.name:
displayName: Name displayName: Name
note.tags: note.tags:
displayName: Tags displayName: Tags
note.birthday:
displayName: Birthday
views: views:
- type: table - type: table
name: Table name: All people
order: order:
- file.name - file.name
- tags - tags
- birthday
- formula.Age
columnSize:
note.tags: 209
formula.Age: 99
sort:
- column: file.name
direction: ASC
- column: note.tags
direction: ASC
- column: formula.Age
direction: DESC
- column: note.birthday
direction: DESC

View File

@@ -23,11 +23,11 @@ views:
- type - type
- last - last
sort: sort:
- column: note.last - property: last
direction: DESC direction: DESC
- column: note.type - property: type
direction: ASC direction: ASC
- column: note.loc - property: loc
direction: ASC direction: ASC
columnSize: columnSize:
file.name: 162 file.name: 162
@@ -44,11 +44,11 @@ views:
- rating - rating
- last - last
sort: sort:
- column: note.rating - property: rating
direction: DESC direction: DESC
- column: note.last - property: last
direction: DESC direction: DESC
- column: note.loc - property: loc
direction: ASC direction: ASC
columnSize: columnSize:
note.type: 197 note.type: 197
@@ -63,9 +63,9 @@ views:
- rating - rating
- last - last
sort: sort:
- column: note.last - property: last
direction: DESC direction: DESC
- column: note.loc - property: loc
direction: ASC direction: ASC
columnSize: columnSize:
note.type: 153 note.type: 153
@@ -74,6 +74,7 @@ views:
filters: filters:
and: and:
- file.hasLink(this) - file.hasLink(this)
- '!tags.containsAny("cities", "countries")'
order: order:
- file.name - file.name
- rating - rating
@@ -81,13 +82,34 @@ views:
- type - type
- last - last
sort: sort:
- column: note.last - property: rating
direction: DESC direction: DESC
- column: note.type - property: last
direction: DESC
- property: type
direction: ASC direction: ASC
- column: note.loc - property: loc
direction: ASC direction: ASC
columnSize: columnSize:
file.name: 162 file.name: 162
note.rating: 65
note.loc: 145 note.loc: 145
note.type: 199 note.type: 199
- type: table
name: Metatype
filters:
or:
- list(type).contains(this)
- list(type).containsAny(this.topics)
order:
- file.name
- type
- rating
- last
sort:
- property: last
direction: DESC
- property: loc
direction: ASC
columnSize:
note.type: 153

View File

@@ -2,21 +2,14 @@ filters:
and: and:
- note.categories.contains(link("Podcast episodes")) - note.categories.contains(link("Podcast episodes"))
- '!file.name.contains("Template")' - '!file.name.contains("Template")'
properties: display:
file.name: file.name: Podcast
displayName: Podcast note.show: Show
note.show: note.guests: Guests
displayName: Show note.episode: Episode
note.guests: note.rating: Rating
displayName: Guests note.published: Published
note.episode: note.guest: Guest
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

View File

@@ -3,9 +3,9 @@ filters:
- note.categories.contains(link("Products")) - note.categories.contains(link("Products"))
- '!file.name.contains("Template")' - '!file.name.contains("Template")'
formulas: formulas:
Owned: ((now() - acquired) / 2629746000).round() Owned: ((now() - acquired).months).round()
totalUses: monthlyUses * formula.Owned.round() totalUses: monthlyUses * formula.Owned.round()
perUse: '"$" + (price / formula.totalUses).toFixed(2)' perUse: (price / formula.totalUses).toFixed(2)
properties: properties:
note.monthlyUses: note.monthlyUses:
displayName: Uses/month displayName: Uses/month
@@ -38,22 +38,27 @@ views:
- formula.Owned - formula.Owned
- formula.totalUses - formula.totalUses
- type - type
sort:
- property: formula.perUse
direction: ASC
- property: formula.totalUses
direction: ASC
- property: acquired
direction: DESC
- property: file.name
direction: DESC
- property: rating
direction: DESC
- property: formula.Owned
direction: ASC
columnSize: columnSize:
file.name: 209 file.name: 209
note.acquired: 112
note.price: 78 note.price: 78
note.monthlyUses: 128 note.monthlyUses: 123
formula.perUse: 78 formula.perUse: 102
formula.Owned: 96 formula.Owned: 113
formula.totalUses: 115 formula.totalUses: 115
sort:
- column: note.acquired
direction: DESC
- column: note.monthlyUses
direction: DESC
- column: note.rating
direction: DESC
- column: formula.Owned
direction: ASC
- type: table - type: table
name: Cost per use name: Cost per use
filters: filters:
@@ -61,28 +66,29 @@ views:
- note.monthlyUses > 0 - note.monthlyUses > 0
order: order:
- file.name - file.name
- rating - acquired
- formula.perUse
- monthlyUses - monthlyUses
- price - price
- formula.totalUses
- formula.Owned - formula.Owned
- acquired - formula.totalUses
- formula.perUse
- type - type
columnSize: - rating
file.name: 209
formula.perUse: 77
note.monthlyUses: 82
note.price: 78
formula.totalUses: 122
formula.Owned: 96
sort: sort:
- column: formula.totalUses - property: acquired
direction: ASC
- property: monthlyUses
direction: DESC direction: DESC
- column: note.acquired - property: rating
direction: DESC
- column: note.monthlyUses
direction: DESC direction: DESC
columnSize:
file.name: 207
note.acquired: 112
note.monthlyUses: 131
note.price: 78
formula.Owned: 99
formula.totalUses: 100
formula.perUse: 93
- type: table - type: table
name: Maker name: Maker
filters: filters:
@@ -98,19 +104,19 @@ views:
- formula.Owned - formula.Owned
- acquired - acquired
- type - type
sort:
- property: file.name
direction: ASC
- property: formula.totalUses
direction: DESC
- property: acquired
direction: DESC
- property: monthlyUses
direction: DESC
columnSize: columnSize:
file.name: 209 file.name: 209
note.monthlyUses: 82 note.monthlyUses: 82
formula.totalUses: 115 formula.totalUses: 115
sort:
- column: file.name
direction: ASC
- column: formula.totalUses
direction: DESC
- column: note.acquired
direction: DESC
- column: note.monthlyUses
direction: DESC
- type: table - type: table
name: Type name: Type
filters: filters:
@@ -126,18 +132,18 @@ views:
- formula.Owned - formula.Owned
- acquired - acquired
- type - type
sort:
- property: rating
direction: DESC
- property: file.name
direction: ASC
- property: formula.totalUses
direction: DESC
- property: acquired
direction: DESC
- property: monthlyUses
direction: DESC
columnSize: columnSize:
file.name: 209 file.name: 209
note.monthlyUses: 82 note.monthlyUses: 82
formula.totalUses: 115 formula.totalUses: 115
sort:
- column: note.rating
direction: DESC
- column: file.name
direction: ASC
- column: formula.totalUses
direction: DESC
- column: note.acquired
direction: DESC
- column: note.monthlyUses
direction: DESC

View File

@@ -0,0 +1,12 @@
filters:
and:
- file.path.contains("/Templates")
views:
- type: table
name: Table
order:
- file.name
- categories
sort: []
columnSize:
file.name: 234

View File

@@ -10,8 +10,7 @@ isbn13:
year: year:
rating: rating:
topics: [] topics: []
created: created: {{date}}
"{ date }":
last: last:
via: "" via: ""
tags: tags:

View File

@@ -1,6 +1,8 @@
--- ---
categories: categories:
- "[[People]]" - "[[People]]"
tags:
- people
phone: phone:
twitter: twitter:
org: org:

View File

@@ -2,4 +2,4 @@
tags: tags:
- meetings/type - meetings/type
--- ---
![[Meetings.base]] ![[Meetings.base#Type]]

View File

@@ -1,5 +1,6 @@
--- ---
aliases: July 2023 aliases:
- July 2023
previous: "[[2023-06]]" previous: "[[2023-06]]"
next: "[[2023-08]]" next: "[[2023-08]]"
tags: tags:

View File

@@ -8,8 +8,7 @@ cast: []
runtime: runtime:
rating: rating:
year: year:
last: last: {{date}}
"{ date }":
imdbId: imdbId:
via: via:
tags: tags: