Skip to content

Commit 722a5ef

Browse files
4.1.0 (#46)
* 4.1.0 * Format
1 parent d78c0d4 commit 722a5ef

File tree

5 files changed

+39
-9
lines changed

5 files changed

+39
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes for Palette
22

3+
## 4.1.0 - 2024-04-09
4+
5+
### Added
6+
- Show links to section-specific entries (Thanks, @kylecotter)
7+
38
## 4.0.6 - 2024-03-27
49

510
### Added

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "trendyminds/craft-palette",
33
"description": "A command palette to easily jump to specific areas within Craft",
44
"type": "craft-plugin",
5-
"version": "4.0.6",
5+
"version": "4.1.0",
66
"keywords": ["palette", "craft", "craft cms", "cmdk", "spotlight", "craft plugin"],
77
"license": "MIT",
88
"authors": [

scripts/Icon.jsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
CodeBracketSquareIcon,
88
Cog8ToothIcon,
99
DocumentIcon,
10+
DocumentDuplicateIcon,
1011
GlobeAltIcon,
1112
MagnifyingGlassIcon,
1213
PaperClipIcon,
@@ -69,6 +70,10 @@ export default function Icon({ name, ...props }) {
6970
return <AdjustmentsVerticalIcon {...props} />
7071
}
7172

73+
if (name === 'docs') {
74+
return <DocumentDuplicateIcon {...props} />
75+
}
76+
7277
if (name === 'user') {
7378
return <UserCircleIcon {...props} />
7479
}

0 commit comments

Comments
 (0)