Commit Graph

96 Commits

Author SHA1 Message Date
Markus Teich
268d1968ea fix include and lib paths for the BSDs 2016-03-15 23:51:30 +01:00
Markus Teich
ceda5d69ac support FreeBSD
On FreeBSD the lib and include directories are in /usr/local rather than /usr.
2016-03-15 20:21:54 +01:00
Markus Teich
c61e9a4b8a Import arg.h OOB fix from Lucas Gabriel Vuotto.
This is a small fix for arg.h where it's possible to perform an out-of-boundary
memory access in argv's internal string.
2016-03-06 20:56:29 +01:00
Markus Teich
b954ed4b9f Fix cmdline argument check
There was a segfault when sent was called without arguments. Now we use stdin
when there's no argument or - is used. Thanks to izabera for the report.
2016-03-06 20:49:18 +01:00
Markus Teich
616aafdcb9 no need to reimplement cat here 2016-02-06 14:12:47 +01:00
Markus Teich
3019229279 improve error handling
- errors are now fatal
- no need to clean up when dying
- no need for status return codes => ffread and ffprepare now return void
2016-02-06 14:08:43 +01:00
Markus Teich
77809fae79 style: move function return types to own line 2016-02-05 16:17:43 +01:00
FRIGN
a95e592992 Use 2ff exclusively in config.def.h 2016-02-05 15:39:24 +01:00
FRIGN
68ac6486b1 Fix alpha blending
- "/ 257", because 255 * 257 = UINT16_MAX
- "/ 255", because that's the maximum possible RGB value
2016-02-05 15:35:59 +01:00
Markus Teich
b0ad67036e readme: update reference to farbfeld 2016-02-05 15:25:29 +01:00
David Phillips
022ae48360 Change an eprintf to a die to stop child from running its own slideshow
The child thread was created because execlp will not return if successful.
The eprintf was placed after the call to execlp to catch any error, but the
child continued to return a (closed) fds[0], resulting in a second slideshow
being run by the child.

This commit fixes the issue by killing the child.
2015-12-24 01:57:50 +01:00
Grant Mathews
54daf38b08 filter via shell pipeline
Instead of requiring an executable, allow building arbitrary shell
pipelines to filter filetypes through.
2015-12-24 01:51:29 +01:00
Markus Teich
11f2c648eb unbreak the build 2015-12-09 00:52:39 +01:00
Markus Teich
008ff1b88b fix 2 uninitialized variables and bin == NULL check 2015-12-09 00:50:05 +01:00
Markus Teich
edb4630564 check for bin == NULL 2015-12-08 22:34:48 +01:00
Markus Teich
24762d0172 minor syntax, style and README fixes 2015-12-08 22:09:26 +01:00
Markus Teich
0798e82d23 support transparent images 2015-12-08 21:46:18 +01:00
sin
b516f468fa Support farbfeld as an intermediate format
Sent now uses farbfeld[0] as an intermediate format.  A series of
filters is specified in config.h that matches file extensions to
filter programs.  The programs will convert between formats such as
png to farbfeld.  Internally in sent we do not need to worry on how
to parse png or any other format.

This also works with jpg and gif and others.  The 2ff wrapper will
use imagemagick conversion tools.  This is temporary as jpg2ff and
gif2ff will also be implemented.

To make this work, you will have to clone[0] and put png2ff and 2ff
in your PATH.

[0] http://git.2f30.org/farbfeld/
2015-12-08 20:01:36 +01:00
Markus Teich
7e558105e6 add 'sent: ' prefix to errors 2015-12-03 23:02:14 +01:00
Alexis
98e1854189 Add 'n' and 'p' keys to navigate slides 2015-12-03 23:00:53 +01:00
Alexis
91aeb01dce Refactor die() to use eprintf() 2015-12-03 23:00:44 +01:00
Alexis
824dae147e Use consistent wording for error messages 2015-12-03 23:00:28 +01:00
Ivan Tham
95af430d97 Use right click as previous and enable scrolling to switch slides 2015-11-19 19:37:08 +01:00
Quentin Rameau
a1dcdad14f Bail out before allocating slides if file is empty
In load() we allocated slides before checking if we actually read
anything from the FILE fp and then continue with an allocated but
“empty” space wich would lead to errors.
2015-11-18 23:26:33 +01:00
Markus Teich
eac14478e9 fix dying on empty slidefile 2015-11-18 23:24:53 +01:00
Quentin Rameau
996a4c5c6e drw.c: Avoid potential memory leak in drw_cur_create()
If drw was NULL, memory was still allocated for cur.
2015-11-18 22:50:07 +01:00
Ivan Tham
243c8cf7b6 Add Escape key to quit sent 2015-11-18 12:20:55 +01:00
Markus Teich
cc57a28eba die if no font could be loaded 2015-11-18 00:41:38 +01:00
Jan Christoph Ebersbach
c3cd2edca6 Register space to advance to the next slide 2015-11-17 11:23:20 +01:00
Markus Teich
448fe33370 shorten bulletpoints in example presentation 2015-11-17 02:26:34 +01:00
Markus Teich
31be676486 fix dejavu font name 2015-11-17 02:07:56 +01:00
Markus Teich
4ae761b8be support even larger screens 2015-11-17 01:39:40 +01:00
Markus Teich
4a828c2d6c prevent flickering when changing slides
When the window background is left at WhitePixel (from initialization) and the
user has set a dark background color in config.h, the window shortly displays
the white default background when clearing after advancing to another slide.
This was very disturbing and is fixed now by setting the default window
background color to the bgcol chosen in config.h.
2015-11-17 01:04:04 +01:00
Markus Teich
aa713a8a34 update README 2015-11-17 00:32:45 +01:00
Markus Teich
b1cb3bbc20 fix another index overflow issue 2015-11-17 00:23:51 +01:00
Markus Teich
84734c73e8 fix several number overflow issues 2015-11-17 00:19:39 +01:00
Markus Teich
eb07f3dc10 update version 2015-11-17 00:18:54 +01:00
Markus Teich
22a0a7f255 add multiline support 2015-11-11 23:46:24 +01:00
Markus Teich
d7eac23083 fix more memory leaks 2015-11-11 19:09:13 +01:00
Markus Teich
b23121b4aa free all fonts correctly 2015-11-11 19:00:54 +01:00
Markus Teich
d302f2efe1 free temporary fontstr arrays 2015-11-11 18:53:54 +01:00
Markus Teich
f6455efd52 simplify png cleanup 2015-11-11 18:50:46 +01:00
Markus Teich
67ec8b1547 make usable screensize config const 2015-11-11 18:41:51 +01:00
Tony Lainson
8b52c85dd1 don't assume we get a ConfigureNotify event
If the window manager maps our window at the requested size, we may not get a
ConfigureNotify event.  This happens e.g. under ratpoison.

The result is that xw.uw and xw.uh are never set, so text is too small and
pngscale() tries to divide by 0.
2015-11-10 16:56:37 +01:00
Szabolcs Nagy
4ca44387e6 initialize .img
without the attached patch ./sent example segfaults here
2015-11-10 16:55:22 +01:00
Markus Teich
3ce84e7170 don't use EXIT_… cpp defines 2015-11-07 23:52:35 +01:00
Markus Teich
0dc8cb9dab fix comment wording in drw.c 2015-11-07 23:48:40 +01:00
Markus Teich
9ab88b5935 make colors configurable 2015-11-04 01:43:13 +01:00
Markus Teich
fc82374b03 update license year 2015-11-04 01:40:50 +01:00
Markus Teich
f84e7a585e fix default fonts in config.def.h 2015-11-01 18:09:22 +01:00