|
| 1 | +# @labcatr/labcommitr |
| 2 | + |
| 3 | +## 0.1.0 |
| 4 | + |
| 5 | +### Minor Changes |
| 6 | + |
| 7 | +- feat: add body requirement prompt to init command |
| 8 | + - New prompt in init flow to set commit body as required or optional |
| 9 | + - "Yes" option marked as recommended for better commit practices |
| 10 | + - Configuration properly respected in commit prompts |
| 11 | + - When body is required, commit prompts show "required" and remove "Skip" option |
| 12 | + - Defaults to optional for backward compatibility |
| 13 | + |
| 14 | +- feat: add editor support for commit body input |
| 15 | + - Users can now open their preferred editor for writing commit bodies |
| 16 | + - Supports both inline and editor input methods |
| 17 | + - Automatically detects available editors (VS Code, Vim, Nano, etc.) |
| 18 | + - Improved experience for multi-line commit bodies |
| 19 | + - Configurable editor preference in configuration files |
| 20 | + |
| 21 | +- 8837714: feat: add working CLI framework with basic commands |
| 22 | + - Tool now provides functional command-line interface with help system |
| 23 | + - Both `labcommitr` and `lab` command aliases are now available |
| 24 | + - Added `--version` flag to display current tool version |
| 25 | + - Added `config show` command to display and debug configuration |
| 26 | + - Interactive help system guides users through available commands |
| 27 | + - Clear error messages when invalid commands are used |
| 28 | + - Foundation ready for init and commit commands in upcoming releases |
| 29 | + |
| 30 | +- 20ab2ee: feat: add intelligent configuration file discovery |
| 31 | + - Tool now automatically finds configuration files in project roots |
| 32 | + - Prioritizes git repositories and supports monorepo structures |
| 33 | + - Provides clear error messages when configuration files have issues |
| 34 | + - Improved performance with smart caching for faster subsequent runs |
| 35 | + - Works reliably across different project structures and environments |
| 36 | + |
| 37 | +- e041576: feat: add configuration file validation |
| 38 | + - Configuration files are now validated for syntax and required fields |
| 39 | + - Clear error messages help users fix configuration issues quickly |
| 40 | + - Tool prevents common mistakes like missing commit types or invalid IDs |
| 41 | + - Improved reliability when loading project-specific configurations |
| 42 | + - Validates commit type IDs contain only lowercase letters as required |
| 43 | + |
| 44 | +- feat: enhance commit command user experience |
| 45 | + - Terminal automatically clears at command start for maximum available space |
| 46 | + - Improved staged file detection with support for renamed and copied files |
| 47 | + - Color-coded Git status indicators (A, M, D, R, C) matching Git's default colors |
| 48 | + - Connector lines added to files and preview displays for better visual flow |
| 49 | + - More accurate file status reporting with copy detection using -C50 flag |
| 50 | + |
| 51 | +- 677a4ad: feat: add interactive init command with Clef mascot |
| 52 | + - Introduced Clef, an animated cat mascot for enhanced user experience |
| 53 | + - Implemented clean, minimal CLI prompts following modern design patterns |
| 54 | + - Added four configuration presets: Conventional Commits, Gitmoji, Angular, and Minimal |
| 55 | + - Created interactive setup flow with preset selection, emoji support, and scope configuration |
| 56 | + - Integrated animated character that appears at key moments: intro, processing, and outro |
| 57 | + - Automatic YAML configuration file generation with validation |
| 58 | + - Non-intrusive design with clean labels and compact spacing |
| 59 | + - Graceful degradation for terminals without animation support |
| 60 | + |
| 61 | +### Patch Changes |
| 62 | + |
| 63 | +- fix: prevent label text truncation in prompts |
| 64 | + - Increased label width from 6 to 7 characters to accommodate longer labels |
| 65 | + - Fixes issue where "subject" label was being truncated to "subjec" |
| 66 | + - Applied to both commit and init command prompts for consistency |
| 67 | + - All labels now properly display full text with centered alignment |
0 commit comments