Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-25 | Use "shell" macro in CFLAGS | Dmitrij 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-25 | Respect default CFLAGS and LDFLAGS if set in environment | Dmitrij 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-25 | Use "PREFIX" instead of "prefix" | Dmitrij D. Czarkoff | |
Most package management systems already expect "PREFIX" macro to control installation path. | |||
2015-12-25 | Use default font | Dmitrij 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-25 | Don't use "stdin" variable name | Dmitrij D. Czarkoff | |
At least on OpenBSD stdin, stdout and stderr are macros, and thus they are expanded before compilation. | |||
2015-12-12 | Merge pull request #55 from khanley6/LinkingFix | Harry Jeffery | |
Fixed linking order to properly link libraries. Linking failed prior | |||
2015-12-12 | Fixed linking order to properly link libraries. Linking failed prior | Kenneth Hanley | |
2015-12-11 | Release v1.2.0 | Harry Jeffery | |
2015-12-11 | Update README | Harry Jeffery | |
2015-12-11 | Document default background color | Harry Jeffery | |
2015-12-10 | Merge pull request #53 from alekskosiacka/master | Harry Jeffery | |
don't create chequered bg if its not used | |||
2015-12-10 | don't create chequered bg if its not used | Aleksandra Kosiacka | |
fixes #40 | |||
2015-12-10 | Merge pull request #52 from alekskosiacka/master | Harry Jeffery | |
hide mouse on key press | |||
2015-12-10 | hide mouse on key press | Aleksandra Kosiacka | |
fixes #37 | |||
2015-12-10 | Merge pull request #51 from eXeC64/imv_reload | Harry Jeffery | |
Add support for reloading files | |||
2015-12-10 | Add support for reloading files | Jose Diez | |
Closes #8. | |||
2015-12-10 | Tell gcc to be pedantic | Harry Jeffery | |
2015-12-10 | Move text rendering into a util function | Harry Jeffery | |
2015-12-10 | Make imv_loader_get_image more informative | Harry Jeffery | |
2015-12-10 | Clean up redraw logic | Harry Jeffery | |
2015-12-10 | Merge pull request #50 from alekskosiacka/master | Harry Jeffery | |
fix images not resizing when toggling fullscreen mode | |||
2015-12-10 | fix images not resizing when toggling fullscreen mode | Aleksandra Kosiacka | |
fixes #31 | |||
2015-12-10 | Merge pull request #49 from alekskosiacka/master | Harry Jeffery | |
add -l option for listing all open images on exit | |||
2015-12-10 | add -l option for listing all open images on exit | Aleksandra Kosiacka | |
fixes #43 | |||
2015-12-09 | Add -t synopsis to manpage | Harry Jeffery | |
2015-12-09 | Merge pull request #47 from whatevsz/slideshow | Harry Jeffery | |
Add slideshow option. | |||
2015-12-09 | Add slideshow option. | Hannes Koerber | |
2015-12-08 | Add testing infrastructure | Harry Jeffery | |
2015-12-08 | Refactor imv_navigator interface | Harry Jeffery | |
2015-12-07 | Permit falling back to software renderer | Harry Jeffery | |
2015-12-04 | Handle null window/renderer gracefully | Harry Jeffery | |
2015-11-30 | Comment main.c more thoroughly | Harry Jeffery | |
2015-11-30 | Document imv_loader's methods | Harry Jeffery | |
2015-11-30 | Document imv_texture's methods | Harry Jeffery | |
2015-11-30 | Document utils | Harry Jeffery | |
2015-11-30 | Document imv_viewport's methods | Harry Jeffery | |
2015-11-30 | Document imv_navigator's methods | Harry Jeffery | |
2015-11-29 | Document pthreads dependency | Harry 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-28 | Improve cancellation responsiveness | Harry Jeffery | |
2015-11-28 | Clean up overlays on exit | Harry Jeffery | |
2015-11-28 | Don't use a possibly NULL current_path | Harry Jeffery | |
2015-11-28 | Use correct free function for SDL_Surface | Harry Jeffery | |
2015-11-28 | Resume playback on image change | Harry Jeffery | |
2015-11-28 | Remove unused parameter | Harry Jeffery | |
2015-11-28 | Move utility functions from main.c to util.c | Harry Jeffery | |
2015-11-28 | Reintroduce text overlay | Harry Jeffery | |
2015-11-28 | Hack image changing logic back into shape | Harry Jeffery | |
2015-11-28 | Improve responsiveness by allowing bg threads to co-exist | Harry Jeffery | |
2015-11-28 | Fix memory corruption bug in imv_navigator_remove_path | Harry Jeffery | |
2015-11-28 | Fix pausing | Harry Jeffery | |