Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.25.0)

project(Treeland
VERSION 0.2.2
VERSION 0.7.0
LANGUAGES CXX C)

set(CMAKE_INCLUDE_CURRENT_DIR ON)
Expand Down
36 changes: 36 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
treeland (0.7.0) unstable; urgency=medium

* fix: fix treeland get stuck in lockscreen after crash recovery
* fix: occasional crash during stop preview item handling
* refactor: improve code robustness
* fix: occasional crash when closing x window
* fix: resolve brief black screen during standby
* chore: remove dde portal screen cast configuration
* fix: correct log category and add null check for surface activation
* fix: resolve window resize crash during image capture
* fix: fix wrong display render issue when switching VT too quickly
* Totally disable lockscreen animation when switching TTY to prevent
stuck for switching too quickly
* feat: Support TTY switching with DDM
* Updates for project TreeLand (#515)
* feat(waylib): add WBufferDumper utility for dumping buffer contents
to image files
* refactor: use unified CI build preset with Werror
* build: enable -Werror compiler flag
* fix: prevent crash during preview item handling (#512)
* fix: prevent cursor flicker during screen recording
* docs: add comprehensive logging guidelines and update module logging
* feat: add centralized logging system and standardize log usage
* feat: ssd title bar displays the window title information
* fix: maximize/restore icon in the SSD title bar displays incorrectly
* fix: resolve multiple compiler warnings
* fix(waylib): prevent duplicate signal connections using
Qt::UniqueConnection
* fix(waylib): prevent crash by safely managing textureChanged
connection
* fix: use exec to replace process and avoid duplicate logs in
treeland.sh
* fix(waylib): Occasional crash when moving the cursor

-- rewine <luhongxu@uniontech.com> Fri, 29 Aug 2025 10:23:45 +0800

treeland (0.6.2) unstable; urgency=medium

* fix: resolve library versioning and installation path issues
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ include(${CMAKE_SOURCE_DIR}/cmake/TranslationUtils.cmake)

find_package(Dtk6 REQUIRED COMPONENTS Core Declarative SystemSettings)
if (NOT DISABLE_DDM)
find_package(DDM REQUIRED COMPONENTS Auth Common)
find_package(DDM 0.2.0 REQUIRED COMPONENTS Auth Common)
endif()
find_package(QT NAMES Qt6 COMPONENTS Core REQUIRED)
find_package(Qt6 CONFIG REQUIRED ShaderTools Concurrent)
Expand Down
Loading