summaryrefslogtreecommitdiff
path: root/irfanview
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2021-02-01 10:47:44 -0500
committerB Stack <bgstack15@gmail.com>2021-02-01 10:53:24 -0500
commit4049043f6f3d131daa3e93e245df7bbeb073ffb5 (patch)
tree79610716ddd1808e89f0d0d20502fcfeb1954666 /irfanview
parentMerge branch 'freefilesync-bump' into 'master' (diff)
downloadstackrpms-4049043f6f3d131daa3e93e245df7bbeb073ffb5.tar.gz
stackrpms-4049043f6f3d131daa3e93e245df7bbeb073ffb5.tar.bz2
stackrpms-4049043f6f3d131daa3e93e245df7bbeb073ffb5.zip
irfanview 4.57 rc1
Diffstat (limited to 'irfanview')
-rw-r--r--irfanview/debian/changelog20
-rw-r--r--irfanview/debian/control4
-rw-r--r--irfanview/irfanview.spec11
3 files changed, 27 insertions, 8 deletions
diff --git a/irfanview/debian/changelog b/irfanview/debian/changelog
index 062a1e8..8ef8f76 100644
--- a/irfanview/debian/changelog
+++ b/irfanview/debian/changelog
@@ -1,3 +1,19 @@
+irfanview (4.57-1+devuan) obs; urgency=low
+
+ - Version 5.67 Release date: 2021-01-13
+ * Improved option "Try registry changes" (Properties->Extensions)
+ * Option to use new Windows File-Open dialog (Properties->Misc)
+ * Option to create only Shortcuts (LNK file) in File-Copy dialog
+ * New Camera RAW PlugIn (based on LibRAW, thanks to Alex Tutubalin)
+ * Support for WPG format (PlugIn, WPG version 1; thanks to Flurmy)
+ * Improved GIF reading
+ * PCX loading bug fixed (thanks to @DmitriyMelikov, CVE-2020-35133)
+ * MNG PlugIn loading bug fixed (thanks to ThanhTP)
+ * PCX format moved to FORMATS PlugIn
+ * Several PlugIns are changed/updated, please install the newest versions:
+
+ -- B. Stack <bgstack15@gmail.com> Mon, 01 Feb 2021 10:39:15 -0500
+
irfanview (4.56-1+devuan) obs; urgency=low
- Version 4.56 Release date: 2020-10-21
@@ -28,7 +44,7 @@ irfanview (4.56-1+devuan) obs; urgency=low
* Formats PlugIn bugs fixed (XPM,XBM,CR2,HDR,WBMB,FITS,DDS) (thanks to nhiephon)
(CVE-2020-13905, CVE-2020-13906)
* MNG PlugIn loading bug fixed (thanks to zhazha crack)
- * Several PlugIns are changed/updated, please install the newest versions:
+ * Several PlugIns are changed/updated, please install the newest versions:
-- B Stack <bgstack15@gmail.com> Fri, 06 Nov 2020 09:53:14 -0500
@@ -71,7 +87,7 @@ irfanview (4.54-1+devuan) obs; urgency=medium
* DPX PlugIn loading bug fixed (thanks to Linhlhq, CVE-2019-17256)
* WSQ PlugIn loading bug fixed (thanks to Linhlhq, CVE-2019-17250)
* JLS PlugIn loading bug fixed (thanks to Linhlhq, CVE-2019-17253)
- * Several PlugIns are changed/updated, please install the newest versions:
+ * Several PlugIns are changed/updated, please install the newest versions:
-- B Stack <bgstack15@gmail.com> Thu, 18 Dec 2019 09:20:59 -0500
diff --git a/irfanview/debian/control b/irfanview/debian/control
index 5b8950c..c8b21c3 100644
--- a/irfanview/debian/control
+++ b/irfanview/debian/control
@@ -25,7 +25,7 @@ Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends},
wine | wine-staging | winehq | winehq-staging | wine-stable,
- irfanview-common
+ irfanview-common (>= ${binary:Version})
Provides: irfanview
Description: graphics viewer from a non-free OS
The 32-bit release.
@@ -35,7 +35,7 @@ Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends},
wine64 | wine-staging | winehq | winehq-staging | wine-stable,
- irfanview-common
+ irfanview-common (>= ${binary:Version})
Suggests: xchm
Provides: irfanview, x-graphics-viewer
Description: graphics viewer from a non-free OS
diff --git a/irfanview/irfanview.spec b/irfanview/irfanview.spec
index a6fd0fc..883d777 100644
--- a/irfanview/irfanview.spec
+++ b/irfanview/irfanview.spec
@@ -5,9 +5,9 @@
#global upstream_url http://www.irfanview.info/files
Name: irfanview
-Version: 4.56
+Version: 4.57
Release: 1
-Summary: irfanview is a graphics viewer
+Summary: graphics viewer from non-free OS
%define version_num %( echo %version | tr -d '\.' )
Group: Applications/Graphics
@@ -56,7 +56,7 @@ Common elements like desktop file and icons.
%package bin32
Requires: /usr/bin/wine32
-Requires: %{name}-common
+Requires: %{name}-common = %{version}-%{release}
Provides: irfanview
Obsoletes: irfan < 4.51-2
Obsoletes: irfanview < 4.53-1
@@ -67,7 +67,7 @@ The 32-bit release of irfanview
%package bin64
Requires: /usr/bin/wine64
-Requires: %{name}-common
+Requires: %{name}-common = %{version}-%{release}
Provides: irfanview
Obsoletes: irfan < 4.51-2
Obsoletes: irfanview < 4.53-1
@@ -205,6 +205,9 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%{_datadir}/%{name}64
%changelog
+* Mon Feb 01 2021 B. Stack <bgstack15@gmail.com> - 4.57-1
+- version bump
+
* Fri Nov 06 2020 B Stack <bgstack15@gmail.com> - 4.56-1
- version bump
bgstack15