File tree Expand file tree Collapse file tree 5 files changed +45
-5
lines changed
design/layout/LayoutElements Expand file tree Collapse file tree 5 files changed +45
-5
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,17 @@ const router = createHashRouter([
66
66
} ,
67
67
{
68
68
path : 'changelog' ,
69
+ element : < Navigate to = "/changelog" replace />
70
+ }
71
+ ]
72
+ } ,
73
+ {
74
+ path : '/changelog' ,
75
+ element : < Docs /> ,
76
+ errorElement : < Error /> ,
77
+ children : [
78
+ {
79
+ index : true ,
69
80
element : < Changelog />
70
81
}
71
82
]
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ export default function DocsNavigation() {
67
67
{
68
68
title : 'Changelog' ,
69
69
icon : aiStar ,
70
- link : '/docs/ changelog'
70
+ link : '/changelog'
71
71
}
72
72
]
73
73
}
Original file line number Diff line number Diff line change @@ -10,19 +10,39 @@ export default function Changelog() {
10
10
< Release
11
11
name = "Amicons 1.0 alpha 8"
12
12
version = "1.0.0-alpha.8"
13
- date = "April 2024"
13
+ date = "17 November 2024"
14
14
newIcons = { [
15
+ 'angles-x' ,
16
+ 'apple' ,
15
17
'arrow-left-arrow-right' ,
16
18
'arrow-rotate-left' ,
17
19
'bars-uneven' ,
20
+ 'burger-glass' ,
21
+ 'cloud-softphone' ,
22
+ 'diagram' ,
23
+ 'fanvil' ,
24
+ 'glass' ,
25
+ 'grip-dots-h' ,
18
26
'magnifying-glass-min' ,
27
+ 'magnifying-glass-min' ,
28
+ 'magnifying-glass-plus' ,
19
29
'magnifying-glass-plus' ,
30
+ 'microphone-slash' ,
31
+ 'moped' ,
20
32
'order-alphabetical-asc' ,
21
33
'order-alphabetical-desc' ,
22
34
'order-numerical-asc' ,
23
- 'order-numerical-desc'
35
+ 'order-numerical-desc' ,
36
+ 'password' ,
37
+ 'phone-xmark' ,
38
+ 'teams' ,
39
+ 'yealink'
40
+ ] }
41
+ updatedIcons = { [ 'angles-y' , 'magnifying-glass' , 'windows' ] }
42
+ renamedIcons = { [
43
+ { old : 'thumbstack' , new : 'thumbtack' } ,
44
+ { old : 'thumbstack-slash' , new : 'thumbtack-slash' }
24
45
] }
25
- updatedIcons = { [ 'magnifying-glass' ] }
26
46
/>
27
47
< Release
28
48
name = "Amicons 1.0 alpha 7"
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ export default function Footer() {
79
79
</ ListItemButton >
80
80
</ ListItem >
81
81
< ListItem >
82
- < ListItemButton color = "primary" variant = "soft" component = { NavLink } to = "/docs/ changelog" >
82
+ < ListItemButton color = "primary" variant = "soft" component = { NavLink } to = "/changelog" >
83
83
< ListItemContent >
84
84
< Typography > Changelog</ Typography >
85
85
</ ListItemContent >
Original file line number Diff line number Diff line change @@ -78,6 +78,15 @@ export default function Navbar() {
78
78
>
79
79
Docs
80
80
</ Button >
81
+ < Button
82
+ component = { NavLink }
83
+ to = "/changelog"
84
+ variant = { location ?. pathname ?. startsWith ( '/changelog' ) ? 'solid' : 'plain' }
85
+ size = "sm"
86
+ color = { location ?. pathname ?. startsWith ( '/changelog' ) ? 'primary' : 'primary' }
87
+ >
88
+ Changelog
89
+ </ Button >
81
90
</ Stack >
82
91
< Stack direction = "row" justifyContent = "flex-end" >
83
92
< IconButton size = "sm" variant = "plain" color = "primary" component = "a" href = "https://github.com/studio384/amaranth" target = "_blank" >
You can’t perform that action at this time.
0 commit comments