File tree Expand file tree Collapse file tree 3 files changed +23
-5
lines changed Expand file tree Collapse file tree 3 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Radicle Planning Boards Change Log
2
2
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
+
3
22
## ** v0.1.0** - Apr 23rd 2024
4
23
5
24
### 🚀 Enhancements
Original file line number Diff line number Diff line change @@ -2,19 +2,18 @@ version: '3.8'
2
2
3
3
services :
4
4
planning-boards :
5
- image : quay.io/radicle_in_containers/radicle-planning-boards
5
+ image : quay.io/radicle_in_containers/radicle-planning-boards
6
6
container_name : radicle-planning-boards
7
7
build :
8
8
dockerfile : ./Containerfile
9
9
context : .
10
10
args :
11
11
- NUXT_PUBLIC_PARENT_ORIGIN
12
12
ports :
13
- - " 3090:80"
13
+ - ' 3090:80'
14
14
volumes :
15
15
- ./Caddyfile:/etc/caddy/Caddyfile
16
16
- boards_caddy_data:/data
17
17
18
-
19
18
volumes :
20
- boards_caddy_data:
19
+ boards_caddy_data :
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " radicle-planning-boards" ,
3
3
"type" : " module" ,
4
- "version" : " 0.1 .0" ,
4
+ "version" : " 0.2 .0" ,
5
5
"private" : true ,
6
6
"packageManager" :
" [email protected] " ,
7
7
"license" : " ./LICENSE" ,
You can’t perform that action at this time.
0 commit comments