[gitg] Release version 3.30
- From: Alberto Fanjul <albfan src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gitg] Release version 3.30
- Date: Sun, 7 Oct 2018 10:27:10 +0000 (UTC)
commit 1d306388c4c8562d5225d02a737d4636fff24ccf
Author: Alberto Fanjul <albertofanjul gmail com>
Date: Sun Oct 7 11:06:57 2018 +0200
Release version 3.30
NEWS | 10 ++++++++++
README | 23 +++++++++++++----------
configure.ac | 2 +-
meson.build | 2 +-
4 files changed, 25 insertions(+), 12 deletions(-)
---
diff --git a/NEWS b/NEWS
index f8000cc5..07412aa7 100644
--- a/NEWS
+++ b/NEWS
@@ -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
diff --git a/README b/README
index f014037b..1f2e43a4 100644
--- a/README
+++ b/README
@@ -4,7 +4,7 @@ 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
@@ -12,25 +12,28 @@ 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
diff --git a/configure.ac b/configure.ac
index 3a1a04c4..6a4930c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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)
diff --git a/meson.build b/meson.build
index 7e20ba38..0790c5ef 100644
--- a/meson.build
+++ b/meson.build
@@ -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'
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]