Skip to content

Commit ede3975

Browse files
committed
Release v0.7.5
1 parent 516115f commit ede3975

File tree

8 files changed

+40
-17
lines changed

8 files changed

+40
-17
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ 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.5] - 2025-12-28
9+
10+
### Fixed
11+
- Fix OTA API documentation: use X-API-Key header instead of Bearer
12+
- Fix GitHub localization path detection depth
13+
14+
### Added
15+
- Add cross-reference to .NET Libraries documentation in OTA page
16+
- Add OTA SDKs to documentation navigation
17+
- Add dedicated OTA SDKs documentation page
18+
- Add OTA demo sample with mock HTTP handler
19+
- Add tests for OTA functionality
20+
- Add OTA client support to JsonLocalization NuGet package
21+
- Add OTA API endpoints for over-the-air localization
22+
- Add default superadmin user creation on first run
23+
24+
### Changed
25+
- Update documentation with OTA sample references
26+
- Update cloud screenshots and documentation
27+
- Refactor: Move ResourceDiscovery and ResourceFileParser into backend implementations
28+
- Refactor project detail page to use in-place tabs
29+
830
## [0.7.4] - 2025-12-28
931

1032
### Fixed
@@ -738,6 +760,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
738760
- **License:**
739761
- MIT License with copyright headers in all source files
740762

763+
[0.7.5]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.4...v0.7.5
741764
[0.7.4]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.3...v0.7.4
742765
[0.7.3]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.2...v0.7.3
743766
[0.7.2]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.1...v0.7.2

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.4</Version>
10-
<AssemblyVersion>0.7.4.0</AssemblyVersion>
11-
<FileVersion>0.7.4.0</FileVersion>
9+
<Version>0.7.5</Version>
10+
<AssemblyVersion>0.7.5.0</AssemblyVersion>
11+
<FileVersion>0.7.5.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.4</Version>
15+
<Version>0.7.5</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.4</Version>
11+
<Version>0.7.5</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.4</Version>
10-
<AssemblyVersion>0.7.4.0</AssemblyVersion>
11-
<FileVersion>0.7.4.0</FileVersion>
9+
<Version>0.7.5</Version>
10+
<AssemblyVersion>0.7.5.0</AssemblyVersion>
11+
<FileVersion>0.7.5.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.4</Version>
12-
<AssemblyVersion>0.7.4.0</AssemblyVersion>
13-
<FileVersion>0.7.4.0</FileVersion>
11+
<Version>0.7.5</Version>
12+
<AssemblyVersion>0.7.5.0</AssemblyVersion>
13+
<FileVersion>0.7.5.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 & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
lrm (0.7.4-1) noble; urgency=medium
1+
lrm (0.7.5-1) noble; urgency=medium
22

3-
* Fixed: Fix: SyncStatus default changed from 'pending' to 'idle'\n- Fix: Handle already-decoded content from GitHub API\n- Fix: Clear old PAT when connecting via OAuth\n- Fix SyncStatus not being reset on connect/disconnect\n- Fix GitHub link redirect URL to use AppBaseUrl instead of BaseUrl\n- Fix GitHub integration UI issues\n- Fix Cancel button missing in ConnectGitHubDialog after step 0\n- Fix nginx proxy_pass in regex locations\n- Fix email verification and password reset flows\n- Fix Blazor version mismatch error on deployment\n
4-
* Added: Add NeedsReview conflict type for first sync scenarios\n- Add GitHub sync status indicators to project cards and dashboard\n- Add no-cache headers for auth pages and improve error messages\n
5-
* Changed: Move Open Editor button to toolbar as primary action\n- UI modernization: light theme, sidebar polish, StatCard component, project toolbar\n- Update docs with GitHub integration and open source emphasis\n
3+
* Fixed: Fix OTA API documentation: use X-API-Key header instead of Bearer\n- Fix GitHub localization path detection depth\n
4+
* Added: Add cross-reference to .NET Libraries documentation in OTA page\n- Add OTA SDKs to documentation navigation\n- Add dedicated OTA SDKs documentation page\n- Add OTA demo sample with mock HTTP handler\n- Add tests for OTA functionality\n- Add OTA client support to JsonLocalization NuGet package\n- Add OTA API endpoints for over-the-air localization\n- Add default superadmin user creation on first run\n
5+
* Changed: Update documentation with OTA sample references\n- Update cloud screenshots and documentation\n- Refactor: Move ResourceDiscovery and ResourceFileParser into backend implementations\n- Refactor project detail page to use in-place tabs\n
66

7-
-- Nikolaos Protopapas <nikolaos.protopapas@gmail.com> Sun, 28 Dec 2025 00:41:16 +0200
7+
-- Nikolaos Protopapas <nikolaos.protopapas@gmail.com> Sun, 28 Dec 2025 20:06:33 +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": "LRM - .NET Localization",
44
"description": "Manage .NET localization files (.resx and JSON) with real-time validation, translation, and code scanning",
5-
"version": "0.7.4",
5+
"version": "0.7.5",
66
"icon": "images/icon.png",
77
"publisher": "nickprotop",
88
"repository": {

0 commit comments

Comments
 (0)