Skip to content

Commit

Permalink
Release version 3.30
Browse files Browse the repository at this point in the history
  • Loading branch information
albfan committed Oct 7, 2018
1 parent 251ff35 commit 1d30638
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 12 deletions.
10 changes: 10 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
= gitg 3.30.0 =
Version 3.30.0 was released on 2018-10-07

== Bugs fixed ==
- Detect dark theme from its background color
- Buildsystem meson added
- Added flatpak deployments
- Updated translations
- Misc fixes

= gitg 3.26.0 =
Version 3.26.0 was released on 2017-08-09

Expand Down
23 changes: 13 additions & 10 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,36 @@ fast and convenient tool to visualize the history of git repositories.
Besides visualization, gitg also provides several utilities to manage your
repository and commit your work.

The latest version of gitg is 3.26.0.
The latest version of gitg is 3.30.0.

Website: https://wiki.gnome.org/Apps/Gitg
Bugs: https://bugzilla.gnome.org/browse.cgi?product=gitg
Download: http://download.gnome.org/sources/gitg/
Mailing list: http://mail.gnome.org/mailman/listinfo/gitg-list

= Installing gitg =
To install the latest version of gitg, make sure to download gitg-3.26.0.tar.xz
To install the latest version of gitg, make sure to download gitg-3.30.0.tar.xz
from the download site. After downloading the following procedure installs
gitg:

$ tar Jxf gitg-3.26.0.tar.xz
$ cd gitg-3.26.0
$ ./configure
$ make
$ sudo make install
$ tar Jxf gitg-3.30.0.tar.xz
$ cd gitg-3.30.0
$ meson --prefix=/usr build
$ ninja -C build
$ sudo ninja -C install

For more information on installing gitg, please see INSTALL.

= Building gitg from git =
The gitg repository is hosted on git.gnome.org. To build from git:

$ git clone git://git.gnome.org/gitg
$ git clone http://gitlab.gnome.org/GNOME/gitg
$ cd gitg
$ ./autogen.sh
$ make
$ meson --prefix=/usr build
$ ninja -C build
$ sudo ninja -C install

Alternatively you can build using Flatpak with the org.gnome.Gitg.json manifest.

= Using gitg =
When gitg is installed, you can run gitg from the GNOME menu, or from a
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.64])

m4_define(gitg_major_version, 3)
m4_define(gitg_minor_version, 26)
m4_define(gitg_minor_version, 30)
m4_define(gitg_micro_version, 0)
m4_define(gitg_version, gitg_major_version.gitg_minor_version.gitg_micro_version)

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project(
'gitg', ['c', 'vala'],
version: '3.26.0',
version: '3.30.0',
license: 'GPL2+',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.46.0'
Expand Down

0 comments on commit 1d30638

Please sign in to comment.