aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-12-26Improve readability of g_optionsHarry Jeffery
The default options block was getting quite ridiculous to try and read. Let's improve the readability.
2015-12-26Merge pull request #64 from czarkoff/masterHarry Jeffery
Build infrastructure improvements
2015-12-26Merge pull request #62 from czarkoff/fontHarry Jeffery
Use default font
2015-12-25Document default font change in help textDmitrij D. Czarkoff
2015-12-25Document default font in manualDmitrij D. Czarkoff
Also reference the fonts.conf(5) manual, which explains fonts configuration.
2015-12-25Fix verbose buildDmitrij D. Czarkoff
2015-12-25Merge pull request #63 from czarkoff/stdinHarry Jeffery
Don't use "stdin" variable name
2015-12-25Add verbose modeDmitrij D. Czarkoff
If V variable is set to any value, commands will be echoed to standard output.
2015-12-25Make installation locations more configurableDmitrij D. Czarkoff
This might be desired when platform has its own, custom layout (eg. OpenBSD or Solaris), or when user wants to install the program to his home directory.
2015-12-25Use "shell" macro in CFLAGSDmitrij D. Czarkoff
When CFLAGS contain "`cmd`" construct, the "cmd" command is executed every time when make issues shell command with expanded CFLAGS. Using "$(shell cmd)" instead forces make to expand output of "cmd" into CFLAGS.
2015-12-25Respect default CFLAGS and LDFLAGS if set in environmentDmitrij D. Czarkoff
Some package management systems allow users to set default CFLAGS and LDFLAGS and then supply them to the make via environment. This change makes build infrastructure respect such settings. Also, don't force non-essential flags.
2015-12-25Use "PREFIX" instead of "prefix"Dmitrij D. Czarkoff
Most package management systems already expect "PREFIX" macro to control installation path.
2015-12-25Use default fontDmitrij D. Czarkoff
"Monospace" is a font name reserved for default monospace font, which is supposed to be set to particular font user prefers.
2015-12-25Don't use "stdin" variable nameDmitrij D. Czarkoff
At least on OpenBSD stdin, stdout and stderr are macros, and thus they are expanded before compilation.
2015-12-12Merge pull request #55 from khanley6/LinkingFixHarry Jeffery
Fixed linking order to properly link libraries. Linking failed prior
2015-12-12Fixed linking order to properly link libraries. Linking failed priorKenneth Hanley
2015-12-11Release v1.2.0Harry Jeffery
2015-12-11Update READMEHarry Jeffery
2015-12-11Document default background colorHarry Jeffery
2015-12-10Merge pull request #53 from alekskosiacka/masterHarry Jeffery
don't create chequered bg if its not used
2015-12-10don't create chequered bg if its not usedAleksandra Kosiacka
fixes #40
2015-12-10Merge pull request #52 from alekskosiacka/masterHarry Jeffery
hide mouse on key press
2015-12-10hide mouse on key pressAleksandra Kosiacka
fixes #37
2015-12-10Merge pull request #51 from eXeC64/imv_reloadHarry Jeffery
Add support for reloading files
2015-12-10Add support for reloading filesJose Diez
Closes #8.
2015-12-10Tell gcc to be pedanticHarry Jeffery
2015-12-10Move text rendering into a util functionHarry Jeffery
2015-12-10Make imv_loader_get_image more informativeHarry Jeffery
2015-12-10Clean up redraw logicHarry Jeffery
2015-12-10Merge pull request #50 from alekskosiacka/masterHarry Jeffery
fix images not resizing when toggling fullscreen mode
2015-12-10fix images not resizing when toggling fullscreen modeAleksandra Kosiacka
fixes #31
2015-12-10Merge pull request #49 from alekskosiacka/masterHarry Jeffery
add -l option for listing all open images on exit
2015-12-10add -l option for listing all open images on exitAleksandra Kosiacka
fixes #43
2015-12-09Add -t synopsis to manpageHarry Jeffery
2015-12-09Merge pull request #47 from whatevsz/slideshowHarry Jeffery
Add slideshow option.
2015-12-09Add slideshow option.Hannes Koerber
2015-12-08Add testing infrastructureHarry Jeffery
2015-12-08Refactor imv_navigator interfaceHarry Jeffery
2015-12-07Permit falling back to software rendererHarry Jeffery
2015-12-04Handle null window/renderer gracefullyHarry Jeffery
2015-11-30Comment main.c more thoroughlyHarry Jeffery
2015-11-30Document imv_loader's methodsHarry Jeffery
2015-11-30Document imv_texture's methodsHarry Jeffery
2015-11-30Document utilsHarry Jeffery
2015-11-30Document imv_viewport's methodsHarry Jeffery
2015-11-30Document imv_navigator's methodsHarry Jeffery
2015-11-29Document pthreads dependencyHarry Jeffery
The linking argument isn't strictly needed, since SDL pulls that in, but there's no harm in manually specifying it for people reading the Makefile to see.
2015-11-28Improve cancellation responsivenessHarry Jeffery
2015-11-28Clean up overlays on exitHarry Jeffery
2015-11-28Don't use a possibly NULL current_pathHarry Jeffery