|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [Unreleased] |
| 9 | + |
| 10 | +## [0.6.2] - 2025-01-09 |
| 11 | + |
| 12 | +### Added |
| 13 | +- GitHub Actions CI/CD workflows for automated releases |
| 14 | +- Version management scripts (`bump-version.sh` and `get-version.sh`) |
| 15 | +- Status badges to README (CI, Release, Version, License, .NET, Platform) |
| 16 | +- Repository topics and improved description |
| 17 | + |
| 18 | +### Changed |
| 19 | +- Build script now uses dynamic version extraction from `.csproj` |
| 20 | +- Removed hardcoded VERSION variable from `build.sh` for safety |
| 21 | +- Workflow only modifies `.csproj` and `README.md` (build scripts untouched) |
| 22 | + |
| 23 | +### Fixed |
| 24 | +- Build script now explicitly publishes main project only (excludes test project) |
| 25 | + |
| 26 | +## [0.6.0] - 2025-11-09 |
| 27 | + |
| 28 | +### Added |
| 29 | +- Initial release of Localization Resource Manager |
| 30 | +- **CLI Commands:** |
| 31 | + - `validate` - Validate resource files for missing translations, duplicates, and empty values |
| 32 | + - `stats` - Display translation coverage statistics with charts |
| 33 | + - `view` - Display specific key details in table, JSON, or simple format |
| 34 | + - `add` - Add new localization keys to all languages |
| 35 | + - `update` - Modify existing key values with preview |
| 36 | + - `delete` - Remove keys from all languages |
| 37 | + - `export` - Export translations to CSV format |
| 38 | + - `import` - Import translations from CSV with conflict resolution |
| 39 | + - `edit` - Launch interactive TUI editor |
| 40 | +- **Interactive TUI Editor:** |
| 41 | + - Real-time search and filter |
| 42 | + - Multi-column table view for all languages |
| 43 | + - Add, edit, delete keys with keyboard shortcuts |
| 44 | + - Automatic validation (F6) |
| 45 | + - Unsaved changes tracking |
| 46 | + - Keyboard shortcuts help (F1) |
| 47 | +- **Core Features:** |
| 48 | + - Auto-discovery of `.resx` files and languages |
| 49 | + - Dynamic language support (no hardcoded languages) |
| 50 | + - Language validation with helpful errors |
| 51 | + - Automatic backup system before modifications |
| 52 | + - Multi-platform build support (Linux/Windows x64/ARM64) |
| 53 | + - Shell completion scripts (bash and zsh) |
| 54 | +- **Testing:** |
| 55 | + - 21 passing unit and integration tests |
| 56 | + - Test coverage for core logic, CRUD operations, and validation |
| 57 | +- **Documentation:** |
| 58 | + - Comprehensive README with usage examples |
| 59 | + - EXAMPLES.md with real-world scenarios |
| 60 | + - INSTALLATION.md with platform-specific instructions |
| 61 | + - BUILDING.md with build and distribution guide |
| 62 | +- **Build System:** |
| 63 | + - Automated multi-platform build script (`build.sh`) |
| 64 | + - Self-contained executables (no .NET runtime required) |
| 65 | + - Distribution archives ready for release |
| 66 | +- **License:** |
| 67 | + - MIT License with copyright headers in all source files |
| 68 | + |
| 69 | +[Unreleased]: https://github.com/nickprotop/LocalizationManager/compare/v0.6.2...HEAD |
| 70 | +[0.6.2]: https://github.com/nickprotop/LocalizationManager/compare/v0.6.0...v0.6.2 |
| 71 | +[0.6.0]: https://github.com/nickprotop/LocalizationManager/releases/tag/v0.6.0 |
0 commit comments