From 528351438d23b3c778fad1fa8ad88c598fd7c2be Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Sat, 27 Jul 2024 10:35:38 +0200 Subject: [PATCH] 0.8.3 --- version.ts | 2 +- website/CHANGELOG.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/version.ts b/version.ts index 459ea4b4..7377f5fd 100644 --- a/version.ts +++ b/version.ts @@ -1 +1 @@ -export const version = "0.8.2"; +export const version = "0.8.3"; diff --git a/website/CHANGELOG.md b/website/CHANGELOG.md index faac5b79..5fed58e1 100644 --- a/website/CHANGELOG.md +++ b/website/CHANGELOG.md @@ -6,14 +6,19 @@ release. ## Edge _These features are not yet properly released, you need to use [the edge builds](https://community.silverbullet.md/t/living-on-the-edge-builds/27) to try them._ +* Nothing yet since 0.8.3. Stay tuned! + +## 0.8.3 * [[Page Picker#Keyboard shortcuts]]: allow folder completion using Shift-Space (by [Marek S. Łukasiewicz](https://github.com/silverbulletmd/silverbullet/pull/961)) * New [[Page Decorations]]: ability to hide pages from the page picker and auto complete (by [Marek S. Łukasiewicz](https://github.com/silverbulletmd/silverbullet/pull/962)) * The [[Expression Language]] now supports decimal numbers 🤯 (e.g. `3.14`) * Non-existing pages that have been previously linked to (so effectively: broken links) now appear in the [[Page Picker]] (with a “Create page” hint) as well as in [[Links]] auto complete (marked as “Linked but not created”). This should make it easier to “fill in the gaps”: you can liberally create page links, and create those pages later easily via the page picker. +* New [[Space Script]] feature: [[Space Script#Custom HTTP endpoints]]: create custom endpoints on your SilverBullet server (under the `/_/` prefix). * Added Ruby [[Markdown/Syntax Highlighting]] (by [Bo Jeanes](https://github.com/silverbulletmd/silverbullet/pull/966)) * **Fix**: Due to some race conditions some situations pages would disappear from the index (e.g. from the [[Page Picker]]), this should now be fixed * New [[SETTINGS]]: `pwaOpenLastPage` and `useSmartQuotes` (latter by [Marek S. Łukasiewicz](https://github.com/silverbulletmd/silverbullet/pull/960)) * **Fix**: CORS issues in Firefox (admonition related) (by [onespaceman](https://github.com/silverbulletmd/silverbullet/pull/964)) +* **Technical:** Did another round of dependency upgrades and cleaned up some dead code. ---