Released version 0.0.3

This commit is contained in:
Jesse van den Kieboom 2009-04-23 23:19:39 +02:00
parent 760fd4285c
commit 7341481479
3 changed files with 20 additions and 5 deletions

15
NEWS
View file

@ -1,3 +1,18 @@
= gitg 0.0.3 =
Version 0.0.3 was released on 2009-04-23
== Features ==
* Show state of stash, unstaged and staged changes as virtual commits at the
top of the history
* Preference to not collapse inactive lanes at all
* Drag and drop to stage/unstage files
== Bug fixes ==
* Crasher bug on staging files from the context menu
* Crasher bug on setting visibility of files in the revision details view
* Resolving and showing tag objects correctly
* Keep correct branch on reload
= gitg 0.0.2 =
Version 0.0.2 was released on 2009-04-05.

8
README
View file

@ -3,19 +3,19 @@ gitg is a GitX clone for GNOME/gtk+. It aims at being a small, fast and
convenient tool to visualize git history and actions that benefit from a
graphical presentation.
The latest version of gitg is 0.0.2.
The latest version of gitg is 0.0.3.
Website: http://trac.novowork.com/gitg
Bugs: http://bugzilla.gnome.org/browse.cgi?product=gitg
Download: http://trac.novowork.com/gitg/Download
= Installing gitg =
To install the latest version of gitg, make sure to download gitg-0.0.2.tar.bz2
To install the latest version of gitg, make sure to download gitg-0.0.3.tar.bz2
from the download site. After downloading the following procedure installs
gitg:
$ tar -xjf gitg-0.0.2.tar.bz2
$ cd gitg-0.0.2
$ tar -xjf gitg-0.0.3.tar.bz2
$ cd gitg-0.0.3
$ ./configure
$ make
$ sudo make install

View file

@ -4,7 +4,7 @@ AC_PREREQ(2.59)
m4_define(gitg_major_version, 0)
m4_define(gitg_minor_version, 0)
m4_define(gitg_micro_version, 2)
m4_define(gitg_micro_version, 3)
m4_define(gitg_version, gitg_major_version.gitg_minor_version.gitg_micro_version)
AC_INIT(gitg, gitg_version, http://www.icecrew.nl)