I can haz screenshots.

This commit is contained in:
Nicholas Marriott 2009-04-02 22:12:29 +00:00
parent 6de6f4c4c9
commit 089f090c0a
7 changed files with 21 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.117 2009-04-01 18:21:23 nicm Exp $
# $Id: Makefile,v 1.118 2009-04-02 22:12:28 nicm Exp $
.SUFFIXES: .c .o .y .h
.PHONY: clean update-index.html upload-index.html
@ -136,10 +136,18 @@ lint:
clean:
rm -f ${CLEANFILES}
upload-index.html:
scp index.html nicm@web.sf.net:/home/groups/t/tm/tmux/htdocs
upload-index.html: update-index.html
scp index.html images/*.png \
nicm,tmux@web.sf.net:/home/groups/t/tm/tmux/htdocs
rm -f images/small-*
update-index.html:
(cd images && \
rm -f small-* && \
for i in *.png; do \
convert "$$i" -resize 200x150 "small-$$i"; \
done \
)
sed "s/%%VERSION%%/${VERSION}/g" index.html.in >index.html
install: all

BIN
images/tmux1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
images/tmux2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
images/tmux3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
images/tmux4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
images/tmux5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -1,4 +1,4 @@
<!-- $Id: index.html.in,v 1.2 2009-03-31 23:15:27 nicm Exp $ -->
<!-- $Id: index.html.in,v 1.3 2009-04-02 22:12:29 nicm Exp $ -->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
@ -11,5 +11,14 @@
<p>Please see the <a href="http://tmux.cvs.sourceforge.net/viewvc/*checkout*/tmux/tmux/NOTES">release notes</a> and <a href="http://tmux.cvs.sourceforge.net/viewvc/*checkout*/tmux/tmux/FAQ">FAQ</a> (note these are for CVS HEAD).</p>
<p>The change log, up to CVS HEAD, is <a href="http://tmux.cvs.sourceforge.net/viewvc/*checkout*/tmux/tmux/CHANGES">here.</a></p>
<p>The project page is <a href="http://sf.net/projects/tmux">here.</a></p>
<b>Screenshots (from CVS HEAD)</b>
<table><tr>
<td><a href="tmux1.png"><img src="small-tmux1.png"></a></td>
<td><a href="tmux2.png"><img src="small-tmux2.png"></a></td>
<td><a href="tmux3.png"><img src="small-tmux3.png"></a></td>
</tr><tr>
<td><a href="tmux4.png"><img src="small-tmux4.png"></a></td>
<td><a href="tmux5.png"><img src="small-tmux5.png"></a></td>
</tr></table>
</body>
</html>