summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-04-02 22:12:29 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-04-02 22:12:29 +0000
commit089f090c0a25c1b1097d08feb813e5a508e54883 (patch)
tree9a5fc23bc42f72997c6a9cb069cf1c06c1489166
parent6de6f4c4c93e87be9c4a388da07a5c89d17cb7f4 (diff)
I can haz screenshots.
-rw-r--r--Makefile14
-rw-r--r--images/tmux1.pngbin0 -> 3813 bytes
-rw-r--r--images/tmux2.pngbin0 -> 19080 bytes
-rw-r--r--images/tmux3.pngbin0 -> 18603 bytes
-rw-r--r--images/tmux4.pngbin0 -> 36902 bytes
-rw-r--r--images/tmux5.pngbin0 -> 30468 bytes
-rw-r--r--index.html.in11
7 files changed, 21 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index f2c52d2e..22dcefd2 100644
--- a/Makefile
+++ b/Makefile
@@ -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
diff --git a/images/tmux1.png b/images/tmux1.png
new file mode 100644
index 00000000..f5237cb2
--- /dev/null
+++ b/images/tmux1.png
Binary files differ
diff --git a/images/tmux2.png b/images/tmux2.png
new file mode 100644
index 00000000..16fc520a
--- /dev/null
+++ b/images/tmux2.png
Binary files differ
diff --git a/images/tmux3.png b/images/tmux3.png
new file mode 100644
index 00000000..3c357b99
--- /dev/null
+++ b/images/tmux3.png
Binary files differ
diff --git a/images/tmux4.png b/images/tmux4.png
new file mode 100644
index 00000000..fdd504bb
--- /dev/null
+++ b/images/tmux4.png
Binary files differ
diff --git a/images/tmux5.png b/images/tmux5.png
new file mode 100644
index 00000000..d263622d
--- /dev/null
+++ b/images/tmux5.png
Binary files differ
diff --git a/index.html.in b/index.html.in
index 5e0387c9..f90bab9a 100644
--- a/index.html.in
+++ b/index.html.in
@@ -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>