- Update to 1.2.1:

* Fixed Anscombe VST noise reduction option for mono images
  * Fixed HEIF import (#1198)
  * Fixed Noise Reduction Anscombe VST bug with mono images (#1200)
  * Fixed problems with Fourier Transform planning > Estimate (#1199)
  * Fixed data initialisation bugs in copyfits() and RGB compositing tool
  * Fixed exported x-column for lightcurves when Julian date is not selected (#1220)
  * Fixed sampling tolerance for astrometry which was incorrectly read (#1231)
  * Allowed for RA/DEC to be sorted in PSF windows (#1214)
  * Added SET-TEMP as valid FITS header to be saved (#1215)
  * Added configurable color for background extraction sample and standard annotations (#1230)
  * Fixed argument parsing error in makepsf (!593)
  * Fixed light_curve and csv export from plot when some images were unselected from the sequence (#1169)
  * Added undo/redo when platesolving with astrometry.net (#1233)
  * Fixed crash in findstar when detecting stars close to the border (#1237)
  * Fixed using wcs info when using light_curve command (#1195)
  * Allowed moving file into workdir to be picked up for livestacking (#1223)
  * Fixed the way we check if there is enough space to use quick photometry (#1238)
  * Fixed bit depth evaluation for 8-bit images (#1244)
  * Fixed division by 0 in PixelMath (#1249)
- Drop upstreamed fix-exiv2.patch

OBS-URL: https://build.opensuse.org/package/show/graphics/siril?expand=0&rev=44
This commit is contained in:
Paolo Stivanin 2024-01-26 13:01:49 +00:00 committed by Git OBS Bridge
parent d31499e922
commit 9fbf109837
5 changed files with 31 additions and 29 deletions

View File

@ -1,22 +0,0 @@
Index: siril-1.2.0/src/core/exif.cpp
===================================================================
--- siril-1.2.0.orig/src/core/exif.cpp
+++ siril-1.2.0/src/core/exif.cpp
@@ -121,10 +121,16 @@ int siril_get_thumbnail_exiv(const char
#endif
}
+#if EXIV2_TEST_VERSION(0,28,0)
+ typedef Exiv2::Image::UniquePtr ImagePtr;
+#else
+ typedef Exiv2::Image::AutoPtr ImagePtr;
+#endif
+
gchar* siril_get_date_from_exif(const char *filename) {
#ifdef HAVE_EXIV2
try {
- Exiv2::Image::AutoPtr image = Exiv2::ImageFactory::open(WIDEN(filename));
+ ImagePtr image = Exiv2::ImageFactory::open(WIDEN(filename));
if (image.get() == 0) {
fprintf(stderr, "Error Cannot open the file.\n");
return NULL;

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a64aa3a1b718366c0e6b551b04a08d44e6c85dbff13273671dfeb17735352650
size 4500147

3
siril-1.2.1.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8dbc220ca798c962859c118223fd14e9fd1becf149d06b4c4fae6b3688c680f7
size 4596163

View File

@ -1,3 +1,28 @@
-------------------------------------------------------------------
Fri Jan 26 12:55:49 UTC 2024 - Paolo Stivanin <info@paolostivanin.com>
- Update to 1.2.1:
* Fixed Anscombe VST noise reduction option for mono images
* Fixed HEIF import (#1198)
* Fixed Noise Reduction Anscombe VST bug with mono images (#1200)
* Fixed problems with Fourier Transform planning > Estimate (#1199)
* Fixed data initialisation bugs in copyfits() and RGB compositing tool
* Fixed exported x-column for lightcurves when Julian date is not selected (#1220)
* Fixed sampling tolerance for astrometry which was incorrectly read (#1231)
* Allowed for RA/DEC to be sorted in PSF windows (#1214)
* Added SET-TEMP as valid FITS header to be saved (#1215)
* Added configurable color for background extraction sample and standard annotations (#1230)
* Fixed argument parsing error in makepsf (!593)
* Fixed light_curve and csv export from plot when some images were unselected from the sequence (#1169)
* Added undo/redo when platesolving with astrometry.net (#1233)
* Fixed crash in findstar when detecting stars close to the border (#1237)
* Fixed using wcs info when using light_curve command (#1195)
* Allowed moving file into workdir to be picked up for livestacking (#1223)
* Fixed the way we check if there is enough space to use quick photometry (#1238)
* Fixed bit depth evaluation for 8-bit images (#1244)
* Fixed division by 0 in PixelMath (#1249)
- Drop upstreamed fix-exiv2.patch
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Sep 21 05:49:59 UTC 2023 - Paolo Stivanin <info@paolostivanin.com> Thu Sep 21 05:49:59 UTC 2023 - Paolo Stivanin <info@paolostivanin.com>

View File

@ -1,7 +1,7 @@
# #
# spec file for package siril # spec file for package siril
# #
# Copyright (c) 2023 SUSE LLC # Copyright (c) 2024 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -17,14 +17,13 @@
Name: siril Name: siril
Version: 1.2.0 Version: 1.2.1
Release: 0 Release: 0
Summary: An astronomical image processing software for Linux. (IRIS clone) Summary: An astronomical image processing software for Linux. (IRIS clone)
License: BSL-1.0 AND GPL-3.0-or-later License: BSL-1.0 AND GPL-3.0-or-later
Group: Productivity/Scientific/Physics Group: Productivity/Scientific/Physics
URL: https://www.siril.org/ URL: https://www.siril.org/
Source: https://gitlab.com/free-astro/siril/-/archive/%{version}/siril-%{version}.tar.bz2 Source: https://gitlab.com/free-astro/siril/-/archive/%{version}/siril-%{version}.tar.bz2
Patch0: fix-exiv2.patch
BuildRequires: cmake BuildRequires: cmake
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: gcc-c++ BuildRequires: gcc-c++
@ -61,7 +60,7 @@ processing tool, able to convert, pre-process images, help aligning them
automatically or manually, stack them and enhance final images. automatically or manually, stack them and enhance final images.
%prep %prep
%autosetup -n siril-%{version} -p1 %autosetup -p1
%build %build
# override build directory, the default "build" is a regular source directory # override build directory, the default "build" is a regular source directory