From ce12be1fad2451def77da2cfdb0d0932620f1ef8 Mon Sep 17 00:00:00 2001 From: Damir Porobic Date: Mon, 18 May 2020 00:09:41 +0200 Subject: [PATCH] Update changelog and screenshot in readme --- CHANGELOG.md | 1 + CMakeLists.txt | 2 +- README.md | 2 +- src/CMakeLists.txt | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7f6c82b..1993615d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ * New: Run ksnip as single instance. ([#238](https://github.com/ksnip/ksnip/issues/238)) * New kImageAnnotator: Add option to translate UI. ([#54](https://github.com/ksnip/kImageAnnotator/issues/54)) * New kImageAnnotator: Saved image expand to include annotations out of border. ([#90](https://github.com/ksnip/kImageAnnotator/issues/90)) +* New kImageAnnotator: Add support for stickers. ([#74](https://github.com/ksnip/kImageAnnotator/issues/74)) * Changed: Save As option was added and useInstantSave config was removed. ([#285](https://github.com/ksnip/ksnip/issues/285)) * Changed: Disable scroll down with zero value in timeout widget. ([#294](https://github.com/ksnip/ksnip/issues/294)) * Changed: Disable unsupported capture modes in settings. ([#322](https://github.com/ksnip/ksnip/issues/322)) diff --git a/CMakeLists.txt b/CMakeLists.txt index 76e05ba4..5176b2f6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ set(CMAKE_CXX_EXTENSIONS OFF) set(QT_MIN_VERSION "5.7.1") -find_package(Qt5 ${QT_MIN_VERSION} REQUIRED Widgets Network Xml PrintSupport DBus) +find_package(Qt5 ${QT_MIN_VERSION} REQUIRED Widgets Network Xml PrintSupport DBus Svg) if (WIN32) find_package(Qt5 ${QT_MIN_VERSION} REQUIRED WinExtras) diff --git a/README.md b/README.md index a3e01623..7bff4cff 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Version v1.7.0 - Work in Progress Ksnip is a Qt based cross-platform screenshot tool that provides many annotation features for your screenshots. -![Ksnip](https://i.imgur.com/coZ8ypl.png "Ksnip with annotations") +![Ksnip](https://imgur.com/boTBnmV.png "Ksnip with annotations") # Features diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6f891200..218906ae 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -151,6 +151,7 @@ target_link_libraries(ksnip Qt5::Xml Qt5::PrintSupport Qt5::DBus + Qt5::Svg kImageAnnotator kColorPicker )