User:Gwern/releasenotes

From HaskellWiki
< User:Gwern
Revision as of 16:21, 23 January 2009 by Gwern (talk | contribs) (+first draft of release notes)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
ANN filestore 0.1

We are pleased to announce the first release of a new library, filestore.

What is it? filestore is a small library which is intended to provide
a uniform, abstract, generic interface to storing versioned files.
That is, it works with particular backends to store strings to disk
and performing various queries, such as 'what files are in this
repository?' or 'what were the contents of this file at revision
XXXXXXX?' or 'give me a diff of this file between revision XXXXXXX and
revision YYYYYYY.'

What backends are supported? Darcs and Git are fully supported; there
is preliminary support for SQLite.

What is this good for? Currently it is used by 2 wikis, Gitit and
Orchid. We hope it will see use in other applications as well that
need to version data and would like the various advantages of DVCSs
(such as easy collaboration, advanced merging, etc.).

filestore was written by John MacFarlane, Gwern Branwen, and Sebastiaan Visser

ANN gitit 0.4.1.3

We are pleased to announce the latest release of Gitit, the
multitalented distributed wiki written in Haskell.

What's new in this release?
* 'Gitit' is now something of a misnomer, as Gitit now makes use of
the filestore library. The upshot is that Gitit can now work in Darcs
repositories; if before you thought Gitit was cool but didn't like
git, you now have no excuse!
* Gitit has been optimized:
** Pages are now gzipped whenever possible
** Page elements like the CSS, images, and JavaScript are now cached
by the browser
** Those previously mentioned elements have been optimized for space,
and rearranged in the generated pages for faster rendering.
* Gitit now sports a 'Go' box. You can now either search through
Search, or go to a specific page title via Go.
* Search is smarter, and can also return page titles.
* Revisions are better formatted: the author field now include the
user's email as well.
* Gitit now saves non-conflicting merges automatically.
* Diffs are of much higher quality, thanks to filestore.
* UTF8-related fixes.

As ever, you can can check a running example out at
http://johnmacfarlane.net:5001/

Or try it locally:

  cabal update
  cabal install pandoc -fhighlighting
  cabal install gitit
  gitit  # note: this will create two subdirectories in the working directory
  # then browse to http://localhost:5001.

The git repository for Gitit at http://github.com/jgm/gitit/tree/master

ANN orchid 0.0.7, orchid-demo 0.0.5

We are pleased to announce the latest release of the Orchid wiki. This
release adds filestore integration, and thus Git support. What's new?
* Implemented first class record label library.
* Used the library through out this entire project.
* Users now also have a email.
* Attached wiki to FileStore backend which means we now have a Git
backend for free!
* Lots of cleanup during FileStore integration.

You can get a copy of the sources:
  svn co https://svn.cs.uu.nl:12443/repos/orchid

Or as always, visit Hackage or use cabal-install