v1.0.0-rc.114 #20

Merged
leonarski_f merged 2 commits from 2511-1.0.0-rc.114 into main 2025-12-02 11:32:08 +01:00
2 changed files with 11 additions and 1 deletions

View File

@@ -489,7 +489,12 @@ void JFJochBrokerHttp::image_buffer_image_jpeg_get(const std::optional<int64_t>
settings.saturation_value = saturation;
settings.background_value = 0.0;
settings.jpeg_quality = jpegQuality.value_or(100);
settings.resolution_ring = showResRing;
if (showResEst.value_or(false))
settings.show_res_est = true;
else {
settings.show_res_est = false;
settings.resolution_ring = showResRing;
}
settings.scale = ConvertColorScale(color);
settings.show_beam_center = showBeamCenter.value_or(true);
settings.format = PreviewImageFormat::JPEG;

View File

@@ -1,5 +1,10 @@
# Changelog
## 1.0.0
### 1.0.0-rc.114
This is an UNSTABLE release and not recommended for production use (please use rc.111 instead).
* jfjoch_broker: Fix generating JPEG images with resolution estimation
### 1.0.0-rc.113
This is an UNSTABLE release and not recommended for production use (please use rc.111 instead).