5.5 KiB
5.5 KiB
An attempt at documenting of the changes/new features introduced in each release.
0.0.35
- Big refactor of the internal Space API unifying attachment and page handling. This shouldn't affect (most) existing code and plugs (except some more exotic areas), but if stuff breaks, please report it.
- Technical change: Upgrades are now detected on the server-side, and plugs re-loaded and pages indexes upon every upgrade.
- Various bug fixes (e.g. using HTML tags in a page before completely broke syntax highlighting)
- Exposed
fulltext.*syscalls on the client
0.0.34
- Change to attachment handling: the
attachment/prefix for links and images is no longer used, if you already had links to attachments in your notes, you will need to remove theattachment/prefix manually. Sorry about that. - Improved styling for completion (especially slash commands)
- Completion for commands using the (undocumented)
{[Command Syntax]}— yep, that exists.
0.0.33
- Attachments: you can now copy & paste, or drag & drop files (images, PDF, whatever you like) into a page and it will be uploaded and appropriately linked from your page. Attachment size is currently limited to 100mb.
- Changed full-text search page prefix from
@search/to🔍for the {[Search Space]} command. page,plugandattachmentare now reserved page names, you cannot name your pages these (you will get an error when explicitly navigating to them).
0.0.32
- Inline image previews: use the standard
notation and a preview of the image will appear automatically. Example:
- Dark mode. Toggle between the dark and light mode using a new button, top-right.

- Named anchors and references, create an anchor with the new @anchor notation (anywhere on a page), then reference it locally via @anchor or cross page via CHANGELOG@anchor.
0.0.31
- Update to the query language: the
renderclause now uses page reference syntax[[page]]. For examplerender [[template/task]]rather thanrender "template/task". The old syntax still works, but is deprecated, completion for the old syntax has been removed. - Updates to templates:
- For the
Template: Instantiate Pagecommand, the page meta value$nameis now used to configure the page name (wasnamebefore). Also if$nameis the only page meta defined, it will remove the page meta entirely when instantiating. - You can now configure a daily note prefix with
dailyNotePrefixinSETTINGSand create a template for your daily note undertemplate/page/Daily Note(configurable via thedailyNoteTemplatesetting). - You can now a quick note prefix with
quickNotePrefixinSETTINGS.
- For the
- Directives (e.g.
#query,#import,#use) changes:- Renamed
#templatedirective to#use-verbose - New
#usedirective will clean all the embedded queries and templates in its scope - All directives now use the page reference syntax
[[page name]]instead of"page name", this includes#useand#use-verboseas well as#import. - The
linkquery provider now also returns theposof a link (in addition to thepage) - New
$disableDirectivespage meta data attribute can be used to disable directives processing in a page (useful for templates)
- Renamed
- Added a new
/hrslash command to insert a horizontal rule (---) useful for mobile devices (where these are harder to type)
0.0.30
- Slash commands now only trigger after a non-word character to avoid "false positives" like "hello/world".
- Page auto complete now works with slashes in the name.
- Having a
SETTINGSpage is now mandatory. One is auto generated if none is present. - Added a
indexPagesetting to set the index page for the space (which by default isindex). When navigating to this page, the page name will "disappear" from the URL. That is, the index URL will simply behttp://localhost:3000/.- This feature is now used in
websiteand set toSilver Bulletthere. To also make the title look nicer when visiting https://silverbullet.md
- This feature is now used in
0.0.29
- Added the
Link: Unfurlcommand, which is scoped to only work (and be visible) when used on “naked URLs”, that is: URLs not embedded in a link or other place, such as this one: https://silverbullet.md- Plugs can implement their own unfurlers by responding to the
unfurl:optionsevent (see the Twitter plug for an example). - Core implements only one unfurl option: “Extract title” which pulls the
<title>tag from the linked URL and replaces it with a[bla](URL)style link.
- Plugs can implement their own unfurlers by responding to the
- Removed status bar: to further simplify the SB UI. You can still pull up the same stat on demand with the
Stats: Showcommand. - The page switcher is now maintaining its ordering based on, in order:
- Last opened pages (in current session)
- Last modified date (on disk)
- Everything else
- The currently open page (at the bottom)
- Filter boxes (used for the page switching and command palette among other things) now also support PgUp, PgDown, Home and End and have some visual glitches fixed as well.
- Reverted exposing an empty
windowobject to sandboxes running in workers and node.js (introduced in 0.0.28) - Renamed Markdown-preview related commands to something more consistent