aboutsummaryrefslogtreecommitdiffstats
path: root/.thicket
Commit message (Collapse)AuthorAgeFilesLines
* UI Refinements: remove redundant header and fix global monospace font stackAdam Mathes12 days1-5/+7
|
* Add UI styling tickets to thicket and update task.mdAdam Mathes12 days1-1/+11
|
* Implement Tag View and fix testsAdam Mathes12 days1-2/+2
|
* Implement Frontend Settings with testsAdam Mathes12 days1-1/+5
|
* Implement Frontend Logout with testsAdam Mathes12 days1-1/+3
|
* Implement Item Interactions (read/star) with testsAdam Mathes12 days1-1/+3
|
* Implement Frontend Feed Items View with testsAdam Mathes12 days1-1/+3
|
* Implement Frontend Feed List with testsAdam Mathes13 days1-8/+10
|
* Implement frontend login logic with >90% coverageAdam Mathes13 days1-1/+4
|
* Scaffold new frontend and close NK-t0nmbjAdam Mathes13 days1-1/+7
|
* wip: tui updates (buggy)Adam Mathes13 days1-1/+1
|
* Fix TUI content view navigation and interactionAdam Mathes13 days1-0/+4
| | | | | | | | - Integrated viewport.Model for scrollable content view - Fixed 'q' and 'esc' navigation from content view - Added unit tests for content state transitions and rendering - Cleaned up unused TUI delegate code - Increased TUI package coverage to ~70%
* Implement Bubble Tea Terminal UI (TUI)Adam Mathes13 days1-1/+1
| | | | | | | - Added Bubble Tea, Lipgloss, and Bubbles dependencies - Implemented TUI package in tui/ for browsing feeds and items - Added --tui flag to main command - Verified build and existing tests
* Update go.mod and ticket statusAdam Mathes13 days1-0/+4
|
* Refactor backend to a clean REST APIAdam Mathes13 days1-3/+3
| | | | | | | | | | - Created new 'api' package with testable router and RESTful handlers - Handlers in 'api' use proper HTTP methods and status codes - Standardized JSON responses and error handling - Refactored 'web' package to delegate logic to 'api' - Maintained backward compatibility for legacy frontend routes - Simplified 'web/web_test.go' and added comprehensive 'api/api_test.go' - All tests passing with improved modularity
* Add comprehensive test suite — 81% cross-package coverageAdam Mathes13 days2-0/+9
Bug fixes: - config: remove unused log import - item: fix Printf format %d->%t for boolean ReadState - util: update stale config.Read -> config.Init, remove config.Config.DBServer Test files added: - config/config_test.go: Init, readConfig, addDefaults (100%) - vlog/vlog_test.go: Printf, Println verbose/silent (100%) - models/db_test.go: InitDB tests - models/feed/feed_test.go: CRUD, filter, Categories, NewFeed, ResolveFeedURL (87%) - models/item/item_test.go: CRUD, Filter with category/search/starred, rewriteImages (71%) - exporter/exporter_test.go: all export formats (91%) - importer/importer_test.go: InsertIItem, ImportJSON (90%) - crawler/crawler_test.go: GetFeedContent, CrawlFeed, CrawlWorker, Crawl (89%) - web/web_test.go: auth, login/logout, stream, item, feed, category, export, crawl, imageProxy handlers (77%) Remaining 0% functions require HTTP/rice.MustFindBox/main entry and can't be unit tested without refactoring (see tickets NK-gqkh96, NK-6q9nyg).