Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package tenmon for openSUSE:Factory checked in at 2026-03-26 21:09:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tenmon (Old) and /work/SRC/openSUSE:Factory/.tenmon.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tenmon" Thu Mar 26 21:09:47 2026 rev:11 rq:1342710 version:20260217 Changes: -------- --- /work/SRC/openSUSE:Factory/tenmon/tenmon.changes 2026-02-06 19:16:57.048781634 +0100 +++ /work/SRC/openSUSE:Factory/.tenmon.new.8177/tenmon.changes 2026-03-27 06:51:01.621727566 +0100 @@ -1,0 +2,7 @@ +Tue Mar 24 23:04:58 UTC 2026 - Dirk Müller <[email protected]> + +- update 20260217: + * Enable sorting of FITS header + * Update metainfo/README + +------------------------------------------------------------------- Old: ---- tenmon-20260119.tar.gz New: ---- tenmon-20260217.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tenmon.spec ++++++ --- /var/tmp/diff_new_pack.BZCRsY/_old 2026-03-27 06:51:02.893780076 +0100 +++ /var/tmp/diff_new_pack.BZCRsY/_new 2026-03-27 06:51:02.905780572 +0100 @@ -21,7 +21,7 @@ %endif Name: tenmon -Version: 20260119 +Version: 20260217 Release: 0 Summary: FITS and XISF image viewer, converter and indexer License: GPL-3.0-or-later ++++++ tenmon-20260119.tar.gz -> tenmon-20260217.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tenmon/README new/tenmon/README --- old/tenmon/README 2026-01-19 20:57:13.000000000 +0100 +++ new/tenmon/README 2026-02-16 22:52:28.000000000 +0100 @@ -2,7 +2,7 @@ To get all dependencies install these packages - sudo apt install qt6-base-dev qt6-declarative-dev libqt6opengl6-dev libraw-dev libexif-dev libcfitsio-dev wcslib-dev cmake libzstd-dev libqt6sql6-sqlite + sudo apt install qt6-base-dev qt6-declarative-dev qt6-charts-dev libqt6opengl6-dev libraw-dev libexif-dev libcfitsio-dev wcslib-dev cmake libzstd-dev libqt6sql6-sqlite on OpenSUSE @@ -26,6 +26,10 @@ cmake --build build ./build/tenmon +To install it to system run this command as root + + cmake --install build + For working plate solving you must have compiled and installed StellarSolver https://github.com/rlancaste/stellarsolver It is important that you compile StellarSolver with Qt6. By default it use Qt5 but when linked with Qt6 program it will crash. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tenmon/space.nouspiro.tenmon.metainfo.xml new/tenmon/space.nouspiro.tenmon.metainfo.xml --- old/tenmon/space.nouspiro.tenmon.metainfo.xml 2026-01-19 20:57:13.000000000 +0100 +++ new/tenmon/space.nouspiro.tenmon.metainfo.xml 2026-02-16 22:52:28.000000000 +0100 @@ -47,6 +47,7 @@ </keywords> <url type="homepage">https://nouspiro.space/?page_id=206</url> <url type="bugtracker">https://github.com/flathub/space.nouspiro.tenmon/issues</url> + <url type="vcs-browser">https://gitea.nouspiro.space/nou/tenmon</url> <screenshots> <screenshot type="default"> <caption>Main window with image</caption> @@ -59,6 +60,14 @@ </screenshots> <content_rating type="oars-1.1"/> <releases> + <release version="20260217" date="2026-02-17"> + <description> + <ul> + <li>Fix potentional crash</li> + <li>Enable sorting of FITS info</li> + </ul> + </description> + </release> <release version="20251101" date="2025-11-01"> <description> <ul> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tenmon/src/imageinfo.cpp new/tenmon/src/imageinfo.cpp --- old/tenmon/src/imageinfo.cpp 2026-01-19 20:57:13.000000000 +0100 +++ new/tenmon/src/imageinfo.cpp 2026-02-16 22:52:28.000000000 +0100 @@ -11,6 +11,8 @@ setIndentation(5); QSettings settings; header()->restoreState(settings.value("imageinfo/headerstate").toByteArray()); + setSortingEnabled(true); + header()->setSortIndicatorClearable(true); } ImageInfo::~ImageInfo()
