summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)AuthorLines
5 daysNo Maintenance IntendedHEADmasterBirte Kristina Friesel-1/+3
2023-12-03Re-structure READMEBirte Kristina Friesel-60/+60
2022-08-21README: Add libXt to list of dependenciesDaniel Friesel-0/+1
Closes #665
2022-06-10do not enable libmagic by defaultDaniel Friesel-2/+5
2022-02-08use libmagic to detect valid file formatsChristian Hesse-0/+2
Writing our own magic bytes detection is prone to errors and an everlasting catch-up-game. Let's use libmagic to get things right, this is less code and makes things more reliable. Building without libmagic is still possible. That will make the code act like specifying FEH_SKIP_MAGIC=1, effectively passing everything to imlib2.
2021-09-09feh_http_load_image: Use mkstemps to save image with correct suffixDaniel Friesel-0/+1
This allows feh to load .gif images via libcurl, as some imlib2 versions only load gif images if the suffix is correct. It's also more convenient when using --keep-http. To achieve this, feh needs to use mkstemps. mkstemps is a non-standard extension that is available on several systems. Compile feh with "mkstemps=0" to use mkstemp instead. Closes #630
2020-06-15Enable --version-sort on systems without strverscmp()Tim van der Molen-1/+1
The --version-sort option requires strverscmp(), but this is a glibc extension that does not exist on OpenBSD and other systems. To enable --version-sort on those systems, provide an internal implementation of strverscmp(). The implementation is from the musl C library and is MIT-licensed. The build process remains the same: the verscmp flag should be set to 1 only if strverscmp() is available in libc. If verscmp is 0, then the internal implementation is used.
2019-04-01Merge remote-tracking branch 'original/master'Sven Willner-41/+50
2018-11-18some contribution notesDaniel Friesel-0/+17
2018-11-18README: PREFIX defaults to /usr/localDaniel Friesel-1/+1
2018-11-18Improve README and feh(1) introductionDaniel Friesel-41/+34
2018-11-12README: Use HTTPS linksDaniel Friesel-4/+3
2018-11-04Fix typos/errors in READMEDaniel Friesel-2/+3
2018-11-04Remove feh-cam and gen-cam-menuDaniel Friesel-1/+0
2018-09-13Merge branch 'master' of github.com:derf/fehSven Willner-0/+3
2018-04-04Add build tests for non-default build options using Travis CIDaniel Friesel-0/+2
2018-02-28Add Makefile flag to disable version sorting on C libraries without strverscmpDaniel Friesel-0/+1
2017-10-27added inotify option to README.mdSven Willner-0/+1
2016-09-21Convert README to markdownFahad Hossain-0/+136
Looks prettier