0.2 release notes

Change-Id: Iced581916a4b557e1310e32152c6e333b935e515
This commit is contained in:
Brad Fitzpatrick 2013-06-22 07:49:56 -07:00
parent 3ebcb011e4
commit 044e2e77cd
4 changed files with 77 additions and 1 deletions

View File

@ -30,6 +30,7 @@ HTML, though:</p>
<li><a href="/docs/sharing">Sharing</a></li>
<li><a href="/pkg/">Packages</a>: internal API documentation</li>
<li><a href="/docs/prior-art">Prior Art</a>: other projects doing similar stuff</li>
<li><a href="/download">Release History</a>: previous releases and notable features of each</li>
<li><a href="/docs/contributing">Contributing</a>: how to help</li>
</ul>

View File

@ -0,0 +1,55 @@
<h1>Release 0.2 ("Portland")</h1>
<p><b>2013-06-22</b></p>
<p>Hot on the heels of our first release (<a href="0.1">Grenoble</a>),
we're happy to be getting better at this release thing and announce
0.2, codename "Portland". Portland is my hometown and currently
hosting <a href="http://indiewebcamp.com/">IndieWebCamp</a>.</p>
<center><div style='font-size: 18pt; font-weight: bold'><a href="https://github.com/bradfitz/camlistore/archive/0.2.zip">camlistore-0.2.zip</a></div>
<div style='margin-top: 0.5em'>
Or browse at Github: <a href="https://github.com/bradfitz/camlistore/tree/0.2">github.com/bradfitz/camlistore/tree/0.2</a>
</div>
</center>
<h1>What is Camlistore?</h1>
<p>See the <a href="/docs/">docs</a> and <a href="/docs/overview">overview</a>.</p>
<h1>What works?</h1>
<p>Everything that <a href="0.1">worked in 0.1</a>.</p>
<h1>New in 0.2</h1>
<ul>
<li><b>Encryption support.</b> It hasn't been audited yet, metadata compaction isn't quite done, and the simple-config-to-low-level-config translator isn't enabled yet, so consider it all beta. It's there to use if you know what you're doing, but the underlying format might yet change.</li>
<li><b>Improved build system.</b> Our build by default now embeds all the <a href="https://developers.google.com/closure/library/">Closure</a> resources into the server binary, making deployment much easier: just one file (the server binary) to put on your server.</li>
<li><b>Easier initial setup.</b> More helpful initial configuration of <a href="/cmd/camput"><tt>camput</tt></a>, etc.</li>
<li><b>Config files moved.</b> We now respect the <a href="http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html">XDG Base Directory Specification</a> on Unix systems. If you had your config files in <tt>~/.camlistore/</tt> before, move them to <tt>~/.config/camlistore/</tt>.</li>
<li><b>Fixes</b>: <ul>
<li>The SQLite backend now uses <a href="http://www.sqlite.org/draft/wal.html">WAL</a> when available, for improved throughput with high concurrency.</li>
<li>The sharing handler was partially broken in 0.1, now fixed.</li>
</ul></li>
</ul>
<h1>Get involved!</h1>
<p>We welcome feedback, feature requests, bug reports, and code
contributions!</p>
<p>Feel free to email us on our <a
href="https://groups.google.com/forum/?fromgroups#!forum/camlistore">mailing
list</a>, and/or <a
href="//code.google.com/p/camlistore/issues/entry">file a bug</a> (or
see <a href="//code.google.com/p/camlistore/issues/list">existing
bugs</a>). </p>
<p>While we welcome user bug reports, we also welcome code
contributions. See <a href="/docs/contributing">the Contributing
page</a> for details. While most the codebase (the server and
command-line tools) are written in <a href="http://golang.org">Go</a>,
there's also a lot of JavaScript which needs love, as well as Java
(for Android) and Objective C (for iOS). Or anything useful you'd like
to contribute.</p>

20
website/content/download Normal file
View File

@ -0,0 +1,20 @@
<h1>Download Camlistore</h1>
<p>The latest release is <a href="/docs/release/0.2">0.2 ("Portland")</a>.</p>
<p>Or, the canonical git repo is:</p>
<pre>$ git clone https://camlistore.org/r/p/camlistore</pre>
<p>It's also on Github at <a href="http://github.com/bradfitz/camlistore">github.com/bradfitz/camlistore</a>. See <a href="/docs/contributing">the contribution docs</a>.</p>
<h2>Release Notes</h2>
<p>Previous release notes:</p>
<ul>
<li><a href="/docs/release/0.1">0.1 ("Grenoble")</a>, 2013-06-11</li>
<li><a href="/docs/release/0.2">0.2 ("Portland")</a>, 2013-06-22</li>
</ul>

View File

@ -20,7 +20,7 @@
<div class='bar'><div class='hatecss'>
<a href='/'>About</a>
<a href='/docs/release/0.1'>Download</a>
<a href='/download'>Download</a>
<a href='/docs/'>Docs</a>
<a href='/code/'>Code</a>
<a href='/contributors'>Who</a>