Skip to content

Commit cf0f4f9

Browse files
committed
Release v0.6.18
1 parent dbb4526 commit cf0f4f9

5 files changed

Lines changed: 58 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,51 @@ This file is automatically generated from commit messages during releases.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.6.18] - 2025-11-30
9+
10+
### Fixed
11+
- Fix bundle script path in release workflow
12+
- Fix backend process cleanup on extension exit
13+
- Fix dashboard to use actual API response format
14+
- Fix inconsistencies in VS Code extension plan
15+
- Fix test for new Lingva and MyMemory providers
16+
17+
### Added
18+
- Add link to VS Code extension documentation
19+
- Add VS Code extension section to main README
20+
- Add LICENSE file
21+
- Add VS Code extension build and publish to release workflow
22+
- Add extension icon and update publisher to nickprotop
23+
- Add VS Code extension launcher and task configurations
24+
- Add Windows ARM64 support to VS Code extension
25+
- Add VS Code extension version sync to release scripts
26+
- Add content-based scanning support for in-memory file scanning
27+
- Add VS Code extension build and bundling scripts
28+
- Add VS Code extension core files
29+
- Add lrm.json configuration support to Settings Panel
30+
- Add comprehensive tests for single-file scan functionality
31+
- Add single-file scan support to CLI and API
32+
- Add comprehensive VS Code extension development plan with tracking
33+
- Add security hardening to Web API
34+
- Add Lingva and MyMemory free translation providers
35+
- Add unit tests for ConfigurationSchemaService
36+
- Add multi-select with bulk operations to Web UI Editor
37+
- Add schema-enhanced configuration editor with inline documentation
38+
39+
### Changed
40+
- Improve VS Code extension marketplace categories and keywords
41+
- Update extension README for marketplace with screenshots
42+
- Move extension scripts to vscode-extension/scripts/
43+
- Update VS Code extension version to 0.6.17
44+
- Refactor build system: eliminate redundancy, add macOS support
45+
- Update build script and API documentation
46+
- Update .gitignore for VS Code extension development
47+
- Update VS Code extension plan with completed Phase 4 items
48+
- Register Dashboard and Settings commands in package.json
49+
- Remove duplicate status bar and use StatusBarManager only
50+
- Update VS Code extension plan: same repo, bundled binary, random port
51+
- Refactor provider lists to use factory as single source of truth
52+
853
## [0.6.17] - 2025-11-25
954

1055
### Added
@@ -310,6 +355,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
310355
- **License:**
311356
- MIT License with copyright headers in all source files
312357

358+
[0.6.18]: https://github.com/nickprotop/LocalizationManager/compare/v0.6.17...v0.6.18
313359
[0.6.17]: https://github.com/nickprotop/LocalizationManager/compare/v0.6.16...v0.6.17
314360
[0.6.16]: https://github.com/nickprotop/LocalizationManager/compare/v0.6.15...v0.6.16
315361
[0.6.15]: https://github.com/nickprotop/LocalizationManager/compare/v0.6.14...v0.6.15

LocalizationManager.Shared/LocalizationManager.Shared.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<Nullable>enable</Nullable>
77

88
<!-- Version and Assembly Information -->
9-
<Version>0.6.17</Version>
10-
<AssemblyVersion>0.6.17.0</AssemblyVersion>
11-
<FileVersion>0.6.17.0</FileVersion>
9+
<Version>0.6.18</Version>
10+
<AssemblyVersion>0.6.18.0</AssemblyVersion>
11+
<FileVersion>0.6.18.0</FileVersion>
1212
<Authors>Nikolaos Protopapas</Authors>
1313
<Company>Nikolaos Protopapas</Company>
1414
<Product>Localization Resource Manager (LRM) - Shared Library</Product>

LocalizationManager.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<Nullable>enable</Nullable>
99

1010
<!-- Version and Assembly Information -->
11-
<Version>0.6.17</Version>
12-
<AssemblyVersion>0.6.17.0</AssemblyVersion>
13-
<FileVersion>0.6.17.0</FileVersion>
11+
<Version>0.6.18</Version>
12+
<AssemblyVersion>0.6.18.0</AssemblyVersion>
13+
<FileVersion>0.6.18.0</FileVersion>
1414
<Authors>Nikolaos Protopapas</Authors>
1515
<Company>Nikolaos Protopapas</Company>
1616
<Product>Localization Resource Manager (LRM)</Product>

debian/changelog

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
lrm (0.6.17-1) noble; urgency=medium
1+
lrm (0.6.18-1) noble; urgency=medium
22

3-
* Added: Add web command to COMMANDS.md documentation\n- Add Web UI documentation and screenshots\n- Add and enhance API controllers for Web UI\n- Add API client services and models for Blazor UI\n- Add Blazor Server UI with terminal-themed design\n- Add Phase 6: Web API implementation with full CLI parity\n
4-
* Changed: Update ROADMAP with Web UI implementation status\n- Register Blazor services and SearchApiClient in WebCommand\n- Extend ResourceFilterService for API search support\n- Implement web command foundation for Phase 6\n- Enhance ROADMAP with comprehensive Web API/WASM architecture details\n
3+
* Fixed: Fix bundle script path in release workflow\n- Fix backend process cleanup on extension exit\n- Fix dashboard to use actual API response format\n- Fix inconsistencies in VS Code extension plan\n- Fix test for new Lingva and MyMemory providers\n
4+
* Added: Add link to VS Code extension documentation\n- Add VS Code extension section to main README\n- Add LICENSE file\n- Add VS Code extension build and publish to release workflow\n- Add extension icon and update publisher to nickprotop\n- Add VS Code extension launcher and task configurations\n- Add Windows ARM64 support to VS Code extension\n- Add VS Code extension version sync to release scripts\n- Add content-based scanning support for in-memory file scanning\n- Add VS Code extension build and bundling scripts\n- Add VS Code extension core files\n- Add lrm.json configuration support to Settings Panel\n- Add comprehensive tests for single-file scan functionality\n- Add single-file scan support to CLI and API\n- Add comprehensive VS Code extension development plan with tracking\n- Add security hardening to Web API\n- Add Lingva and MyMemory free translation providers\n- Add unit tests for ConfigurationSchemaService\n- Add multi-select with bulk operations to Web UI Editor\n- Add schema-enhanced configuration editor with inline documentation\n
5+
* Changed: Improve VS Code extension marketplace categories and keywords\n- Update extension README for marketplace with screenshots\n- Move extension scripts to vscode-extension/scripts/\n- Update VS Code extension version to 0.6.17\n- Refactor build system: eliminate redundancy, add macOS support\n- Update build script and API documentation\n- Update .gitignore for VS Code extension development\n- Update VS Code extension plan with completed Phase 4 items\n- Register Dashboard and Settings commands in package.json\n- Remove duplicate status bar and use StatusBarManager only\n- Update VS Code extension plan: same repo, bundled binary, random port\n- Refactor provider lists to use factory as single source of truth\n
56

6-
-- Nikolaos Protopapas <nikolaos.protopapas@gmail.com> Tue, 25 Nov 2025 14:15:31 +0200
7+
-- Nikolaos Protopapas <nikolaos.protopapas@gmail.com> Sun, 30 Nov 2025 16:57:51 +0200

vscode-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "localization-manager",
33
"displayName": "Localization Manager",
44
"description": "Manage .NET .resx localization files with real-time validation, translation, and code scanning",
5-
"version": "0.6.17",
5+
"version": "0.6.18",
66
"icon": "images/icon.png",
77
"publisher": "nickprotop",
88
"repository": {

0 commit comments

Comments
 (0)