Skip to content

Commit 7c4727e

Browse files
committed
Release v0.7.13
1 parent c64e0e1 commit 7c4727e

8 files changed

Lines changed: 32 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ 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.7.13] - 2026-06-05
9+
10+
### Fixed
11+
- Fix default-language, recursive discovery, multi-group scanning and VS Code reference paths
12+
- Fix POT reader test to match new source-text behavior
13+
14+
### Added
15+
- Add multi-base resource group support to the TUI editor
16+
17+
### Changed
18+
- Ignore .superpowers scratch directory
19+
- Bump Scriban to 7.2.0 and MailKit to 4.16.0 (security)
20+
- Migrate web GUI to Radzen and propagate PO SourceText to cloud
21+
822
## [0.7.12] - 2026-05-28
923

1024
### Fixed
@@ -882,6 +896,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
882896
- **License:**
883897
- MIT License with copyright headers in all source files
884898

899+
[0.7.13]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.12...v0.7.13
885900
[0.7.12]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.11...v0.7.12
886901
[0.7.11]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.10...v0.7.11
887902
[0.7.10]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.9...v0.7.10

LocalizationManager.Core/LocalizationManager.Core.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.7.12</Version>
10-
<AssemblyVersion>0.7.12.0</AssemblyVersion>
11-
<FileVersion>0.7.12.0</FileVersion>
9+
<Version>0.7.13</Version>
10+
<AssemblyVersion>0.7.13.0</AssemblyVersion>
11+
<FileVersion>0.7.13.0</FileVersion>
1212
<Authors>Nikolaos Protopapas</Authors>
1313
<Company>Nikolaos Protopapas</Company>
1414
<Product>Localization Resource Manager (LRM) - Core Library</Product>

LocalizationManager.JsonLocalization.Generator/LocalizationManager.JsonLocalization.Generator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<!-- NuGet Package Metadata -->
1414
<PackageId>LocalizationManager.JsonLocalization.Generator</PackageId>
15-
<Version>0.7.12</Version>
15+
<Version>0.7.13</Version>
1616
<Authors>Nikolaos Protopapas</Authors>
1717
<Company>LocalizationManager</Company>
1818
<Product>LocalizationManager.JsonLocalization.Generator</Product>

LocalizationManager.JsonLocalization/LocalizationManager.JsonLocalization.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- NuGet Package Metadata -->
1010
<PackageId>LocalizationManager.JsonLocalization</PackageId>
11-
<Version>0.7.12</Version>
11+
<Version>0.7.13</Version>
1212
<Authors>Nikolaos Protopapas</Authors>
1313
<Company>LocalizationManager</Company>
1414
<Product>LocalizationManager.JsonLocalization</Product>

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.7.12</Version>
10-
<AssemblyVersion>0.7.12.0</AssemblyVersion>
11-
<FileVersion>0.7.12.0</FileVersion>
9+
<Version>0.7.13</Version>
10+
<AssemblyVersion>0.7.13.0</AssemblyVersion>
11+
<FileVersion>0.7.13.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.7.12</Version>
12-
<AssemblyVersion>0.7.12.0</AssemblyVersion>
13-
<FileVersion>0.7.12.0</FileVersion>
11+
<Version>0.7.13</Version>
12+
<AssemblyVersion>0.7.13.0</AssemblyVersion>
13+
<FileVersion>0.7.13.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.7.12-1) noble; urgency=medium
1+
lrm (0.7.13-1) noble; urgency=medium
22

3-
* Fixed: Fix web stats calculation to handle plural forms correctly\n- Fix web command static file serving in single-file executable\n
4-
* Added: Add multi-base resource group support (closes #6)\n- Add database migration for SourceText columns on ResourceKey\n- Add format-agnostic SourceText support to entities and DTOs\n- Add Source column to grid and improve TranslateDialog UX\n- Add PluralForm tracking and SourceText restoration to sync history\n
3+
* Fixed: Fix default-language, recursive discovery, multi-group scanning and VS Code reference paths\n- Fix POT reader test to match new source-text behavior\n
4+
* Added: Add multi-base resource group support to the TUI editor\n
5+
* Changed: Ignore .superpowers scratch directory\n- Bump Scriban to 7.2.0 and MailKit to 4.16.0 (security)\n- Migrate web GUI to Radzen and propagate PO SourceText to cloud\n
56

6-
-- Nikolaos Protopapas <nikolaos.protopapas@gmail.com> Thu, 28 May 2026 20:43:55 +0300
7+
-- Nikolaos Protopapas <nikolaos.protopapas@gmail.com> Fri, 05 Jun 2026 00:10:43 +0300

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": "LRM - .NET Localization",
44
"description": "Manage .NET localization files (.resx and JSON) with real-time validation, translation, and code scanning",
5-
"version": "0.7.12",
5+
"version": "0.7.13",
66
"icon": "images/icon.png",
77
"publisher": "nickprotop",
88
"repository": {

0 commit comments

Comments
 (0)