feh-1.16.2
This commit is contained in:
parent
3f86aa7d96
commit
85b636914e
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.29 2011/09/15 13:27:09 dcoppa Exp $
|
||||
# $OpenBSD: Makefile,v 1.30 2011/09/26 18:01:26 dcoppa Exp $
|
||||
|
||||
COMMENT= lightweight image viewer
|
||||
|
||||
DISTNAME= feh-1.16.1
|
||||
DISTNAME= feh-1.16.2
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
CATEGORIES= graphics
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
MD5 (feh-1.16.1.tar.bz2) = G7CAx7ACHbUIhKUhYSUZkA==
|
||||
RMD160 (feh-1.16.1.tar.bz2) = +e7A9WpGh9Wt6SjnI6AWZ+v0YaI=
|
||||
SHA1 (feh-1.16.1.tar.bz2) = 8BYEOCbPMNM2dfzrok2XUyBtlHo=
|
||||
SHA256 (feh-1.16.1.tar.bz2) = ncOLXAdPK8dzPocBANZ1Gvm8xveGuCKaGMhY9zyAnKg=
|
||||
SIZE (feh-1.16.1.tar.bz2) = 2223084
|
||||
MD5 (feh-1.16.2.tar.bz2) = rpRjHbpS/pmcjYRgcMlJ1Q==
|
||||
RMD160 (feh-1.16.2.tar.bz2) = owN9/BfbNnpBz7qCo2iPHZ3buLE=
|
||||
SHA1 (feh-1.16.2.tar.bz2) = u7Uw8bypFABABSFkw/eSiQEcRfE=
|
||||
SHA256 (feh-1.16.2.tar.bz2) = qc5Y0aLBRQuzLGF4xo0/J5Ig7rRN9k4GPtNWZpR3ht4=
|
||||
SIZE (feh-1.16.2.tar.bz2) = 2223378
|
||||
|
@ -1,51 +1,15 @@
|
||||
$OpenBSD: patch-man_feh_pre,v 1.6 2011/09/15 13:27:09 dcoppa Exp $
|
||||
$OpenBSD: patch-man_feh_pre,v 1.7 2011/09/26 18:01:26 dcoppa Exp $
|
||||
|
||||
Sync manpage with reality
|
||||
(upstream git commit 036b3d197202e4dd0aa50291a5bf10ded0079e3c)
|
||||
fix typo
|
||||
|
||||
--- man/feh.pre.orig Sun Sep 11 12:51:04 2011
|
||||
+++ man/feh.pre Thu Sep 15 15:17:10 2011
|
||||
@@ -137,8 +137,7 @@ Extra actions which can be set and triggered using the
|
||||
.
|
||||
.It Cm -Z , --auto-zoom
|
||||
.
|
||||
-Zoom pictures to screen size in fullscreen
|
||||
-.Pq affected by Cm --stretch No and Cm --ignore-aspect .
|
||||
+Zoom pictures to screen size in fullscreen / fixed geometry mode.
|
||||
.
|
||||
.It Cm -x , --borderless
|
||||
.
|
||||
@@ -165,10 +164,9 @@ the caption will be looked for in
|
||||
.
|
||||
.It Cm -L , --customlist Ar format
|
||||
.
|
||||
-Use
|
||||
+Don't display images, print image info according to
|
||||
--- man/feh.pre.orig Mon Sep 26 19:54:00 2011
|
||||
+++ man/feh.pre Mon Sep 26 19:54:21 2011
|
||||
@@ -167,7 +167,7 @@ the caption will be looked for in
|
||||
Don't display images, print image info according to
|
||||
.Ar format
|
||||
-.Pq printf-like string containing image info specifiers
|
||||
-for list output. See
|
||||
+instead. See
|
||||
.Sx FORMAT SPECIFIERS .
|
||||
instead. See
|
||||
-.Sx FORMAT SPECIFIEDRS .
|
||||
+.Sx FORMAT SPECIFIERS .
|
||||
.
|
||||
.It Cm --cycle-once
|
||||
@@ -261,17 +259,13 @@ screen size. The only exception is a
|
||||
of 100, in which case images will always be shown at 100% zoom, no matter
|
||||
their dimensions.
|
||||
.
|
||||
-.It Cm -g , --geometry Ar width No x Ar height
|
||||
+.It Cm -g , --geometry Ar width No x Ar height Op + Ar x No + Ar y
|
||||
.
|
||||
Limit (and don't change) the window size. Takes an X-style geometry
|
||||
.Ar string
|
||||
-like 640x480.
|
||||
-Note that larger images will be zoomed out to fit but you can see them at 1:1
|
||||
+like 640x480 with optional +x+y window offset.
|
||||
+Note that larger images will be zoomed out to fit, but you can see them at 1:1
|
||||
by clicking the zoom button.
|
||||
-.
|
||||
-.It Cm -h , --help
|
||||
-.
|
||||
-display help output and exit.
|
||||
.
|
||||
.It Cm -Y , --hide-pointer
|
||||
.
|
||||
|
@ -1,24 +0,0 @@
|
||||
$OpenBSD: patch-src_imlib_c,v 1.9 2011/09/15 13:27:09 dcoppa Exp $
|
||||
|
||||
Fix a memory leak when using feh --reload on http URLs
|
||||
(upstream git commit af2a44237a7b5cebbf0d03375ed742809da15a59)
|
||||
|
||||
--- src/imlib.c.orig Sun Sep 11 12:51:04 2011
|
||||
+++ src/imlib.c Thu Sep 15 15:14:23 2011
|
||||
@@ -151,13 +151,14 @@ int feh_load_image(Imlib_Image * im, feh_file * file)
|
||||
/* Http, no reload, slideshow. Let's keep this image on hand... */
|
||||
free(file->filename);
|
||||
file->filename = estrdup(tmpname);
|
||||
+
|
||||
+ if (!opt.keep_http)
|
||||
+ add_file_to_rm_filelist(tmpname);
|
||||
} else {
|
||||
/* Don't cache the image if we're doing reload + http (webcams etc) */
|
||||
if (!opt.keep_http)
|
||||
unlink(tmpname);
|
||||
}
|
||||
- if (!opt.keep_http)
|
||||
- add_file_to_rm_filelist(tmpname);
|
||||
free(tmpname);
|
||||
} else {
|
||||
*im = imlib_load_image_with_error_return(file->filename, &err);
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-src_options_c,v 1.3 2011/09/09 09:51:43 dcoppa Exp $
|
||||
--- src/options.c.orig Mon Sep 5 11:00:25 2011
|
||||
+++ src/options.c Fri Sep 9 11:27:11 2011
|
||||
@@ -169,7 +169,7 @@ static void feh_load_options_for_theme(char *theme)
|
||||
$OpenBSD: patch-src_options_c,v 1.4 2011/09/26 18:01:27 dcoppa Exp $
|
||||
--- src/options.c.orig Mon Sep 26 09:37:05 2011
|
||||
+++ src/options.c Mon Sep 26 19:52:05 2011
|
||||
@@ -168,7 +168,7 @@ static void feh_load_options_for_theme(char *theme)
|
||||
|
||||
free(oldrcpath);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user