[gnome-software] Release version 3.11.90



commit 4f791be5d6f4410b48650ebdf9aab1f0d2bd0fad
Author: Richard Hughes <richard hughsie com>
Date:   Mon Feb 17 21:41:08 2014 +0000

    Release version 3.11.90

 NEWS               |   31 +++++++++++++++++++++++++++++++
 RELEASE            |    8 ++++----
 configure.ac       |    2 +-
 src/Makefile.am    |    1 +
 src/gs-self-test.c |   16 ++++++++++++++++
 5 files changed, 53 insertions(+), 5 deletions(-)
---
diff --git a/NEWS b/NEWS
index 0bf00e3..f550cfa 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,34 @@
+Version 3.11.90
+~~~~~~~~~~~~~~~
+Released: 2014-02-17
+
+* Translations:
+ - Updated Czech translation (Marek Černocký)
+ - Updated Galician translation (Fran Diéguez)
+ - Updated Greek translation (Dimitris Spingos)
+ - Updated Hungarian translation (Gabor Kelemen)
+ - Updated Spanish translation (Daniel Mustieles)
+
+* New Features:
+ - Add 4 different infobars to show for local package types (Richard Hughes)
+ - Add an initial version of the privacy policy for usage stats (Richard Hughes)
+ - Load a core moduleset from a file (Richard Hughes)
+ - Show some UI to remove external sources (Richard Hughes)
+ - Show the installed application source in the details view (Richard Hughes)
+
+* Bugfix:
+ - Add devassistant in the Development featured section (Richard Hughes)
+ - Add missing mnemonics and accessible names (Matthias Clasen)
+ - Allow different distros to refine the list of hardcoded popular applications (Richard Hughes)
+ - Allow specifying the optional text-shadow for the featured applications (Richard Hughes)
+ - Automatically de-duplicate gs_app_add_related() (Richard Hughes)
+ - Do not show software sources in the updates panel (Richard Hughes)
+ - Don't show such a big gap on the details page if there are no screenshots (Richard Hughes)
+ - Load the GNOME moduleset from a file rather than hardcoding (Richard Hughes)
+ - Promote packages found in the desktop-db to kind normal+desktop (Richard Hughes)
+ - Specify text-shadow to improve legibility (Jakub Steiner)
+ - Set the application description for long single line package descriptions (Richard Hughes)
+
 Version 3.11.5
 ~~~~~~~~~~~~~~
 Released: 2014-02-03
diff --git a/RELEASE b/RELEASE
index 3bd2e2e..fc0f349 100644
--- a/RELEASE
+++ b/RELEASE
@@ -2,8 +2,8 @@ GNOME Software Release Notes
 
 1. Write NEWS entries for gnome-software in the same format as usual.
 
-Version 3.11.6
-~~~~~~~~~~~~~~
+Version 3.11.90
+~~~~~~~~~~~~~~~
 Released: 2014-xx-xx
 
 * Translations:
@@ -14,8 +14,8 @@ git shortlog GNOME_SOFTWARE_3_11_5.. | grep -i -v trivial | grep -v Merge | uniq
 
 3. Commit changes in gnome-software git:
 
-git commit -a -m "Release version 3.11.6"
-git tag -s GNOME_SOFTWARE_3_11_6 -m "==== Version 3.11.6 ===="
+git commit -a -m "Release version 3.11.90"
+git tag -s GNOME_SOFTWARE_3_11_90 -m "==== Version 3.11.90 ===="
 <enter password>
 git push --tags
 git push
diff --git a/configure.ac b/configure.ac
index bb51dec..6c38548 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
 # Copyright (C) 2010-2012 Richard Hughes <richard hughsie com>
 AC_PREREQ(2.63)
 
-AC_INIT([gnome-software],[3.11.6],[http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-software])
+AC_INIT([gnome-software],[3.11.90],[http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-software])
 AC_CONFIG_SRCDIR(src)
 AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz tar-ustar serial-tests])
 AC_CONFIG_HEADERS([config.h])
diff --git a/src/Makefile.am b/src/Makefile.am
index b45e4fd..81f9d36 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -9,6 +9,7 @@ AM_CPPFLAGS =                                           \
        $(NOTIFY_CFLAGS)                                \
        -DG_LOG_DOMAIN=\"Gs\"                           \
        -DI_KNOW_THE_PACKAGEKIT_GLIB2_API_IS_SUBJECT_TO_CHANGE  \
+       -DGS_MODULESETDIR=\"$(datadir)/gnome-software/modulesets.d\" \
        -DLIBDIR=\"$(libdir)\"                          \
        -DBINDIR=\"$(bindir)\"                          \
        -DDATADIR=\"$(datadir)\"                        \
diff --git a/src/gs-self-test.c b/src/gs-self-test.c
index 2f6ec79..7bf6823 100644
--- a/src/gs-self-test.c
+++ b/src/gs-self-test.c
@@ -355,6 +355,10 @@ gs_plugin_loader_func (void)
        GsApp *app;
        GsPluginLoader *loader;
 
+       /* not avaiable in make distcheck */
+       if (!g_file_test (GS_MODULESETDIR, G_FILE_TEST_EXISTS))
+               return;
+
        loader = gs_plugin_loader_new ();
        g_assert (GS_IS_PLUGIN_LOADER (loader));
        g_signal_connect (loader, "status-changed",
@@ -494,6 +498,10 @@ gs_plugin_loader_refine_func (void)
        const gchar *url;
        gboolean ret;
 
+       /* not avaiable in make distcheck */
+       if (!g_file_test (GS_MODULESETDIR, G_FILE_TEST_EXISTS))
+               return;
+
        /* load the plugins */
        loader = gs_plugin_loader_new ();
        gs_plugin_loader_set_location (loader, "./plugins/.libs");
@@ -542,6 +550,10 @@ gs_plugin_loader_empty_func (void)
        GsPluginLoader *loader;
        guint empty_subcats_cnt = 0;
 
+       /* not avaiable in make distcheck */
+       if (!g_file_test (GS_MODULESETDIR, G_FILE_TEST_EXISTS))
+               return;
+
        /* load the plugins */
        loader = gs_plugin_loader_new ();
        gs_plugin_loader_set_location (loader, "./plugins/.libs");
@@ -623,6 +635,10 @@ gs_plugin_loader_webapps_func (void)
        gboolean ret;
        GError *error = NULL;
 
+       /* not avaiable in make distcheck */
+       if (!g_file_test (GS_MODULESETDIR, G_FILE_TEST_EXISTS))
+               return;
+
        /* load the plugins */
        loader = gs_plugin_loader_new ();
        gs_plugin_loader_set_location (loader, "./plugins/.libs");


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]