Release 0.0.8

This commit is contained in:
Ignacio Casal Quinteiro 2010-12-30 20:51:06 +01:00
parent 4b2bbd9bd7
commit 48df8f5366
3 changed files with 44 additions and 4 deletions

40
NEWS
View file

@ -1,3 +1,43 @@
= gitg 0.0.8 =
Version 0.0.8 was released on 2010-12-30
== Features ==
* Added preference to ignore external diff tool
* Improved GitgRunner/GitgCommand/GitgShell
* Added a menu to create a new branch
* Per line staging needs Ctrl
* Add committer info
* Added stat to revision details panel
* Added gitg-revision-details-panel
* Added 'changes' panel
* Move the backend part of gitg into a libgitg library.
* Improved staging/unstaging
* Added 'edit' context menu item for stage/unstage list
* Improve hash search performance
* Add --no-color to some git commands
* Make gitg compile with Gtk+ 3.0 if available.
* Allow creating a tag without a message.
== Bug fixes ==
* Fixed parsing diff from stash
* Do not crash when hiding region header with no next line
* Ellipsize long subjects in revision view
* Don't show repository missing error when launching without arguments
* Always override format patch export
* Better handling of command line args and repository paths
* Handle sensitivity correctly
* rewrite gitg_ref_get_localname to return a const result
* Use remote pushes for push branch menu
* Ellipsize parent commit message at end
* Use GtkCellRendererSpinner
* Portability: replace PATH_MAX sized array with dynamic strings
* Use flag G_SPAWN_CHILD_INHERITS_STDIN when input is not provided
* Fix building with GSEAL enabled
* Bug 620284 - Cleaned up preferences dialog
* Make format patch override existing files properly (fixes #620463)
* Improved charset conversion (fixes #623466)
* Use GBinding
= gitg 0.0.6 =
Version 0.0.6 was released on 2010-02-21

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
graphical presentation.
The latest version of gitg is 0.0.6.
The latest version of gitg is 0.0.8.
Website: http://trac.novowork.com/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
gitg:
$ tar -xjf gitg-0.0.6.tar.bz2
$ cd gitg-0.0.6
$ tar -xjf gitg-0.0.8.tar.bz2
$ cd gitg-0.0.8
$ ./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, 6)
m4_define(gitg_micro_version, 8)
m4_define(gitg_version, gitg_major_version.gitg_minor_version.gitg_micro_version)
AC_INIT(gitg, gitg_version, http://www.icecrew.nl)