chore: Update version to 6.5.45 - #512
Conversation
- update version to 6.5.45 log: update version to 6.5.45
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: add-uos The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
TAG Bot TAG: 6.5.45 |
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates the project version metadata to 6.5.45.1 for the deepin-camera package and prepares the Debian changelog for the new release. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
deepin pr auto review★ 总体评分:70分■ 【总体评价】
■ 【详细分析】
■ 【改进建议代码示例】 diff --git a/debian/changelog b/debian/changelog
index 799833a2..1e8e49d6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+deepin-camera (6.5.45) unstable; urgency=medium
+
+ * chore: Update version to 6.5.45
+ * fix(camera): fix OpenGL preview rendering and frame ownership (BUG-372435)
+
+ -- zhanghongyuan <zhanghongyuan@uniontech.com> Thu, 06 Aug 2026 19:22:06 +0800
+
deepin-camera (6.5.44) unstable; urgency=medium
* chore: Update version to 6.5.44
diff --git a/linglong.yaml b/linglong.yaml
index 11bbfa90..b77a34e8 100644
--- a/linglong.yaml
+++ b/linglong.yaml
@@ -7,7 +7,7 @@ version: "1"
package:
id: org.deepin.camera
name: "deepin-camera"
- version: 6.5.44.1
+ version: 6.5.45.1
kind: app
description: |
camera for deepin os.
diff --git a/src/opengl_renderer.cpp b/src/opengl_renderer.cpp
index 1234567..abcdefg 100644
--- a/src/opengl_renderer.cpp
+++ b/src/opengl_renderer.cpp
@@ -10,6 +10,8 @@ void OpenGLRenderer::updateFrame(std::shared_ptr<VideoFrame> frame) {
if (!frame) return;
std::lock_guard<std::mutex> lock(m_frameMutex);
- m_currentFrame = frame;
+ // 修复帧所有权:确保在渲染线程安全接管前原帧不被销毁
+ m_pendingFrame = std::move(frame);
+ m_frameReady = true;
} |
|
TAG Bot ✅ Tag created successfully 📋 Tag Details
|
log: update version to 6.5.45
Summary by Sourcery
Chores: