pull/290/head 0.2.6
Zef Hemel 2023-01-05 15:26:56 +01:00
parent 23d090eed0
commit 7e6781012e
4 changed files with 18 additions and 12 deletions

View File

@ -3,7 +3,6 @@ name: Build & Release
on:
push:
tags:
- v*
jobs:
build:
name: Build (${{ matrix.os }} - ${{ matrix.arch }})
@ -11,14 +10,14 @@ jobs:
strategy:
matrix:
include:
- os: macOS-latest
arch: arm64
- os: macOS-latest
arch: x64
- os: windows-latest
arch: x64
- os: ubuntu-latest
arch: x64
- os: macOS-latest
arch: arm64
- os: macOS-latest
arch: x64
- os: windows-latest
arch: x64
- os: ubuntu-latest
arch: x64
steps:
- uses: actions/checkout@v3

View File

@ -1,12 +1,12 @@
{
"name": "silverbullet",
"version": "0.0.2",
"version": "0.2.6",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "silverbullet",
"version": "0.0.2",
"version": "0.2.6",
"license": "MIT",
"dependencies": {
"@electron-forge/publisher-github": "^6.0.4",

View File

@ -1,6 +1,6 @@
{
"name": "silverbullet",
"version": "0.0.3",
"version": "0.2.6",
"description": "Markdown as a platform",
"main": ".webpack/main",
"scripts": {

View File

@ -3,6 +3,13 @@ release.
---
## 0.2.6
* Various bug fixes
* First version of experimental [Electron-based desktop app](https://github.com/silverbulletmd/silverbullet/releases) for Mac, Windows and Linux.
---
## 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).