Hello community, here is the log from the commit of package libyui-qt-pkg for openSUSE:12.3 checked in at 2013-02-04 21:15:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:12.3/libyui-qt-pkg (Old) and /work/SRC/openSUSE:12.3/.libyui-qt-pkg.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libyui-qt-pkg", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:12.3/libyui-qt-pkg/libyui-qt-pkg.changes 2013-01-31 01:26:13.000000000 +0100 +++ /work/SRC/openSUSE:12.3/.libyui-qt-pkg.new/libyui-qt-pkg.changes 2013-02-04 21:15:27.000000000 +0100 @@ -1,0 +2,12 @@ +Thu Jan 17 14:34:22 CET 2013 - [email protected] + +- Fixed endcoding of entries in package history (bnc #775608) +- Version 2.42.5 + +------------------------------------------------------------------- +Thu Jan 17 10:49:30 CET 2013 - [email protected] + +- Fixed encoding of tooltips (bnc# 764025) +- Version 2.42.4 + +------------------------------------------------------------------- Old: ---- libyui-qt-pkg-2.42.3.tar.bz2 New: ---- libyui-qt-pkg-2.42.5.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libyui-qt-pkg-doc.spec ++++++ --- /var/tmp/diff_new_pack.fRj3gz/_old 2013-02-04 21:15:27.000000000 +0100 +++ /var/tmp/diff_new_pack.fRj3gz/_new 2013-02-04 21:15:27.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package libyui-qt-pkg (Version 2.42.3) +# spec file for package libyui-qt-pkg (Version 2.42.5) # # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -16,7 +16,7 @@ # Name: libyui-qt-pkg-doc -Version: 2.42.3 +Version: 2.42.5 Release: 0 License: LGPL-2.1 or LGPL-3.0 Source: libyui-qt-pkg-%{version}.tar.bz2 ++++++ libyui-qt-pkg.spec ++++++ --- /var/tmp/diff_new_pack.fRj3gz/_old 2013-02-04 21:15:27.000000000 +0100 +++ /var/tmp/diff_new_pack.fRj3gz/_new 2013-02-04 21:15:27.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package libyui-qt-pkg (Version 2.42.3) +# spec file for package libyui-qt-pkg (Version 2.42.5) # # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -18,7 +18,7 @@ # norootforbuild Name: libyui-qt-pkg -Version: 2.42.3 +Version: 2.42.5 Release: 0 License: LGPL-2.1 or LGPL-3.0 Source: libyui-qt-pkg-%{version}.tar.bz2 ++++++ libyui-qt-pkg-2.42.3.tar.bz2 -> libyui-qt-pkg-2.42.5.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-qt-pkg-2.42.3/ChangeLog new/libyui-qt-pkg-2.42.5/ChangeLog --- old/libyui-qt-pkg-2.42.3/ChangeLog 2012-12-12 10:09:49.000000000 +0100 +++ new/libyui-qt-pkg-2.42.5/ChangeLog 2013-01-17 14:52:52.000000000 +0100 @@ -1,4 +1,16 @@ ------------------------------------------------------------------- +Thu Jan 17 14:34:22 CET 2013 - [email protected] + +- Fixed endcoding of entries in package history (bnc #775608) +- Version 2.42.5 + +------------------------------------------------------------------- +Thu Jan 17 10:49:30 CET 2013 - [email protected] + +- Fixed encoding of tooltips (bnc# 764025) +- Version 2.42.4 + +------------------------------------------------------------------- Wed Dec 12 10:03:10 CET 2012 - [email protected] - Adapt to libzypps new history log parser API. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-qt-pkg-2.42.3/VERSION.cmake new/libyui-qt-pkg-2.42.5/VERSION.cmake --- old/libyui-qt-pkg-2.42.3/VERSION.cmake 2012-12-12 10:09:49.000000000 +0100 +++ new/libyui-qt-pkg-2.42.5/VERSION.cmake 2013-01-17 14:52:52.000000000 +0100 @@ -1,6 +1,6 @@ SET( VERSION_MAJOR "2" ) SET( VERSION_MINOR "42" ) -SET( VERSION_PATCH "3" ) +SET( VERSION_PATCH "5" ) SET( VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}" ) ##### This is need for the libyui core, ONLY. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-qt-pkg-2.42.3/src/YQPkgHistoryDialog.cc new/libyui-qt-pkg-2.42.5/src/YQPkgHistoryDialog.cc --- old/libyui-qt-pkg-2.42.3/src/YQPkgHistoryDialog.cc 2012-12-12 10:09:49.000000000 +0100 +++ new/libyui-qt-pkg-2.42.5/src/YQPkgHistoryDialog.cc 2013-01-17 14:52:52.000000000 +0100 @@ -179,19 +179,19 @@ struct HistoryItemCollector { QTreeWidget* actions, * dates; - std::string _last; + QString _last; QTreeWidgetItem* date_start; bool operator()( const zypp::HistoryLogData::Ptr & item_ptr ) { - std::string d = item_ptr->date().form("%e %B %Y"); + QString d = fromUTF8( item_ptr->date().form("%e %B %Y")); if (d != _last) { _last = d; - date_start = new QTreeWidgetItem (actions, QStringList(QString(d.c_str()))); + date_start = new QTreeWidgetItem (actions, QStringList(d)); date_start->setExpanded (true); actions-> insertTopLevelItem ( 0, date_start ); - dates-> insertTopLevelItem ( 0, new QTreeWidgetItem (dates, QStringList(QString(d.c_str())))); + dates-> insertTopLevelItem ( 0, new QTreeWidgetItem (dates, QStringList(d))); } QStringList columns; @@ -199,41 +199,41 @@ { zypp::HistoryLogDataInstall* item = static_cast <zypp::HistoryLogDataInstall *> (item_ptr.get()); - columns << QString(item->name().c_str()); - columns << QString(item->edition().version().c_str()); + columns << fromUTF8(item->name()); + columns << fromUTF8(item->edition().version()); } else if ( item_ptr->action() == zypp::HistoryActionID::REMOVE_e ) { zypp::HistoryLogDataRemove* item = static_cast <zypp::HistoryLogDataRemove *> (item_ptr.get()); - columns << QString(item->name().c_str()); - columns << QString(item->edition().version().c_str()); + columns << fromUTF8(item->name()); + columns << fromUTF8(item->edition().version()); } else if ( item_ptr->action() == zypp::HistoryActionID::REPO_ADD_e ) { zypp::HistoryLogDataRepoAdd* item = static_cast <zypp::HistoryLogDataRepoAdd *> (item_ptr.get()); - columns << QString(item->alias().c_str()); - columns << QString(item->url().asString().c_str()); + columns << fromUTF8(item->alias()); + columns << fromUTF8(item->url().asString()); } else if ( item_ptr->action() == zypp::HistoryActionID::REPO_REMOVE_e ) { zypp::HistoryLogDataRepoRemove* item = static_cast <zypp::HistoryLogDataRepoRemove *> (item_ptr.get()); - columns << QString(item->alias().c_str()); + columns << fromUTF8(item->alias()); } else if ( item_ptr->action() == zypp::HistoryActionID::REPO_CHANGE_ALIAS_e ) { zypp::HistoryLogDataRepoAliasChange* item = static_cast <zypp::HistoryLogDataRepoAliasChange *> (item_ptr.get()); - columns << QString( (item->oldAlias() + " -> " + item->newAlias()).c_str()); + columns << fromUTF8(item->oldAlias()) + " -> " + fromUTF8(item->newAlias()); } else if ( item_ptr->action() == zypp::HistoryActionID::REPO_CHANGE_URL_e ) { zypp::HistoryLogDataRepoUrlChange* item = static_cast <zypp::HistoryLogDataRepoUrlChange *> (item_ptr.get()); - columns << QString(item->alias().c_str()); - columns << QString(item->newUrl().asString().c_str()); + columns << fromUTF8(item->alias()); + columns << fromUTF8(item->newUrl().asString()); } QTreeWidgetItem *action = new QTreeWidgetItem (date_start, columns); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libyui-qt-pkg-2.42.3/src/YQPkgRepoList.cc new/libyui-qt-pkg-2.42.5/src/YQPkgRepoList.cc --- old/libyui-qt-pkg-2.42.3/src/YQPkgRepoList.cc 2012-12-12 10:09:49.000000000 +0100 +++ new/libyui-qt-pkg-2.42.5/src/YQPkgRepoList.cc 2013-01-17 14:52:52.000000000 +0100 @@ -240,7 +240,7 @@ } infoToolTip += "</ul>"; } - setToolTip( nameCol(), infoToolTip.c_str() ); + setToolTip( nameCol(), fromUTF8(infoToolTip) ); QString iconPath; QString iconName = "yast-sw_source"; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
