aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-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
2015-11-28Use correct free function for SDL_SurfaceHarry Jeffery
2015-11-28Resume playback on image changeHarry Jeffery
2015-11-28Remove unused parameterHarry Jeffery
2015-11-28Move utility functions from main.c to util.cHarry Jeffery
2015-11-28Reintroduce text overlayHarry Jeffery
2015-11-28Hack image changing logic back into shapeHarry Jeffery
2015-11-28Improve responsiveness by allowing bg threads to co-existHarry Jeffery
2015-11-28Fix memory corruption bug in imv_navigator_remove_pathHarry Jeffery
2015-11-28Fix pausingHarry Jeffery
2015-11-28Implement background frame loadingHarry Jeffery