Skip to content

Commit f5c2e4a

Browse files
committed
feat(ui): mark popover settings as experimental with badge
1 parent 1acc28c commit f5c2e4a

4 files changed

Lines changed: 28 additions & 2 deletions

File tree

Budfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ docker-build() {
3333
docker buildx build \
3434
--platform linux/amd64,linux/arm64 \
3535
--tag "$tag" \
36+
--output type=docker \
3637
.
3738
}
3839

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# tasktrove
22

3+
## 0.6.0
4+
5+
### Features
6+
7+
🎉 Feature - Add i18n support with 6 supported languages. 🌐
8+
🎉 Feature - Add showOverdue toggle to view options.
9+
🎉 Feature - Add project group navigation and viewing functionality. (#38)
10+
🎉 Feature - Added linkify settings and allow links in task titles.
11+
🎉 Feature - Added hover popover settings.
12+
🎉 Feature - Add sound enable/disable setting. (#41)
13+
14+
### Minor Changes
15+
16+
🎉 Feature - Add max-width constraints to task view for wide screens. (#40)
17+
🎉 Feature - Add context menu to task side panel.
18+
🎉 Feature - Improve TimeEstimationPicker with ContentPopover and immediate preset application.
19+
20+
### Patch Changes
21+
22+
🐛 Bug - Prevent audio settings reset when toggling linkify.
23+
🐛 Bug - Resolve hover popover instability with debounced state management.
24+
🐛 Bug - Resolve TaskDueDate component preventing schedule popover from opening.
25+
🐛 Bug - Resolve popover viewport overflow with collision detection.
26+
🐛 Bug - Prevent auto-focus on popover content when opening.
27+
328
## 0.5.0
429

530
### Features

components/dialogs/settings-forms/general-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ export function GeneralForm() {
246246
</SettingsCard>
247247

248248
{/* Popover Settings */}
249-
<SettingsCard title={t("general.popovers.title", "Popovers")}>
249+
<SettingsCard title={t("general.popovers.title", "Popovers")} experimental>
250250
<div className="flex items-center justify-between">
251251
<div className="space-y-0.5">
252252
<Label htmlFor="popover-hover-open">

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tasktrove",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"private": true,
55
"scripts": {
66
"build": "next build",

0 commit comments

Comments
 (0)