From 006ad76c85cfdda2c385f96b1948ecef7b339d2c Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Wed, 19 Oct 2022 11:30:36 +0200 Subject: [PATCH] Rename fulltext search --- ...fulltext.knex_sqlite.ts => fulltext.sqlite.ts} | 0 server/http_server.ts | 2 +- website/CHANGELOG.md | 15 ++++++++++++--- 3 files changed, 13 insertions(+), 4 deletions(-) rename plugos/syscalls/{fulltext.knex_sqlite.ts => fulltext.sqlite.ts} (100%) diff --git a/plugos/syscalls/fulltext.knex_sqlite.ts b/plugos/syscalls/fulltext.sqlite.ts similarity index 100% rename from plugos/syscalls/fulltext.knex_sqlite.ts rename to plugos/syscalls/fulltext.sqlite.ts diff --git a/server/http_server.ts b/server/http_server.ts index e67f3a8..8b6a4a0 100644 --- a/server/http_server.ts +++ b/server/http_server.ts @@ -18,7 +18,7 @@ import fileSystemSyscalls from "../plugos/syscalls/fs.deno.ts"; import { ensureFTSTable, fullTextSearchSyscalls, -} from "../plugos/syscalls/fulltext.knex_sqlite.ts"; +} from "../plugos/syscalls/fulltext.sqlite.ts"; import sandboxSyscalls from "../plugos/syscalls/sandbox.ts"; import shellSyscalls from "../plugos/syscalls/shell.node.ts"; import { diff --git a/website/CHANGELOG.md b/website/CHANGELOG.md index 8a38a59..6542bad 100644 --- a/website/CHANGELOG.md +++ b/website/CHANGELOG.md @@ -4,9 +4,18 @@ release. --- ## 0.1.3 -* Frontmatter support! You can now use front matter in your markdown, to do this start your page with `---` and end it with `---`. This will now be the preferred way to define page meta data (although the old way will still work). The old `/meta` slash command has now been replaced with `/front-matter`. -* Tags are now indexed as page meta without the prefixing `#` character, the reason is to make this compatible with Obsidian. You can now attach tags to your page either by just using a `#tag` at the top level of your page, or by adding a `tags` attribute to your front matter. -* Silver Bullet now runs on Windows! + +- Silver Bullet now runs on Windows! +- Frontmatter support! You can now use front matter in your markdown, to do this + start your page with `---` and end it with `---`. This will now be the + preferred way to define page meta data (although the old way will still work). + The old `/meta` slash command has now been replaced with `/front-matter`. +- Tags are now indexed as page meta without the prefixing `#` character, the + reason is to make this compatible with Obsidian. You can now attach tags to + your page either by just using a `#tag` at the top level of your page, or by + adding a `tags` attribute to your front matter. +- {[Search Space]} works again. You may have to {[Space: Reindex]} to get + results. ---