Skip to content

Commit e7944d2

Browse files
authored
Merge pull request #81 from cytechmobile/docs/update-changelog
docs(changelog): update changelog
2 parents 24b4536 + 57c50fe commit e7944d2

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Radicle Planning Boards Change Log
22

3+
## **v0.2.0** - Jul 3rd 2024
4+
5+
### 🚀 Enhancements
6+
7+
- Add support for filtering via a text field
8+
- Uses partial string matching on the id, title, and labels of cards
9+
- Filters the cards while keeping their column and order
10+
- Visually highlights the matched substring(s) on each card
11+
- Features shortcuts for focusing and blurring the filterbox (`Ctrl/Cmd+F` and `Escape`
12+
respectively)
13+
- Filtering state synced with and driven by the URL means that any links you copy at any
14+
time and send to others will result in the same cards shown on their screen
15+
16+
### 🧹 Chores
17+
18+
- Add docker container packaging configuration
19+
- Set up unit testing
20+
- Update packages
21+
322
## **v0.1.0** - Apr 23rd 2024
423

524
### 🚀 Enhancements

compose.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,18 @@ version: '3.8'
22

33
services:
44
planning-boards:
5-
image: quay.io/radicle_in_containers/radicle-planning-boards
5+
image: quay.io/radicle_in_containers/radicle-planning-boards
66
container_name: radicle-planning-boards
77
build:
88
dockerfile: ./Containerfile
99
context: .
1010
args:
1111
- NUXT_PUBLIC_PARENT_ORIGIN
1212
ports:
13-
- "3090:80"
13+
- '3090:80'
1414
volumes:
1515
- ./Caddyfile:/etc/caddy/Caddyfile
1616
- boards_caddy_data:/data
1717

18-
1918
volumes:
20-
boards_caddy_data:
19+
boards_caddy_data:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "radicle-planning-boards",
33
"type": "module",
4-
"version": "0.1.0",
4+
"version": "0.2.0",
55
"private": true,
66
"packageManager": "[email protected]",
77
"license": "./LICENSE",

0 commit comments

Comments
 (0)