Skip to content

Commit 96f4a6d

Browse files
committed
Release v0.7.4
1 parent 55ed79a commit 96f4a6d

File tree

8 files changed

+42
-17
lines changed

8 files changed

+42
-17
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@ 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.4] - 2025-12-28
9+
10+
### Fixed
11+
- Fix: SyncStatus default changed from 'pending' to 'idle'
12+
- Fix: Handle already-decoded content from GitHub API
13+
- Fix: Clear old PAT when connecting via OAuth
14+
- Fix SyncStatus not being reset on connect/disconnect
15+
- Fix GitHub link redirect URL to use AppBaseUrl instead of BaseUrl
16+
- Fix GitHub integration UI issues
17+
- Fix Cancel button missing in ConnectGitHubDialog after step 0
18+
- Fix nginx proxy_pass in regex locations
19+
- Fix email verification and password reset flows
20+
- Fix Blazor version mismatch error on deployment
21+
22+
### Added
23+
- Add NeedsReview conflict type for first sync scenarios
24+
- Add GitHub sync status indicators to project cards and dashboard
25+
- Add no-cache headers for auth pages and improve error messages
26+
27+
### Changed
28+
- Move Open Editor button to toolbar as primary action
29+
- UI modernization: light theme, sidebar polish, StatCard component, project toolbar
30+
- Update docs with GitHub integration and open source emphasis
31+
832
## [0.7.3] - 2025-12-27
933

1034
### Fixed
@@ -714,6 +738,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
714738
- **License:**
715739
- MIT License with copyright headers in all source files
716740

741+
[0.7.4]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.3...v0.7.4
717742
[0.7.3]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.2...v0.7.3
718743
[0.7.2]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.1...v0.7.2
719744
[0.7.1]: https://github.com/nickprotop/LocalizationManager/compare/v0.7.0...v0.7.1

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.3</Version>
10-
<AssemblyVersion>0.7.3.0</AssemblyVersion>
11-
<FileVersion>0.7.3.0</FileVersion>
9+
<Version>0.7.4</Version>
10+
<AssemblyVersion>0.7.4.0</AssemblyVersion>
11+
<FileVersion>0.7.4.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.3</Version>
15+
<Version>0.7.4</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.3</Version>
11+
<Version>0.7.4</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.3</Version>
10-
<AssemblyVersion>0.7.3.0</AssemblyVersion>
11-
<FileVersion>0.7.3.0</FileVersion>
9+
<Version>0.7.4</Version>
10+
<AssemblyVersion>0.7.4.0</AssemblyVersion>
11+
<FileVersion>0.7.4.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.3</Version>
12-
<AssemblyVersion>0.7.3.0</AssemblyVersion>
13-
<FileVersion>0.7.3.0</FileVersion>
11+
<Version>0.7.4</Version>
12+
<AssemblyVersion>0.7.4.0</AssemblyVersion>
13+
<FileVersion>0.7.4.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.3-1) noble; urgency=medium
1+
lrm (0.7.4-1) noble; urgency=medium
22

3-
* Fixed: Fix cloud test assertions for ApiResponse wrapper and expected values\n
4-
* Added: Add per-translation comment support with UI editing and sync\n- Add ca-certificates to API container for Let's Encrypt TLS validation\n
5-
* Changed: Run update-ca-certificates to generate SSL bundle in API container\n
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
66

7-
-- Nikolaos Protopapas <nikolaos.protopapas@gmail.com> Sat, 27 Dec 2025 04:17:05 +0200
7+
-- Nikolaos Protopapas <nikolaos.protopapas@gmail.com> Sun, 28 Dec 2025 00:41:16 +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.3",
5+
"version": "0.7.4",
66
"icon": "images/icon.png",
77
"publisher": "nickprotop",
88
"repository": {

0 commit comments

Comments
 (0)