Hello community, here is the log from the commit of package libkgapi for openSUSE:Factory checked in at 2012-10-24 07:13:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libkgapi (Old) and /work/SRC/openSUSE:Factory/.libkgapi.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libkgapi", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/libkgapi/libkgapi.changes 2012-10-19 13:32:23.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.libkgapi.new/libkgapi.changes 2012-10-24 07:13:03.000000000 +0200 @@ -1,0 +2,8 @@ +Tue Oct 23 10:05:27 UTC 2012 - [email protected] + +- Update to 0.4.3 + * Fix kde#307719 - Don't duplicate instances detached from a recurrent event + * Fix kde#308462 - Don't emit authentication success when it actually fails + * fixed a typo in calendar parser that caused all calendars to have read-only flag + +------------------------------------------------------------------- Old: ---- libkgapi-0.4.2.tar.bz2 New: ---- libkgapi-0.4.3.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libkgapi.spec ++++++ --- /var/tmp/diff_new_pack.7Mhui3/_old 2012-10-24 07:13:05.000000000 +0200 +++ /var/tmp/diff_new_pack.7Mhui3/_new 2012-10-24 07:13:05.000000000 +0200 @@ -17,7 +17,7 @@ Name: libkgapi -Version: 0.4.2 +Version: 0.4.3 Release: 0 Summary: Extension for accessing your Google data License: GPL-2.0+ ++++++ libkgapi-0.4.2.tar.bz2 -> libkgapi-0.4.3.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkgapi-0.4.2/CMakeLists.txt new/libkgapi-0.4.3/CMakeLists.txt --- old/libkgapi-0.4.2/CMakeLists.txt 2012-08-20 12:04:28.000000000 +0200 +++ new/libkgapi-0.4.3/CMakeLists.txt 2012-10-21 18:11:23.000000000 +0200 @@ -1,8 +1,8 @@ project(libkgapi) set(KGAPI_VERSION_MAJOR 0) set(KGAPI_VERSION_MINOR 4) -set(KGAPI_VERSION_RELEASE 1) -set(KGAPI_VERSION 0.4.2) +set(KGAPI_VERSION_RELEASE 3) +set(KGAPI_VERSION 0.4.3) cmake_minimum_required(VERSION 2.8) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkgapi-0.4.2/libkgapi/auth_p.cpp new/libkgapi-0.4.3/libkgapi/auth_p.cpp --- old/libkgapi-0.4.2/libkgapi/auth_p.cpp 2012-08-20 12:04:28.000000000 +0200 +++ new/libkgapi-0.4.3/libkgapi/auth_p.cpp 2012-10-21 18:11:23.000000000 +0200 @@ -244,6 +244,7 @@ q->storeAccount(account); } catch (Exception::BaseException &e) { Q_EMIT q->error(e.code(), e.what()); + return; } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libkgapi-0.4.2/libkgapi/services/calendar.cpp new/libkgapi-0.4.3/libkgapi/services/calendar.cpp --- old/libkgapi-0.4.2/libkgapi/services/calendar.cpp 2012-08-20 12:04:28.000000000 +0200 +++ new/libkgapi-0.4.3/libkgapi/services/calendar.cpp 2012-10-21 18:11:23.000000000 +0200 @@ -301,7 +301,7 @@ object->setLocation(calendar["location"].toString()); object->setTimezone(calendar["timeZone"].toString()); - if ((calendar["accessRole"].toString() == "writer") || (calendar["acessRole"].toString() == "owner")) { + if ((calendar["accessRole"].toString() == "writer") || (calendar["accessRole"].toString() == "owner")) { object->setEditable(true); } else { object->setEditable(false); @@ -381,7 +381,7 @@ } /* Canceled instance of recurring event. Set ID of the instance to match ID of the event */ - if (event.contains("recurringEventId") && object->deleted()) { + if (event.contains("recurringEventId")) { object->setUid(QUrl::fromPercentEncoding(event["recurringEventId"].toByteArray())); } -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
