From e38d8b580612eaa425cb7680110c7e578117666a Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Tue, 27 Dec 2022 12:52:15 +0100 Subject: [PATCH] Changelog and RPI instructions --- website/CHANGELOG.md | 3 +- website/Raspberry Pi Installation.md | 45 ++++++++++++++++++++++++++++ website/Silver Bullet.md | 2 +- 3 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 website/Raspberry Pi Installation.md diff --git a/website/CHANGELOG.md b/website/CHANGELOG.md index 3739fae..d706e82 100644 --- a/website/CHANGELOG.md +++ b/website/CHANGELOG.md @@ -3,7 +3,7 @@ release. --- -## Next +## 0.2.5 * Changed styling for [[Frontmatter]], fenced code blocks, and directives to avoid vertical jumping when moving the cursor around. * Clicking the URL (inside of an image `![](url)` or link `[text](link)`) no longer navigates there, you need to click on the anchor text to navigate there now (this avoids a lot of weird behavior). * Most areas where you enter text (e.g. the page name, page switcher, command palette and filter boxes) now use a CodeMirror editor. This means a few things: @@ -17,6 +17,7 @@ release. ``` Two more plugs are now available that add [[🔌 Mermaid]] and [[🔌 KaTeX]] (LaTeX formula) support using this functionality. * To keep the UI clean, the dark mode button has been removed, and has been replaced with a command: {[Editor: Toggle Dark Mode]}. +* Added a command and short-cut for strike through (by [Evgenii Karagodin](https://github.com/silverbulletmd/silverbullet/pull/237)) * Bug fix: Long page names in titles now no longer overlap with action buttons. * Moving focus out of the page title now always performs a rename (previously this only happened when hitting `Enter`). * Clicking on a page reference in a `render` clause (inside of a directive) now navigates there (use Alt-click to just move the cursor) diff --git a/website/Raspberry Pi Installation.md b/website/Raspberry Pi Installation.md new file mode 100644 index 0000000..68f86c0 --- /dev/null +++ b/website/Raspberry Pi Installation.md @@ -0,0 +1,45 @@ +There are currently no official 64-bit ARM Linux builds available of [Deno](https://deno.land/). However, there are [unofficial ones](https://github.com/LukeChannings/deno-arm64). Here’s how to set that up. + +> **Note** Compatibility note +> This only works on **64-bit** versions of Linux. 32-bit is currently unsupported by Deno. + +For the record, this was tested on a 64-bit Ubuntu server install on a Raspberry Pi 4. But it should work on any 64-bit Linux. + +## Installing Deno +```shell +# Make sure you have unzip installed +$ apt install unzip +# Download a recent Deno build +$ wget https://github.com/LukeChannings/deno-arm64/releases/download/v1.29.1/deno-linux-arm64.zip +# Deno will use this directory for other binaries, so let's put Deno there too +$ mkdir -p ~/.deno/bin +$ cd ~/.deno/bin +$ unzip ~/deno-linux-arm64.zip +``` + +That’s it. You should now be able to run `~/.deno/bin/deno` just fine. + +Add `~/.deno/bin` to PATH, e.g. in `~/.bashrc` add: + +``` +export PATH=$PATH:~/.deno/bin +``` + +Then to verify: + +```shell +$ source ~/.bashrc +$ deno -V +``` + +Then, just follow the standard [[Silver Bullet]] installation instructions: + +```shell +$ deno install -f --name silverbullet -A --unstable https://get.silverbullet.md +$ mkdir ~/Notes +$ silverbullet ~/Notes --hostname 0.0.0.0 +``` + +And access it on `http://ip-of-pi:3000` + +Have fun! \ No newline at end of file diff --git a/website/Silver Bullet.md b/website/Silver Bullet.md index b7d8434..6dea631 100644 --- a/website/Silver Bullet.md +++ b/website/Silver Bullet.md @@ -87,7 +87,7 @@ Click on the links below to explore various aspects of Silver Bullet more in-dep ## Installing Silver Bullet This consists of two steps (unless Deno is already installed): -1. [Install Deno](https://deno.land/manual/getting_started/installation) +1. [Install Deno](https://deno.land/manual/getting_started/installation) (if you’re using a Raspberry Pi, follow [[Raspberry Pi Installation]]-specific instructions) 2. Installing Silver Bullet itself ### Install Silver Bullet