Skip to content

Commit aa2ec88

Browse files
committed
release next alpha '0.6.0-alpha.2'
1 parent bfec470 commit aa2ec88

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,23 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.6.0-alpha.2] - 2023-05-28
8+
### Added
9+
- theme picker to choose between light/dark themes
10+
- error handling for frontend
11+
- ability to push "toasts" to screen
12+
- user search functionality (to access public notebooks)
13+
### Changed
14+
- improved loading screens
15+
- support for GFM (GitHub flavoured markdown)
16+
- tab to toggle between rendered and raw view
17+
### Fixed
18+
- arm64 & amd64 docker image (was broken)
19+
- disable edit screen when viewing a read-only notebook/note
20+
721
## [0.6.0-alpha] - 2023-05-26
822
### Changed
9-
Complete overhaul of original Note Mark project.
23+
- Complete overhaul of original Note Mark project.
1024

1125
## [0.5.0] - 2022-07-15
1226
### Changed

docs/deploy.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ This app consists of two components, the backend (api) and the frontend.
2929
> - `<major>.<minor>.<patch>`
3030
3131
```
32-
ghcr.io/enchant97/note-mark-frontend:0.6.0-alpha
32+
ghcr.io/enchant97/note-mark-frontend:0.6.0-alpha.2
3333
```
3434

3535
```
36-
ghcr.io/enchant97/note-mark-backend:0.6.0-alpha
36+
ghcr.io/enchant97/note-mark-backend:0.6.0-alpha.2
3737
```
3838

3939
Here is an example using Docker Compose and a NGINX reverse proxy:
@@ -47,7 +47,7 @@ volumes:
4747

4848
services:
4949
backend:
50-
image: ghcr.io/enchant97/note-mark-backend:0.6.0-alpha
50+
image: ghcr.io/enchant97/note-mark-backend:0.6.0-alpha.2
5151
restart: unless-stopped
5252
volumes:
5353
- data:/data
@@ -56,7 +56,7 @@ services:
5656
CORS_ORIGINS: "http://example.com"
5757

5858
frontend:
59-
image: ghcr.io/enchant97/note-mark-frontend:0.6.0-alpha
59+
image: ghcr.io/enchant97/note-mark-frontend:0.6.0-alpha.2
6060
restart: unless-stopped
6161

6262
proxy:

0 commit comments

Comments
 (0)