diff --git a/img/phone.gif b/img/phone.gif index cc03959931b91857c44db832017be7f475443fd9..a4df5ae879a7ac3bdda69a3f530962088b6dcb85 100644 Binary files a/img/phone.gif and b/img/phone.gif differ diff --git a/raw/00_password.png b/raw/00_password.png new file mode 100644 index 0000000000000000000000000000000000000000..d722c903b36ac4cb863cb7d128f5a404acbc9616 Binary files /dev/null and b/raw/00_password.png differ diff --git a/raw/01_nav_drawer.png b/raw/01_nav_drawer.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c0bf0a858b74deba7ca101390cfec176ffb5db Binary files /dev/null and b/raw/01_nav_drawer.png differ diff --git a/raw/02_contact_list.png b/raw/02_contact_list.png new file mode 100644 index 0000000000000000000000000000000000000000..6f751340ab84a92a65fb1e6f00d7e8f78fba187a Binary files /dev/null and b/raw/02_contact_list.png differ diff --git a/raw/03_private_messages.png b/raw/03_private_messages.png new file mode 100644 index 0000000000000000000000000000000000000000..edfd1cc490bf5caef8bfea669159b5ea3e4c8dde Binary files /dev/null and b/raw/03_private_messages.png differ diff --git a/raw/04_private_group.png b/raw/04_private_group.png new file mode 100644 index 0000000000000000000000000000000000000000..139f8e1a65276b8c9f2c3a10e340abdd2c21e095 Binary files /dev/null and b/raw/04_private_group.png differ diff --git a/raw/05_blog.png b/raw/05_blog.png new file mode 100644 index 0000000000000000000000000000000000000000..e085a579d6ff2189c6ad9f56230d1478a2bf3399 Binary files /dev/null and b/raw/05_blog.png differ diff --git a/raw/06_forum.png b/raw/06_forum.png new file mode 100644 index 0000000000000000000000000000000000000000..ae05c5365f940a79b92741e5846db00155d2d11b Binary files /dev/null and b/raw/06_forum.png differ diff --git a/raw/animate.sh b/raw/animate.sh new file mode 100755 index 0000000000000000000000000000000000000000..58ea17dcd744f2a61f11065bbb0ca95227cb3a04 --- /dev/null +++ b/raw/animate.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +X_OFFSET=96 +Y_OFFSET=229 +FRAME=nexus-6p-frame.png +WIDTH=220 + +# Clean up old output files +rm -f *_framed.png morph_*.png anim.gif anim-shrunk.gif + +# Overlay screenshots onto frame +for file in [0-9][0-9]_*.png +do + base=`basename $file .png` + composite -geometry +${X_OFFSET}+${Y_OFFSET} $file $FRAME ${base}_framed.png +done + +# Create fades +convert *_framed.png 00_*_framed.png -resize ${WIDTH}x -morph 2 -adjoin morph_%02d.png +rm *_framed.png + +# Create animation +convert morph_*.png +delete -set delay '%[fx:(t%3==0)?200:10]' -loop 0 anim.gif +rm morph_*.png + +# Optimise animation +gifsicle -O3 --careful --colors 256 < anim.gif > anim-shrunk.gif + diff --git a/raw/nexus-6p-frame.png b/raw/nexus-6p-frame.png new file mode 100644 index 0000000000000000000000000000000000000000..5af8da72a63329733229344a13d8a0a4b91c20c1 Binary files /dev/null and b/raw/nexus-6p-frame.png differ