Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tenmon for openSUSE:Factory checked 
in at 2024-09-15 12:36:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tenmon (Old)
 and      /work/SRC/openSUSE:Factory/.tenmon.new.29891 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tenmon"

Sun Sep 15 12:36:03 2024 rev:6 rq:1200846 version:20240816

Changes:
--------
--- /work/SRC/openSUSE:Factory/tenmon/tenmon.changes    2024-07-05 
19:57:19.823800805 +0200
+++ /work/SRC/openSUSE:Factory/.tenmon.new.29891/tenmon.changes 2024-09-15 
12:40:19.090341652 +0200
@@ -1,0 +2,11 @@
+Fri Sep 13 12:54:08 UTC 2024 - Paolo Stivanin <i...@paolostivanin.com>
+
+- Update to 20240816:
+  * Remember auto stretch on load
+  * Add support for FLOAT16 image downscale
+  * Fix output path browse dialog path
+  * Fix fromPlanaerSSE
+  * Debayer fix on OpenGL ES
+  * Use lcms2 for color profiles
+
+-------------------------------------------------------------------
@@ -6,0 +18,14 @@
+  * Fix some bugs in scripting
+  * Fix text color in log
+  * Batchprocessing improvments
+  * Add FITSRecordModify for XISF files
+  * Add modifing FITS records
+  * Add compression parameters
+  * Add convert function to script
+  * Fix bug when saving color FITS/XISF files
+- Add fix-libxisf-include.patch.
+
+-------------------------------------------------------------------
+Wed Jun 12 05:37:19 UTC 2024 - Paolo Stivanin <i...@paolostivanin.com>
+
+- Update to 20240610:

Old:
----
  tenmon-20240617.tar.gz

New:
----
  tenmon-20240816.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ tenmon.spec ++++++
--- /var/tmp/diff_new_pack.DegZRn/_old  2024-09-15 12:40:19.822372149 +0200
+++ /var/tmp/diff_new_pack.DegZRn/_new  2024-09-15 12:40:19.822372149 +0200
@@ -21,7 +21,7 @@
 %endif
 
 Name:           tenmon
-Version:        20240617
+Version:        20240816
 Release:        0
 Summary:        FITS and XISF image viewer, converter and indexer
 License:        GPL-3.0-or-later
@@ -42,6 +42,7 @@
 BuildRequires:  pkgconfig(cfitsio)
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(gsl)
+BuildRequires:  pkgconfig(lcms2)
 BuildRequires:  pkgconfig(libexif)
 BuildRequires:  pkgconfig(libraw)
 BuildRequires:  pkgconfig(wcslib)

++++++ tenmon-20240617.tar.gz -> tenmon-20240816.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tenmon/databaseview.cpp new/tenmon/databaseview.cpp
--- old/tenmon/databaseview.cpp 2024-06-17 09:47:56.000000000 +0200
+++ new/tenmon/databaseview.cpp 2024-08-16 15:16:37.000000000 +0200
@@ -286,6 +286,7 @@
     for(int i=0; i<3; i++)
     {
         m_filterKeyword[i] = new QComboBox(this);
+        m_filterKeyword[i]->setMaximumWidth(300);
         addFilterItems(m_filterKeyword[i], fitsKeywords);
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tenmon/mainwindow.cpp new/tenmon/mainwindow.cpp
--- old/tenmon/mainwindow.cpp   2024-06-17 09:47:56.000000000 +0200
+++ new/tenmon/mainwindow.cpp   2024-08-16 15:16:37.000000000 +0200
@@ -536,21 +536,21 @@
     auto filterToFormat = [](const QString &file, const QString &filter) -> 
const char*
     {
         QString suffix = QFileInfo(file).suffix();
-        if(!suffix.compare("jpg", Qt::CaseInsensitive) || 
!suffix.compare("jpeg", Qt::CaseInsensitive))return "JPEG";
-        if(!suffix.compare("png", Qt::CaseInsensitive))return "PNG";
-        if(!suffix.compare("fits", Qt::CaseInsensitive) || 
!suffix.compare("fit", Qt::CaseInsensitive))return "FITS";
-        if(!suffix.compare("xisf", Qt::CaseInsensitive))return "XISF";
-        if(filter.contains("png"))return "PNG";
-        if(filter.contains("fits"))return "FITS";
-        if(filter.contains("xisf"))return "XISF";
-        return "JPEG";
+        if(!suffix.compare("jpg", Qt::CaseInsensitive) || 
!suffix.compare("jpeg", Qt::CaseInsensitive))return "jpeg";
+        if(!suffix.compare("png", Qt::CaseInsensitive))return "png";
+        if(!suffix.compare("fits", Qt::CaseInsensitive) || 
!suffix.compare("fit", Qt::CaseInsensitive))return "fits";
+        if(!suffix.compare("xisf", Qt::CaseInsensitive))return "xisf";
+        if(filter.contains("png"))return "png";
+        if(filter.contains("fits"))return "fits";
+        if(filter.contains("xisf"))return "xisf";
+        return "jpeg";
     };
 
     if(!file.isEmpty())
     {
         QString format = filterToFormat(file, selectedFilter);
 
-        if(format == "FITS" || format == "XISF")
+        if(format == "fits" || format == "xisf")
         {
             convert(file, format);
         }
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       2024-06-17 
09:47:56.000000000 +0200
+++ new/tenmon/space.nouspiro.tenmon.metainfo.xml       2024-08-16 
15:16:37.000000000 +0200
@@ -57,6 +57,11 @@
     </screenshots>
     <content_rating type="oars-1.1"/>
     <releases>
+    <release version="20240816" date="2024-08-16">
+      <description>
+        Fix saving image
+      </description>
+    </release>
     <release version="20240616" date="2024-06-16">
       <description>
         <ul>

Reply via email to