diff --git a/EgwCoreLib.Lux.Data/Services/ImageCacheService.cs b/EgwCoreLib.Lux.Data/Services/ImageCacheService.cs index b5bc7beb..81389a74 100644 --- a/EgwCoreLib.Lux.Data/Services/ImageCacheService.cs +++ b/EgwCoreLib.Lux.Data/Services/ImageCacheService.cs @@ -53,7 +53,7 @@ namespace EgwCoreLib.Lux.Data.Services public string LoadSvg(string imgUid) { // recupero img da cache - string currKey = $"{redisBaseKey}:{imgUid.Replace("/", ":")}"; + string currKey = $"{redisBaseKey}:Images:{imgUid.Replace("/", ":")}"; var rawVal = _redisService.Get(currKey); return $"{rawVal}"; } @@ -65,7 +65,7 @@ namespace EgwCoreLib.Lux.Data.Services public async Task LoadSvgAsync(string imgId) { // recupero img da cache - string currKey = $"{redisBaseKey}:{imgId.Replace("/", ":")}"; + string currKey = $"{redisBaseKey}:Images:{imgId.Replace("/", ":")}"; var rawVal = await _redisService.GetAsync(currKey); return $"{rawVal}"; } @@ -79,7 +79,7 @@ namespace EgwCoreLib.Lux.Data.Services public bool SaveSvg(string imgId, string svgContent) { // salvo img in cache - string currKey = $"{redisBaseKey}:{imgId.Replace("/", ":")}"; + string currKey = $"{redisBaseKey}:Images:{imgId.Replace("/", ":")}"; var done = _redisService.Set(currKey, svgContent); // invio notifica nuova imgsvg sul canale... viene "reimbustata" string notifyChannel = $"svg-gen:{imgId}"; diff --git a/Lux.API/Controllers/WindowController.cs b/Lux.API/Controllers/WindowController.cs index f2bd8dc2..423e58a9 100644 --- a/Lux.API/Controllers/WindowController.cs +++ b/Lux.API/Controllers/WindowController.cs @@ -103,7 +103,8 @@ namespace Lux.API.Controllers /// /// id oggetto /// - [HttpGet("svgFile/{id}")] + [HttpGet("svgfile/{id}")] + [HttpGet("svg-file/{id}")] public async Task> svgFile(string id) { Stopwatch sw = new Stopwatch(); diff --git a/Lux.API/Lux.API.csproj b/Lux.API/Lux.API.csproj index 90453c2c..ab891ea5 100644 --- a/Lux.API/Lux.API.csproj +++ b/Lux.API/Lux.API.csproj @@ -4,7 +4,7 @@ net8.0 enable enable - 0.9.2508.0410 + 0.9.2508.0411 @@ -64,9 +64,8 @@ - - - + + diff --git a/Resources/ChangeLog.html b/Resources/ChangeLog.html index 1235b04f..f1f5a40d 100644 --- a/Resources/ChangeLog.html +++ b/Resources/ChangeLog.html @@ -1,6 +1,6 @@ LUX - Web Windows MES -

Versione: 0.9.2508.0410

+

Versione: 0.9.2508.0411


Note di rilascio:
  • diff --git a/Resources/VersNum.txt b/Resources/VersNum.txt index 17ed0c3d..5a123db6 100644 --- a/Resources/VersNum.txt +++ b/Resources/VersNum.txt @@ -1 +1 @@ -0.9.2508.0410 +0.9.2508.0411 diff --git a/Resources/manifest.xml b/Resources/manifest.xml index aa54b2f0..f87db0a0 100644 --- a/Resources/manifest.xml +++ b/Resources/manifest.xml @@ -1,6 +1,6 @@ - 0.9.2508.0410 + 0.9.2508.0411 http://nexus.steamware.net/repository/SWS/GPW/stable/GPW.UI.zip http://nexus.steamware.net/repository/SWS/GPW/stable/ChangeLog.html false