summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2010-08-04 11:41:12 +0100
committerRichard Hughes <richard@hughsie.com>2010-08-04 11:41:12 +0100
commit54b63ab87db3963cb7e7b8e268f971e4da701d85 (patch)
tree6f5bd03abbb39813d656da423c8b0a6c75fb2d12
parent9c8f8838d72fc9cea91b81c3a1e72fc0da4744a4 (diff)
Release version 0.6.7PACKAGEKIT_0_6_7
-rw-r--r--NEWS47
-rw-r--r--configure.ac2
-rw-r--r--docs/html/pk-download.html1
-rw-r--r--src/pk-engine.c3
4 files changed, 51 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 15f1381aa..0af8a3691 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,50 @@
+Version 0.6.7
+~~~~~~~~~~~~~
+Released: 2010-08-04
+
+Translations:
+ - Updates to Chinese translation (chenh)
+ - Updates to Dutch translation (warrink)
+ - Updates to Japanese translation (makoto)
+ - Updates to Polish translation (raven)
+ - Updates to Spanish translation (logan)
+ - Updates to Ukrainian translation (yurchor)
+
+Libraries:
+ - glib: Add an 'interactive' property to PkTask so that we can use it to do '-y' in pkcon properly (Richard Hughes)
+
+Backends:
+ - alpm: Do not fail on unrecognized config directives (Valeriy Lyasotskiy)
+ - alpm: fixed compilation with ALPM 5 (Valeriy Lyasotskiy)
+ - apt: Adapt latest Python backend API changes (Sebastian Heinlein)
+ - apt: Add a hook script that pokes packagekitd when cmd line tools are used (Daniel Nicoletti)
+ - apt: Added support for distro upgrades
+ - apt, aptcc: Fix apt errors when the the packagekit package is removed. (Daniel Nicoletti)
+ - apt, aptcc: start packagekitd before asking it to emit cache-update (Daniel Nicoletti)
+ - entropy: add forward compatibility with upcoming UrlFetcher changes (Fabio Erculiani)
+ - entropy: improve Entropy backward compatibility (Fabio Erculiani)
+ - opkg: fix status type in get_updates (Sebastian Krzyszkowiak)
+ - pacman: add support for versioned provides field (Jonathan Conder)
+ - pisi: Adapt backend for the recent API changes (Fatih Aşıcı)
+ - portage: port to new API, make backend working again (Fabio Erculiani)
+ - yum: add gnome-packagekit and kpackagekit to the list of infrastructure packages (Richard Hughes)
+ - yum: do not issue RepoListChanged when we disable or enable the media repo automatically (Richard Hughes)
+ - yum: ensure we call _check_init when we do GetCategories (Richard Hughes)
+ - yum: Ensure we disable the MediaRepo when the PackageKit backend has finished (Richard Hughes)
+ - yum: wrap _getEVR in a try,catch block to deal with invalid version numbers. Fixes rh#612360 (Richard Hughes)
+
+New Features:
+ - Add a long document explaining the media-repo functionality (Richard Hughes)
+ - If either of ProxyHTTP are set in PackageKit.conf then ignore the user proxy setting. Fixes rh#604317 (Richard Hughes)
+
+Bugfixes:
+ - Add 0install to the user list (Carlo Marcelo Arenas Belon)
+ - cron: Do not exit with 1 if the cron script is disabled in the config (Vincent Untz)
+ - Don't ship README AUTHORS NEWS COPYING in all subpackages. Fixes rh#612332 (Richard Hughes)
+ - Make the PkBackend always start with the WAIT state, but do not proxy this onto the bus (Richard Hughes)
+ - Recognise bluetooth connections as mobile networks. Fixes rh#609827 (Richard Hughes)
+ - Unbreak CNF after the daemon moved to libexec. Fixes rh#613514 (Richard Hughes)
+
Version 0.6.6
~~~~~~~~~~~~~
Released: 2010-07-01
diff --git a/configure.ac b/configure.ac
index b49fd1490..c9b3ddcdd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -37,7 +37,7 @@ AC_SUBST(PK_VERSION)
# AGE If libpackagekit can be linked into executables which can be
# built with previous versions of this library. Don't use.
LT_CURRENT=14
-LT_REVISION=2
+LT_REVISION=3
LT_AGE=0
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
diff --git a/docs/html/pk-download.html b/docs/html/pk-download.html
index 4e5adbab3..b4844e0df 100644
--- a/docs/html/pk-download.html
+++ b/docs/html/pk-download.html
@@ -68,6 +68,7 @@ Releases are normally on the first working Monday of each month.
</p>
<table>
<tr><td><b>Version</b></td><td>&nbsp;&nbsp;</td><td><b>Date</b></td></tr>
+<tr><td>0.6.7</td><td></td><td>2010-08-04</td></tr>
<tr><td>0.6.6</td><td></td><td>2010-07-01</td></tr>
<tr><td>0.6.5</td><td></td><td>2010-06-02</td></tr>
<tr><td>0.6.4</td><td></td><td>2010-05-06</td></tr>
diff --git a/src/pk-engine.c b/src/pk-engine.c
index a22a7a924..1beac89f3 100644
--- a/src/pk-engine.c
+++ b/src/pk-engine.c
@@ -601,7 +601,8 @@ pk_engine_state_has_changed (PkEngine *engine, const gchar *reason, GError **err
if (is_priority && engine->priv->timeout_normal_id != 0) {
/* clear normal, as we are about to schedule a priority */
g_source_remove (engine->priv->timeout_normal_id);
- engine->priv->timeout_normal_id = 0; }
+ engine->priv->timeout_normal_id = 0;
+ }
/* wait a little delay in case we get multiple requests */
if (is_priority) {