Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package tenmon for openSUSE:Factory checked in at 2025-04-02 17:17:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tenmon (Old) and /work/SRC/openSUSE:Factory/.tenmon.new.1907 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tenmon" Wed Apr 2 17:17:21 2025 rev:8 rq:1266385 version:20250318 Changes: -------- --- /work/SRC/openSUSE:Factory/tenmon/tenmon.changes 2025-02-10 18:35:35.432803393 +0100 +++ /work/SRC/openSUSE:Factory/.tenmon.new.1907/tenmon.changes 2025-04-02 17:18:12.769556786 +0200 @@ -1,0 +2,13 @@ +Tue Apr 1 12:47:56 UTC 2025 - Paolo Stivanin <i...@paolostivanin.com> + +- Update to 20250318: + * Use only single database + * Add generating thumbnails from cmd line + * Configurable threshold + * Fix Do not prepend \\ to network share paths + * Add ability to have user defined colormaps + * For setSolverProfile use index 1-8 + * Add best fit on image load + * Remove startfit + +------------------------------------------------------------------- Old: ---- tenmon-20250126.tar.gz New: ---- tenmon-20250318.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tenmon.spec ++++++ --- /var/tmp/diff_new_pack.bfEFrH/_old 2025-04-02 17:18:14.337622581 +0200 +++ /var/tmp/diff_new_pack.bfEFrH/_new 2025-04-02 17:18:14.341622749 +0200 @@ -21,7 +21,7 @@ %endif Name: tenmon -Version: 20250126 +Version: 20250318 Release: 0 Summary: FITS and XISF image viewer, converter and indexer License: GPL-3.0-or-later ++++++ fix-cmakelists.patch ++++++ --- /var/tmp/diff_new_pack.bfEFrH/_old 2025-04-02 17:18:14.493629127 +0200 +++ /var/tmp/diff_new_pack.bfEFrH/_new 2025-04-02 17:18:14.517630134 +0200 @@ -1,6 +1,8 @@ ---- a/CMakeLists.txt 2025-02-09 17:58:04.385856772 +0100 -+++ b/CMakeLists.txt 2025-02-09 17:58:49.750855984 +0100 -@@ -26,8 +26,9 @@ +Index: tenmon/CMakeLists.txt +=================================================================== +--- tenmon.orig/CMakeLists.txt ++++ tenmon/CMakeLists.txt +@@ -24,8 +24,9 @@ find_library(RAW_LIB NAMES raw_r REQUIRE find_library(WCS_LIB wcs wcslib REQUIRED) find_library(LCMS2_LIB lcms2 REQUIRED) find_library(STELLARSOLVER_LIB stellarsolver) @@ -11,7 +13,7 @@ set(TENMON_SRC about.cpp about.h -@@ -74,7 +75,7 @@ +@@ -76,7 +77,7 @@ endif() qt_add_executable(tenmon WIN32 MACOSX_BUNDLE ${tenmon_ICON} ${TENMON_SRC}) find_path(FITS_INCLUDE fitsio2.h PATH_SUFFIXES cfitsio REQUIRED) @@ -20,12 +22,12 @@ option(COLOR_MANAGMENT "Enable sRGB framebuffer support for gamma correct images and color profiles support" ON) if(COLOR_MANAGMENT) -@@ -98,7 +99,7 @@ +@@ -102,7 +103,7 @@ if(STELLARSOLVER_INCLUDE AND STELLARSOLV message(STATUS "Found stellarsolver ${STELLARSOLVER_INCLUDE} ${STELLARSOLVER_LIB}") endif(STELLARSOLVER_INCLUDE AND STELLARSOLVER_LIB) --target_link_libraries(tenmon PRIVATE Qt6::Widgets Qt6::Sql Qt6::OpenGLWidgets Qt6::Qml ${GSL_LIB} ${GSLCBLAS_LIB} ${EXIF_LIB} ${FITS_LIB} ${RAW_LIB} ${WCS_LIB} ${LCMS2_LIB} XISF) -+target_link_libraries(tenmon PRIVATE Qt6::Widgets Qt6::Sql Qt6::OpenGLWidgets Qt6::Qml ${GSL_LIB} ${GSLCBLAS_LIB} ${EXIF_LIB} ${FITS_LIB} ${RAW_LIB} ${WCS_LIB} ${LCMS2_LIB} ${LibXISF_LIBRARY} ${ZSTD_LIB}) +-target_link_libraries(tenmon PRIVATE Qt6::Widgets Qt6::Sql Qt6::OpenGLWidgets Qt6::Qml ${EXIF_LIB} ${FITS_LIB} ${RAW_LIB} ${WCS_LIB} ${LCMS2_LIB} XISF) ++target_link_libraries(tenmon PRIVATE Qt6::Widgets Qt6::Sql Qt6::OpenGLWidgets Qt6::Qml ${EXIF_LIB} ${FITS_LIB} ${RAW_LIB} ${WCS_LIB} ${LCMS2_LIB} ${LibXISF_LIBRARY} ${ZSTD_LIB}) if(APPLE) target_link_libraries(tenmon PRIVATE Qt6::DBus "-framework CoreFoundation") elseif(UNIX) ++++++ fix-libxisf-include.patch ++++++ --- /var/tmp/diff_new_pack.bfEFrH/_old 2025-04-02 17:18:14.565632148 +0200 +++ /var/tmp/diff_new_pack.bfEFrH/_new 2025-04-02 17:18:14.589633155 +0200 @@ -1,31 +1,29 @@ -diff -ru orig/main.cpp mod/main.cpp ---- orig/main.cpp 2025-01-26 16:00:00.000000000 +0100 -+++ mod/main.cpp 2025-02-09 17:59:53.335087174 +0100 -@@ -3,6 +3,7 @@ - #include <QSurfaceFormat> - #include <QTranslator> +Index: tenmon/main.cpp +=================================================================== +--- tenmon.orig/main.cpp ++++ tenmon/main.cpp +@@ -5,6 +5,7 @@ + #include <QCommandLineParser> #include <stdlib.h> + #include "thumbnailer/genthumbnail.h" +#include <libxisf.h> int main(int argc, char *argv[]) { -diff -ru orig/scriptengine.cpp mod/scriptengine.cpp ---- orig/scriptengine.cpp 2025-01-26 16:00:00.000000000 +0100 -+++ mod/scriptengine.cpp 2025-02-09 17:59:53.338096114 +0100 -@@ -1,4 +1,5 @@ +Index: tenmon/scriptengine.cpp +=================================================================== +--- tenmon.orig/scriptengine.cpp ++++ tenmon/scriptengine.cpp +@@ -1,9 +1,11 @@ #include "scriptengine.h" + #include <QDir> #include <QFileInfo> #include <QDebug> -@@ -9,7 +10,7 @@ - #include "loadrunable.h" - #include "batchprocessing.h" - #include <fitsio2.h> --#include "libXISF/libxisf.h" + #include <QInputDialog> + #include <QJsonValue> +#include <libxisf.h> - #ifdef PLATESOLVER - #include "solver.h" - #endif // PLATESOLVER -Only in mod/: scriptengine.cpp.orig + #include "loadrunable.h" + #include "rawimage.h" + #include "loadimage.h" ++++++ tenmon-20250126.tar.gz -> tenmon-20250318.tar.gz ++++++ ++++ 10033 lines of diff (skipped)