Page History

Turn Off History

Latest Version
The latest version of CVSTrac is 2.0.0, released on 2006-05-23.

Getting The Source Code
The complete source code for CVSTrac is available via anonymous CVS. Use the following commands:

      cvs -d :pserver:anonymous@cvstrac.org:/cvstrac login
      cvs -d :pserver:anonymous@cvstrac.org:/cvstrac checkout cvstrac

When prompted for a password, enter "anonymous".

A tarball of the latest release is also available from:

A 2.0.1 branch was created for people having problems on various platform or with SQLite 3.3.8. It's available from CVS via:

      cvs -d :pserver:anonymous@cvstrac.org:/cvstrac \
             checkout -rrelease2_0_1 cvstrac

Getting A Precompiled-Binary
A precompiled binary for SuSE 9.2 can be found at:

Changes from 1.2.1 to 2.0.0
The most important change in moving from version 1.2.1 to version 2.0.0 is that CVSTrac now uses SQLite version 3 instead of SQLite version 2. If you are upgrading, you will need to convert your database file to the SQLite version 3 format. This can be done by first making a text backup of your original database file like this:

    sqlite myproject.db .dump >myproject.sql

Then save your original myproject.db as a backup.

    mv myproject.db myproject.db.bu-v2

Next reconstruct your project as an SQLite 3 database:

    sqlite3 myproject.db <myproject.sql

Prior Releases
Version 1.2.1 (released on 2006-01-09) is available in source and binary form:

The "woody" download is the same binary that is used to control this website.