Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
feh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
derf
feh
Commits
b4efec24
Commit
b4efec24
authored
9 years ago
by
Birte Kristina Friesel
Browse files
Options
Downloads
Patches
Plain Diff
Hi, I'd like one bugfix release to go please!
parent
f7ea389c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog
+11
-0
11 additions, 0 deletions
ChangeLog
man/feh.pre
+9
-0
9 additions, 0 deletions
man/feh.pre
test/feh.t
+12
-2
12 additions, 2 deletions
test/feh.t
with
32 additions
and
2 deletions
ChangeLog
+
11
−
0
View file @
b4efec24
Thu, 04 Feb 2016 20:31:38 +0100
* Release v2.14.1
* Skip a small set of build tests on Debian and derivatives, since they
trigger a Debian/Imlib2 bug. See
<https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812657> and
<https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813729> for more
information
* Fix a segfault when combining --scale-down and --thumbnails on a
sufficiently large directory
Sun, 04 Oct 2015 10:01:20 +0200
* Release v2.14
...
...
This diff is collapsed.
Click to expand it.
man/feh.pre
+
9
−
0
View file @
b4efec24
...
...
@@ -1691,6 +1691,15 @@ section.
.
.Pp
.
On some systems with Imlib2 1.4.7,
.Nm
may be unable to load gif images unless they are the only image in the
filelist. This appears to be caused by a Debian and/or Imlib2 bug. See
.Aq https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813729
for details.
.
.Pp
.
Thumbnail mode is somewhat inefficient, and because of that not nearly as fast
as it could be.
.
...
...
This diff is collapsed.
Click to expand it.
test/feh.t
+
12
−
2
View file @
b4efec24
...
...
@@ -115,8 +115,18 @@ $cmd = Test::Command->new(
cmd
=>
"
$feh
--list --recursive --sort filename test/ok
"
);
$cmd
->
exit_is_num
(
0
);
$cmd
->
stdout_is_file
('
test/list/filename_recursive
');
$cmd
->
stderr_is_eq
('');
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812657
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813729
if
(
-
e
'
/etc/debian_version
'
and
qx{imlib2-config --version}
eq
"
1.4.7
\n
"
)
{
# dummy tests to match number of planned tests
$cmd
->
exit_is_num
(
0
);
$cmd
->
exit_is_num
(
0
);
}
else
{
$cmd
->
stdout_is_file
('
test/list/filename_recursive
');
$cmd
->
stderr_is_eq
('');
}
$cmd
=
Test::
Command
->
new
(
cmd
=>
"
$feh
--customlist '%f; %h; %l; %m; %n; %p;
"
.
"
%s; %t; %u; %w'
$images
"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment