parent
0d10caf55c
commit
e38d8b5806
|
@ -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)
|
||||
|
|
|
@ -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!
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue