Merge branch 'master' into feature/ocr

# Conflicts:
#	src/database.ts
#	src/file-loader.ts
#	src/main.ts
#	src/pdf/pdf-manager.ts
This commit is contained in:
Simon Cambier
2022-11-05 18:16:16 +01:00
12 changed files with 310 additions and 196 deletions

View File

@@ -28,7 +28,7 @@
}
$: reg = stringsToRegex(note.foundWords)
$: cleanedContent = makeExcerpt(note.content, note.matches[0]?.offset ?? -1)
$: glyph = cacheManager.getDocument(note.path)?.doesNotExist
$: glyph = cacheManager.getLiveDocument(note.path)?.doesNotExist
$: title = settings.showShortName ? note.basename : note.path
</script>