summaryrefslogtreecommitdiff
path: root/irfanview
diff options
context:
space:
mode:
Diffstat (limited to 'irfanview')
-rw-r--r--irfanview/debian/changelog24
-rwxr-xr-xirfanview/deploy-to-obs.sh2
2 files changed, 25 insertions, 1 deletions
diff --git a/irfanview/debian/changelog b/irfanview/debian/changelog
index 5502ca4..d721341 100644
--- a/irfanview/debian/changelog
+++ b/irfanview/debian/changelog
@@ -1,3 +1,27 @@
+irfanview (4.67-1+stackrpms) obs; urgency=low
+
+ - Version 4.67 Release date: 2024-04-05
+ * Smaller fixes (Insert Text, Paste warning, Hex viewer, Auto adjust
+ colors)
+ * Separate overwrite option for Save/Save-As menus (Properties->File
+ Handling)
+ * The Insert Text dialog will remember the last screen position
+ * New OCR PlugIn: requires Tesseract OCR (Properties->PlugIns)
+ * See "i_plugins.txt" for infos
+ (https://github.com/UB-Mannheim/tesseract/wiki
+ * Support for PNG comment (Image->Info dialog or $C placeholder;
+ reading only)
+ * SFF PlugIn loading bugs fixed (thanks to Mateusz "LeftarCode" Lewczak)
+ * EXR PlugIn loading bugs fixed (thanks to Minji Kim and Jaehun of WHS
+ WWW Team)
+ * PSP/Formats PlugIn loading bug fixed (thanks to wangmy)
+ * Loading issues in several PlugIns fixed (thanks to Trend Micro)
+ * Fixed PlugIns: Formats, DPX/CIN, WSQ, MrSID, AWD
+ * PSP/Formats PlugIn loading bug fixed (thanks to wangmy)
+ * PSP/Formats PlugIn loading bug fixed (thanks to wangmy)
+
+ -- B. Stack <bgstack15@gmail.com> Tue, 09 Apr 2024 16:52:05 -0400
+
irfanview (4.66-1+stackrpms) obs; urgency=low
- Version 4.66 Release date: 2023-12-20
diff --git a/irfanview/deploy-to-obs.sh b/irfanview/deploy-to-obs.sh
index e2fbd0f..6d0073f 100755
--- a/irfanview/deploy-to-obs.sh
+++ b/irfanview/deploy-to-obs.sh
@@ -12,7 +12,7 @@ obsdir="${devdir}/osc/home:bgstack15/irfanview"
# Flow
cd "${devdir}"
-"${gitdir}/build-orig-tarball.sh"
+sh -x "${gitdir}/build-orig-tarball.sh"
echo "DONE WITH build-orig-tarball"
tf="$( find . -maxdepth 1 -name 'irfanview*orig*z' -printf '%T@ %f\n' | sort -n -k1 | awk '{print $NF}' | tail -n1 )"
tar -zxf "${tf}"
bgstack15