diff --git a/CHANGELOG b/CHANGELOG index 0d9085f..e4d1276 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,15 @@ +libqtxdg-3.6.0 / 2020-11-01 +=========================== + * Dropped deprecated QLinkedList. + * Code cleanup. + * Memory leaks are fixed. + * Fixed setting of default apps with GLib backend. + * Fixed (recommended) apps list given by GLib backend. + * Added a XdgDefaultApps class with email client, file manager and web browser set/get methods. + * Used Qt's fix for too big SVG icons with scale factors > 1. + * Added methods to XdgDefaultApps for getting special applications. + * Fixed unneeded URL encoding for %U/%u in "xdgdesktopfile.cpp". + libqtxdg-3.5.0 / 2020-04-22 =========================== * Removed dead Qt4 Mac code from XdgIconLoader. diff --git a/CMakeLists.txt b/CMakeLists.txt index b0b638e..e8a96b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,12 +13,12 @@ option(BUILD_DEV_UTILS "Builds and install development utils" OFF) set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" "${CMAKE_CURRENT_SOURCE_DIR}/cmake") set(QTXDG_MAJOR_VERSION 3) -set(QTXDG_MINOR_VERSION 5) +set(QTXDG_MINOR_VERSION 6) set(QTXDG_PATCH_VERSION 0) set(QTXDG_VERSION_STRING ${QTXDG_MAJOR_VERSION}.${QTXDG_MINOR_VERSION}.${QTXDG_PATCH_VERSION}) -set(LXQTBT_MINIMUM_VERSION "0.7.0") -set(QT_MINIMUM_VERSION "5.10.0") +set(LXQTBT_MINIMUM_VERSION "0.8.0") +set(QT_MINIMUM_VERSION "5.12.0") set(GLIB_MINIMUM_VERSION "2.41.0") # Mime Apps new implementation find_package(lxqt-build-tools ${LXQTBT_MINIMUM_VERSION} REQUIRED)