* added support for new language Slovak * fixed msys2_prepare_standalone.sh for new libgtksourceview4; * dropped unmantained and outdated libgtksourceviewmm3 for libgtksourceview4 * Fix formatting issues with fmt 11 * removed fmt custom formatter for Glib::ustring * starting work on collapsable headers * changed default keyboard shortcut to open codebox properties dialog to Shift+Alt+U as the previous shortcut was causing problems to german layout keyboards * default keyboard shortcut to Ctrl+Shift+G for new quick-select node dialog * (feat): Adding new quick-select dialog * link to outstanding third party android project SourCherry * fix fonts stretch property not supported * fix italic fonts not supported * fix bold fonts not supported - Replace pkgconfig(gtksourceviewmm-3.0) BuildRequies with pkgconfig(gtksourcevie-4.0): follow upstream. OBS-URL: https://build.opensuse.org/package/show/GNOME:Apps/cherrytree?expand=0&rev=196
13 lines
571 B
Diff
13 lines
571 B
Diff
diff -Naur a/CMakeLists.txt b/CMakeLists.txt
|
|
--- a/CMakeLists.txt 2020-11-21 07:41:58.000000000 -0600
|
|
+++ b/CMakeLists.txt 2020-11-21 08:27:00.146401506 -0600
|
|
@@ -4,7 +4,7 @@
|
|
|
|
file(READ "debian/changelog" CHANGELOG)
|
|
string(REGEX MATCH "cherrytree +\\(([0-9]+)\\.([0-9]+)\\.([0-9]+)[-+]" _ ${CHANGELOG})
|
|
-set(CT_VERSION ${CMAKE_MATCH_1}.${CMAKE_MATCH_2}.${CMAKE_MATCH_3})
|
|
+option(CT_VERSION ${CMAKE_MATCH_1}.${CMAKE_MATCH_2}.${CMAKE_MATCH_3})
|
|
set(CT_VERSION_WINDOWS ${CMAKE_MATCH_1},${CMAKE_MATCH_2},${CMAKE_MATCH_3},0)
|
|
message(STATUS "CT_VERSION = ${CT_VERSION}")
|
|
|