Release 0.1.0

This commit is contained in:
Ignacio Casal Quinteiro 2011-01-13 22:01:41 +01:00
parent 16c5e18ec3
commit cbac5cab45
4 changed files with 18 additions and 5 deletions

12
NEWS
View file

@ -1,3 +1,15 @@
= gitg 0.1.0 =
Version 0.1.0 was released on 2011-01-13
== Features ==
* Port gitg to gsettings
* Added gitg-config test tool
== Bug fixes ==
* Fix icon sizes
* Fixed getting/setting global git configuration
* Explicit linking in tools and tests
= gitg 0.0.8 = = gitg 0.0.8 =
Version 0.0.8 was released on 2010-12-30 Version 0.0.8 was released on 2010-12-30

6
README
View file

@ -3,7 +3,7 @@ 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 convenient tool to visualize git history and actions that benefit from a
graphical presentation. graphical presentation.
The latest version of gitg is 0.0.8. The latest version of gitg is 0.1.0.
Website: http://trac.novowork.com/gitg Website: http://trac.novowork.com/gitg
Bugs: http://bugzilla.gnome.org/browse.cgi?product=gitg Bugs: http://bugzilla.gnome.org/browse.cgi?product=gitg
@ -15,8 +15,8 @@ To install the latest version of gitg, make sure to download gitg-0.0.6.tar.bz2
from the download site. After downloading the following procedure installs from the download site. After downloading the following procedure installs
gitg: gitg:
$ tar -xjf gitg-0.0.8.tar.bz2 $ tar -xjf gitg-0.1.0.tar.bz2
$ cd gitg-0.0.8 $ cd gitg-0.1.0
$ ./configure $ ./configure
$ make $ make
$ sudo make install $ sudo make install

View file

@ -3,8 +3,8 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59) AC_PREREQ(2.59)
m4_define(gitg_major_version, 0) m4_define(gitg_major_version, 0)
m4_define(gitg_minor_version, 0) m4_define(gitg_minor_version, 1)
m4_define(gitg_micro_version, 8) m4_define(gitg_micro_version, 0)
m4_define(gitg_version, gitg_major_version.gitg_minor_version.gitg_micro_version) m4_define(gitg_version, gitg_major_version.gitg_minor_version.gitg_micro_version)
AC_INIT(gitg, gitg_version, http://www.icecrew.nl) AC_INIT(gitg, gitg_version, http://www.icecrew.nl)

View file

@ -1,3 +1,4 @@
data/gitg.desktop.in data/gitg.desktop.in
data/gitgdiff.lang data/gitgdiff.lang
data/gitgstyle.xml data/gitgstyle.xml
data/org.gnome.gitg.gschema.xml.in