πͺ Created hooks for session management
π¦ Added Bluesky sharing functionality #οΈβ£ Enhanced posts with hashtag support 𧡠Published first thread via Bluesky API π 23 β 1201 β 388
π Refactored session and authentication logic π¦ Added Bluesky connection functionality π Implemented project import and editing features π§ Added search, sort, and live session management components π 67 β 1641 β 592
β¨ Renamed platform to CodeCook.live π Massive refactor: threads β sessions, sections β blocks π Added project edit page with form components π 111 β 1553 β 1354
π Improved Typescript interfaces π Refactored thread fetching and parsing for clarity π Added waitlist dialog and join functionality β¨ Enhanced project details with homepage field π 40 β 694 β 291
π Added CommitLink and CommitLinkSelector components π Enhanced ThreadEditor with auto-save π Updated thread editing and creation API π 24 β 700 β 206
π Enhanced ThreadEditor with filtering, error handling, and dynamic sections πΌ Added avatar upload and profile editing β¨ Improved thread and project management π 94 β 2372 β 611
π Refactored GitHub commits API and user profile logic π Enhanced ThreadEditor with code changes + syntax highlighting π€ Added AI assist for writing threads π Improved ProjectPage and UserPage π 63 β 1571 β 484
π€ Added AI-generated thread ideas π Enhanced ThreadEditor with image upload and title selection π Refactored UI for thread creation and file selection π Improved GitHub auth and CommitDiff π 49 β 2555 β 588
π Merry Christmas! π€ Added AI connection to ThreadEditor π¦ Installed AI libraries π 7 β 373 β 101
π Added ThreadEditor with drag-and-drop and Markdown support π Refactored commit and profile handling π€ Integrated OpenAI for AI-assisted thread creation π 38 β 2204 β 340
π€ Added user authentication and sign-in flow π Refactored GitHub integration and project logic π Built CommitManager for managing commits π Enhanced UI for projects and profiles π Implemented database migrations π 75 β 2763 β 368
π Organized directory structure π Added ProjectCard component and improved UI πΌ Enhanced app visuals with icons and tooltips π Integrated Supabase π 64 β 1132 β 411
π Initial prototype π€ Built user profiles and signup flow π‘ Prototyped features and workflows π 71 β 6867 β 762
git log --shortstat --date=iso | awk '
/^Date:/ {
date=$2
}
/files changed/ {
files[date]+=($1);
insertions[date]+=($4);
deletions[date]+=($6);
}
END {
for (d in files) {
print d, "π", files[d], " β", insertions[d], " β", deletions[d]
}
}' | sort