2006-06-22 Matthew Allum <mallum@openedhand.com>

* NEWS:
        Add an entry for 0.1 release
        * web/index.html:
        * web/style.css:
        Add basic website.
This commit is contained in:
Matthew Allum 2006-06-22 14:57:25 +00:00
parent 9b0bd1320e
commit 9cf7f81d6a
7 changed files with 168 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2006-06-22 Matthew Allum <mallum@openedhand.com>
* NEWS:
Add an entry for 0.1 release
* web/index.html:
* web/style.css:
Add basic website.
2006-06-22 Iain Holmes <iain@openedhand.com>
* clutter/clutter-main.c: Guess what...more docs

14
NEWS
View File

@ -0,0 +1,14 @@
Clutter 0.1 ( 22/06/2006)
===========
* First 'official' release, expect bugs aplenty.
* Contains:
o Hopefully enough functionality to build things.
o Basic gstreamer 0.10 video playback support.
o Fairly stable API, though in no way totally stable.
Expect CHANGES in future versions.
o Some simple examples ( also see OPT ).
o An experimental GTK-Clutter widget.
o Fairly complete Python bindings.
o Non complete but hopefully useful API documentation.
* If you want to help out see the TODO file.

BIN
web/clutter-header.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

101
web/index.html Normal file
View File

@ -0,0 +1,101 @@
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="VERSION" content="$Id$" />
<meta http-equiv="keywords" content=""/><meta http-equiv="description" content="" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css"></style>
<link href="style.css" rel="stylesheet"/>
<title>Clutter Toolkit</title>
</head>
<body>
<div id="container">
<div id="logo">
<img src="clutter-header.png" border="0" alt="Clutter"/>
</div>
<div id="content">
<h3>#About</h3>
<p>
Clutter is a GObject based library for creating fast, visually
rich graphical user interfaces. It is intended for creating single
window heavily stylised applications such as media box ui's, presentations
or kiosk style programs in preference to regular 'desktop' style
applications.
</p>
<p>
Clutter's underlying graphics rendering is <a href="http://opengl.org">OpenGL</a> (version 1.2+)
based. The clutter API is intended to be easy to use, attempting
to hide many of the GL complexities. It targets mainly 2D based
graphics and is definetly not intended to be a general interface
for all OpenGL functionality.
</p>
<p>
As well as OpenGL Clutter depends on and uses <a href="http://developer.gnome.org/doc/API/glib/">GLib</a>, <a href="http://developer.gnome.org/doc/API/2.0/gobject/index.html">GObject</a>,
<a href="http://developer.gnome.org/doc/API/2.0/gdk-pixbuf/index.html">GDKPixbuf</a> and <a href="http://gstreamer.freedesktop.org">GStreamer</a>. Clutter is free software released under the GNU LGPL.
</p>
<h3>#News</h3>
<h4>0.1 Release 22/06/2006</h4>
<p>
<ul>
<li>First 'official' release, expect bugs aplenty.
<li>Contains:
<ul>
<li>Hopefully enough functionality to build things.</li>
<li>Basic gstreamer 0.10 video playback support.
<li>Fairly stable API, though in no way totally stable.
Expect CHANGES in future versions.</li>
<li>Some simple examples ( also see OPT ).</li>
<li>An experimental GTK-Clutter widget.</li>
<li>Fairly complete Python bindings.</li>
<li>Non complete but hopefully useful API documentation.</li>
</ul>
<li> If you want to help out see the <a href="http://svn.o-hand.com/repos/clutter/trunk/TODO">TODO</a> file.</li>
</ul>
<h3>#Screenshots</h3>
<p><a href="screenshots/video-playback.png"><img src="screenshots/video-playback-thumb.png"></a> <br/><small>obligatory simple video player shot.</small></p>
<h3>#Download</h3>
<p>
See <a href="http://projects.o-hand.com/clutter/sources">http://projects.o-hand.com/clutter/sources</a> for sources.
</p>
<p>
Prebuilt Ubuntu dapper debs available via FIXME.
</p>
<h3>#Documentation</h3>
<p>
<a href="docs/">API reference</a>.
</p>
<h3>#Participate</h3>
<p>
<strong>Subversion Repo</strong></br>
<code>
svn co http://svn.o-hand.com/repos/clutter/trunk clutter
</code>
<br/>
Browseable <a href="http://svn.o-hand.com/view/clutter/">here</a>.
</p>
<p>
<strong>Bugs</strong></br>
Use the <a href="http://bugzilla.o-hand.com/enter_bug.cgi?product=clutter">OpenedHand Bugzilla</a>
</p>
<p>
<strong>Mailing List</strong></br>
Send a blank message to <code> clutter+subscribe &lt;at&gt; o-hand.com </code>. Then follow instructions in resulting reply.
</p>
</div>
</div>
<div id="footer">
<center>&copy; Openedhand 2006</center>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 738 KiB

45
web/style.css Normal file
View File

@ -0,0 +1,45 @@
body {
margin:0px 0px 0px 0px;
background:#eee;
}
A { color: #111; text-decoration: underline; }
A:link { color: #111; text-decoration: none; }
A:visited { color: #111; text-decoration: none; }
A:active { color: #111; }
A:hover { color: #111; text-decoration: underline; }
h1, h2, h3, h4 {
margin: 3px 0px;
padding: 0px;
color: #594051;
}
#logo {
border-bottom: 4px solid #000;
}
#container {
width: 546px;
max-width: 546px;
margin: 20px auto;
border: 4px solid #000;
font-family:verdana, arial, sans-serif;
color:#555;
font-size:12px;
font-weight:normal;
line-height:200%;
background:#fff;
}
#content {
padding: 20px;
}
#footer {
font-family:verdana, arial, sans-serif;
color:#777;
font-size:9px;
}