summaryrefslogtreecommitdiff
path: root/src/options.c
AgeCommit message (Collapse)Author
2011-08-01options.c: Fix getopt/optind handling (closes #49, patch by Yu-Jie Lin)Daniel Friesel
2011-06-07Add toggle_info key (closes #48)Daniel Friesel
2011-05-11feh_parse_options_from_string: Make sure not to write beyond array boundariesDaniel Friesel
2011-05-11feh_parse_options_from_string: allocate argv list on stackDaniel Friesel
This fixes a really weird bug where continued theme definitions containing just one option/value pair caused feh to mis-parse parts of the following line. Apparently, subsequent realloc calls mixed with strdups in another function caused parts of the list (argv) content to be overwritten by the content of the list pointer itself. I wasn't able to find out the exact causes / conditions.
2011-04-30Do not include help text by defaultDaniel Friesel
2011-04-30Replace some printf calls by fputs/putcDaniel Friesel
2011-04-27Deprecate --menu-bg option (closes #27)Daniel Friesel
2011-04-26Improve '.fehrc -> .config/feh/themes' warning messageDaniel Friesel
2011-04-16options.c: Do not read current directory when setting a background (closes #40)Daniel Friesel
2011-04-01options.c: Do not run "feh ." when calling "feh nonexistant"Daniel Friesel
2011-03-21Add method to forcefully disable antialiasing (closes GH-17)Daniel Friesel
2011-03-19When called without file arguments: Show files in $PWDDaniel Friesel
2011-03-02Switch --zoom max/fill to make them work like --bg-max/-fill (closes GH-8)Daniel Friesel
2011-02-27options.c: Remove obsolete feh_parse_environment_options declarationDaniel Friesel
2011-02-16Remove builtin HTTP clientDaniel Friesel
2011-02-16feh -v: Show compiletime switchesDaniel Friesel
2011-02-16Remove wget support, use libcurl by defaultDaniel Friesel
2011-02-15Add libcurl option -{Andrew Potter
2011-01-29Deprecate --menu-styleDaniel Friesel
2011-01-25options.c: Move hold-action check to check_options.Daniel Friesel
In feh_parse_option_array, when a hold-action is set from a theme it would behave differently than one set from commandline. Theme: ;;foo would become foo (incorrect) cmdline: ;;foo would become ;foo (correct) I doubt anybody would ever have noticed it, since ;foo is a shell syntax error anyways, but it's definitely better to be on the safe side.
2011-01-24Remove support for FEH_OPTIONS (it was deprecated over 5 years ago)Daniel Friesel
2011-01-23Parse commandline options _after_ theme options (closes GH-23)Daniel Friesel
2011-01-22Add --zoom fill as equivalent to --auto-zoomDaniel Friesel
2011-01-17Copyright FooDaniel Friesel
2011-01-15BC for ~/.fehrcDaniel Friesel
2011-01-15Screw --rcpath, check XDG_CONFIG_HOME insteadDaniel Friesel
2011-01-15Read themes from ~/.config/feh/themes, don't autocreate for nowDaniel Friesel
2010-09-14Remove --action-hold-slide, add per-action method instead.Daniel Friesel
When executing an action starting with a semicolon, feh will not skip to the next slide. The semicolon is not passed on to the executing shell, of course. This is kinda ugly, but at least it makes action handling somewhat more flexible.
2010-09-10Add --info optionDaniel Friesel
2010-09-05Option --action-hold-slide. If specified, when in slideshow mode images will ↵Levi Smith
not automatically change after running user action. Otherwise, slideshow images will cycle after action as usual.
2010-08-27Add short option -Y for --hide-pointerDaniel Friesel
2010-08-27Remove --bg-seamlessDaniel Friesel
2010-08-27Patch by Stefan Mark: Add --bg-max wallpaper modeDaniel Friesel
2010-07-17--debug-level → --debugDaniel Friesel
2010-07-09Add new short options -P, -K, -G, -JDaniel Friesel
2010-07-08opt.no_jump_on_resort -> opt.jump_on_resortDaniel Friesel
2010-07-08Remove --menu-border optionDaniel Friesel
2010-07-04options.c: CleanupDaniel Friesel
2010-07-04--full-screen -> --fullscreen (more correct[tm])Daniel Friesel
2010-06-25Remove --wget-timestamp option (contained a remote code execution hole)Daniel Friesel
2010-06-19Move fehrc / help from options.c into separate filesDaniel Friesel
2010-06-19Allow multiline theme definitions in .fehrcDaniel Friesel
2010-06-19Rename --screen-clip to --no-screen-clip, the default cannot be changedDaniel Friesel
2010-06-16Make --font set the global default fontDaniel Friesel
2010-06-10Remove D_ENTER/D_RETURN, use gdb tracepoints + readelf/awk magic insteadDaniel Friesel
2010-06-10options.c: show_usage etc. aren't used elsewhereDaniel Friesel
2010-06-07Allow specifying slideshow-delay while starting the slideshow in paused modeDaniel Friesel
Set --slideshow-delay to a negative value to achieve that. In that case, the actual slideshow-delay will be <value> * (-1), so -D-5 sets slideshow-delay 5 seconds but starts paused. Closes: GH-4 <http://github.com/derf/feh/issues#issue/4>
2010-06-01Do not require X for options which don't use itDaniel Friesel
This makes the tests also work on systems which don't run X.
2010-05-31major --thumbnails speed impromevents, new --thumb-redraw optionDaniel Friesel
See ChangeLog / man/feh.1 "--thumb-redraw" for more
2010-05-31Support caching of thumbnails up to 256x256 pixels (.thumbnails/large)Daniel Friesel
Depending on --thumb-width/--thumb-height, either .thumbnails/normal or .thumbnails/large is used. For higher dimensions, thumbnail caching is still silently disabled, this should also be what the standard indicates.