Merge branch '1.6'

This commit is contained in:
Sergio Martins
2022-04-08 14:26:42 +01:00
2 changed files with 6 additions and 1 deletions

View File

@@ -284,6 +284,10 @@ if(${PROJECT_NAME}_PYTHON_BINDINGS)
if(CMAKE_BUILD_TYPE MATCHES "^[Dd]eb" OR ${PROJECT_NAME}_STATIC)
message(FATAL_ERROR "** Python Bindings are disabled in debug or static builds.")
endif()
if(CMAKE_UNITY_BUILD)
message(FATAL_ERROR "** Python Bindings are disabled in Unity builds. "
"Try again with CMAKE_UNITY_BUILD=OFF")
endif()
endif()
if(${PROJECT_NAME}_PYTHON_BINDINGS)
add_subdirectory(python)

View File

@@ -1,5 +1,5 @@
* v1.7.0 (unreleased)
- X11: Fixed dragging a maximized floating window. Its size is now restored to normal size when the drag starts.
* v1.6.0 (unreleased)
- Fixed restoring of normal geometry when closing a maximized window (#259)
@@ -11,6 +11,7 @@
- Fixed case where unfloating wouldn't restore to the main window (#44 and #96)
- Fixed MainWindow not propagating close events to docked widgets
- X11: Improved detecting which window is under the cursor, by using native X11 API
- X11: Fixed dragging a maximized floating window. Its size is now restored to normal size when the drag starts.
* v1.5.0 (24 November 2021)
- Install the Python bindings to "site-packages"