|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +## [0.1.0] - 2025-09-28 |
| 6 | + |
| 7 | +### Added |
| 8 | + |
| 9 | +- Initial release: TextMate grammars for UseCode (.uc/.ucc/.uh/.ucxt) and UseCode assembly (.uca) |
| 10 | +- Language configuration with brackets, auto-closing pairs, and surrounding pairs |
| 11 | +- Sample file at `samples/test.uc` for testing and verification |
| 12 | +- Comprehensive syntax highlighting for: |
| 13 | + - Keywords, types, operators, and control flow |
| 14 | + - Strings with escape sequences and rune escapes |
| 15 | + - Line and block comments |
| 16 | + - Preprocessor directives (#include, #game, #line, etc.) |
| 17 | + - Intrinsic function highlighting (UI_* functions) |
| 18 | + - Script commands and assembly mnemonics |
| 19 | + - Labels, numbers (hex and decimal), and identifiers |
| 20 | + |
| 21 | +### Documentation & Packaging |
| 22 | + |
| 23 | +- Added GPL-2.0-or-later LICENSE.md with proper markdown formatting |
| 24 | +- Created marketplace-ready README.md with features, installation, and usage instructions |
| 25 | +- Added CHANGELOG.md for tracking releases |
| 26 | +- Added comprehensive .gitignore for build artifacts and temporary files |
| 27 | +- Added .vscodeignore to exclude development files from packaged extension |
| 28 | + |
| 29 | +### Package Metadata |
| 30 | + |
| 31 | +- Updated package.json with marketplace-required fields: |
| 32 | + - License field set to "GPL-2.0-or-later" |
| 33 | + - Keywords for discoverability: "usecode", "exult", "ucc", "syntax", "language" |
| 34 | + - Icon placeholder reference |
| 35 | + - Repository, bugs, and homepage placeholder URLs (replace with actual repo) |
| 36 | + |
| 37 | +### CI/CD |
| 38 | + |
| 39 | +- Added GitHub Actions workflows: |
| 40 | + - `publish.yml` - Automated packaging and publishing on version tags |
| 41 | + - `test-package.yml` - Continuous integration testing of packaging on pushes/PRs |
| 42 | +- Workflows support automatic publishing to VS Code Marketplace using VSCE_TOKEN secret |
0 commit comments