@getdonetoday/gdt 0.1.0-alpha.9 → 0.2.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/CHANGELOG.md +163 -0
- package/dist/cli.js +1721 -769
- package/package.json +17 -4
package/dist/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,169 @@
|
|
|
2
2
|
|
|
3
3
|
查看完整历史记录: https://getdone.today/changelog
|
|
4
4
|
|
|
5
|
+
## [0.1.0-alpha.10]
|
|
6
|
+
|
|
7
|
+
*2026-01-21*
|
|
8
|
+
|
|
9
|
+
### ✨ Highlights
|
|
10
|
+
|
|
11
|
+
**Entity Highlighting** — Your terminal just got smarter. GDT now recognizes and highlights:
|
|
12
|
+
- Task IDs (`#abc123`) in magenta
|
|
13
|
+
- Dates (`2024-01-21`, `today`, `周一`) in cyan
|
|
14
|
+
- Times (`09:30`, `14:00-16:00`) in yellow
|
|
15
|
+
- Contexts (`@office`, `@电脑`) in blue
|
|
16
|
+
- Projects (`+work`, `+personal`) in green
|
|
17
|
+
|
|
18
|
+
**Visual Timeline Improvements** — Daily schedules now show duration proportionally:
|
|
19
|
+
- 30 minutes = 1 row, 2 hours = 4 rows
|
|
20
|
+
- Consecutive tasks alternate between `██████` and `▓▓▓▓▓▓` patterns
|
|
21
|
+
- Breaks and lunch show as dots `······` instead of dashes
|
|
22
|
+
|
|
23
|
+
### 🖥️ Platform Support
|
|
24
|
+
|
|
25
|
+
- **Windows clipboard**: Image paste now works via PowerShell
|
|
26
|
+
- Complete cross-platform support: macOS, Linux, Windows
|
|
27
|
+
|
|
28
|
+
### ⚡ Performance & Reliability
|
|
29
|
+
|
|
30
|
+
- Paste debounce prevents duplicate operations
|
|
31
|
+
- New logging system with automatic rotation (5MB max, 5 files)
|
|
32
|
+
- 42 new clipboard tests ensure reliability across platforms
|
|
33
|
+
|
|
34
|
+
### 📚 Documentation
|
|
35
|
+
|
|
36
|
+
- Added PRD for Context Management (F0.1) and Task Decomposition (F1.1)
|
|
37
|
+
- Updated commands reference
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## [0.2.0-]beta.2
|
|
42
|
+
|
|
43
|
+
*2026-02-03*
|
|
44
|
+
|
|
45
|
+
**New Features**
|
|
46
|
+
- Add recurring tasks, relative dates, and eval improvements (#79)
|
|
47
|
+
|
|
48
|
+
**Documentation**
|
|
49
|
+
- Add recurring tasks and natural dates documentation
|
|
50
|
+
- Fix changelog order and enhance v0.2.0-beta.1 entry
|
|
51
|
+
- Update homepage to v0.2.0-beta
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
## [0.2.0-]beta.1
|
|
56
|
+
|
|
57
|
+
*2026-02-02*
|
|
58
|
+
|
|
59
|
+
**New Features**
|
|
60
|
+
- Implement calendar views and settings page (Phase 6) (#78)
|
|
61
|
+
|
|
62
|
+
**Maintenance**
|
|
63
|
+
- Bump version to 0.2.0-beta
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## [0.1.0-]alpha.13
|
|
68
|
+
|
|
69
|
+
*2026-01-31*
|
|
70
|
+
|
|
71
|
+
**New Features**
|
|
72
|
+
- Implement Notion database importer (Phase 7) (#73)
|
|
73
|
+
- Implement Microsoft To Do and OmniFocus importers (Phase 6) (#72)
|
|
74
|
+
- Add generic CSV and JSON importers with templates (#71)
|
|
75
|
+
- Integrate backup command into CLI (#70)
|
|
76
|
+
- Implement TickTick and Google Tasks importers (Phase 4) (#69)
|
|
77
|
+
- Implement Apple Reminders importer (Phase 3) (#68)
|
|
78
|
+
- Implement Todoist importer (Phase 2) (#67)
|
|
79
|
+
- Implement data import infrastructure (Phase 1) (#66)
|
|
80
|
+
- Implement comprehensive data backup module (#65)
|
|
81
|
+
|
|
82
|
+
**Bug Fixes**
|
|
83
|
+
- Put full title in name field for single line display
|
|
84
|
+
- Use stronger selectors for hero inline display
|
|
85
|
+
- Correct hero inline display for name and text
|
|
86
|
+
- Add activeMatch to nav items for proper highlighting
|
|
87
|
+
|
|
88
|
+
**Documentation**
|
|
89
|
+
- Update documentation for v0.1.0-alpha.13 release (#76)
|
|
90
|
+
- Mark Data Import Phase 4 as completed
|
|
91
|
+
- Improve calendar integration guide with best practices (#64)
|
|
92
|
+
- Improve conversation example with multi-feature showcase
|
|
93
|
+
- Add version banner and calendar-aware conversation example
|
|
94
|
+
- Add Calendar Integration to guide sidebar
|
|
95
|
+
- Remove duplicate v0.1.0-alpha.12 entries
|
|
96
|
+
|
|
97
|
+
**Maintenance**
|
|
98
|
+
- Fix tests after native Anthropic SDK migration (#75)
|
|
99
|
+
- Add comprehensive unit tests for importers (Phase 8) (#74)
|
|
100
|
+
- Add dark mode icon variants
|
|
101
|
+
- Use SVG file icons instead of inline SVG
|
|
102
|
+
- Replace emoji icons with SVG line icons
|
|
103
|
+
- Combine hero name and text on single line
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
## [0.1.0-]alpha.12
|
|
108
|
+
|
|
109
|
+
*2026-01-25*
|
|
110
|
+
|
|
111
|
+
**New Features**
|
|
112
|
+
- Add i18n system, calendar integration, and improved prompt accuracy (#63)
|
|
113
|
+
- Add opt-in CLI usage statistics and update specs status (#58)
|
|
114
|
+
|
|
115
|
+
**Improvements**
|
|
116
|
+
- Prioritize direct task execution over questioning (#62)
|
|
117
|
+
- Migrate from raw Anthropic API to GDTAgent SDK (#61)
|
|
118
|
+
|
|
119
|
+
**Bug Fixes**
|
|
120
|
+
- Update token thresholds and UI element assertions
|
|
121
|
+
|
|
122
|
+
**Documentation**
|
|
123
|
+
- Update F0.1 context-management tasks to completed status
|
|
124
|
+
- Remove duplicate divider in changelog
|
|
125
|
+
- Improve v0.1.0-alpha.11 release notes
|
|
126
|
+
|
|
127
|
+
**Maintenance**
|
|
128
|
+
- Improve P1 and P2 test coverage (#60)
|
|
129
|
+
- Add comprehensive E2E tests for MCP tool integration (#59)
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
## [0.1.0-]alpha.11
|
|
134
|
+
|
|
135
|
+
*2026-01-21*
|
|
136
|
+
|
|
137
|
+
**Bug Fixes**
|
|
138
|
+
- Resolve JSX runtime bundling issue causing TypeError
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
## [0.1.0-]alpha.9
|
|
143
|
+
|
|
144
|
+
*2026-01-19*
|
|
145
|
+
|
|
146
|
+
**Documentation**
|
|
147
|
+
- Add calendar and memory commands documentation
|
|
148
|
+
|
|
149
|
+
**Maintenance**
|
|
150
|
+
- Remove dead code, unify test framework to bun, fix lint errors (#54)
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## [0.1.0-]alpha.8
|
|
155
|
+
|
|
156
|
+
*2026-01-19*
|
|
157
|
+
|
|
158
|
+
**New Features**
|
|
159
|
+
- Add session migration, summary context, and UX improvements (#53)
|
|
160
|
+
- Enhance exit message with expert perspectives (#52)
|
|
161
|
+
- Enhance calendar command with colorful ANSI output and multiple views (#51)
|
|
162
|
+
|
|
163
|
+
**Bug Fixes**
|
|
164
|
+
- Correct changelog version header format
|
|
165
|
+
|
|
166
|
+
---
|
|
167
|
+
|
|
5
168
|
## [0.1.0-alpha.7]
|
|
6
169
|
|
|
7
170
|
*2026-01-18*
|