Hello community, here is the log from the commit of package yast2-qt for openSUSE:Factory checked in at Thu Apr 14 09:09:00 CEST 2011.
-------- --- yast2-qt/yast2-qt.changes 2011-02-21 17:34:06.000000000 +0100 +++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes 2011-04-12 16:36:51.000000000 +0200 @@ -1,0 +2,18 @@ +Tue Apr 12 16:33:56 CEST 2011 - [email protected] + +- Fixed line breaks in LogView (bnc #684759) +- V 2.20.7 + +------------------------------------------------------------------- +Wed Mar 16 10:48:50 CET 2011 - [email protected] + +- Fixed dependencies (bnc #667938) +- V 2.20.6 + +------------------------------------------------------------------- +Tue Mar 8 16:19:49 CET 2011 - [email protected] + +- Show block devices in file selection dialog (bnc #661685) +- V 2.20.5 + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- yast2-qt-2.20.4.tar.bz2 New: ---- yast2-qt-2.20.7.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-qt.spec ++++++ --- /var/tmp/diff_new_pack.iNpMFl/_old 2011-04-14 09:08:34.000000000 +0200 +++ /var/tmp/diff_new_pack.iNpMFl/_new 2011-04-14 09:08:34.000000000 +0200 @@ -18,11 +18,11 @@ Name: yast2-qt -Version: 2.20.4 +Version: 2.20.7 Release: 1 BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-qt-2.20.4.tar.bz2 +Source0: yast2-qt-2.20.7.tar.bz2 Group: System/YaST License: GPLv2+ BuildRequires: docbook-xsl-stylesheets @@ -44,6 +44,7 @@ BuildRequires: yast2-libyui-devel >= 2.20.2 Requires: yast2-libyui >= 2.20.2 Requires: yast2_theme >= 2.16.1 +Requires: yast2-branding Provides: yast2_ui Provides: y2base:/usr/lib/YaST2/servers/qt Provides: y2base:/usr/lib/YaST2/plugin/libpy2qt.so.2 ++++++ yast2-qt-2.20.4.tar.bz2 -> yast2-qt-2.20.7.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-qt-2.20.4/VERSION.cmake new/yast2-qt-2.20.7/VERSION.cmake --- old/yast2-qt-2.20.4/VERSION.cmake 2011-02-21 17:40:08.000000000 +0100 +++ new/yast2-qt-2.20.7/VERSION.cmake 2011-04-12 16:36:29.000000000 +0200 @@ -1,3 +1,3 @@ SET(VERSION_MAJOR "2") SET(VERSION_MINOR "20") -SET(VERSION_PATCH "4") +SET(VERSION_PATCH "7") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-qt-2.20.4/package/yast2-qt.changes new/yast2-qt-2.20.7/package/yast2-qt.changes --- old/yast2-qt-2.20.4/package/yast2-qt.changes 2011-02-21 17:40:08.000000000 +0100 +++ new/yast2-qt-2.20.7/package/yast2-qt.changes 2011-04-12 16:36:30.000000000 +0200 @@ -1,4 +1,22 @@ ------------------------------------------------------------------- +Tue Apr 12 16:33:56 CEST 2011 - [email protected] + +- Fixed line breaks in LogView (bnc #684759) +- V 2.20.7 + +------------------------------------------------------------------- +Wed Mar 16 10:48:50 CET 2011 - [email protected] + +- Fixed dependencies (bnc #667938) +- V 2.20.6 + +------------------------------------------------------------------- +Tue Mar 8 16:19:49 CET 2011 - [email protected] + +- Show block devices in file selection dialog (bnc #661685) +- V 2.20.5 + +------------------------------------------------------------------- Mon Feb 21 17:37:47 CET 2011 - [email protected] - Fixed unselecting items for tree widget (bnc #673801) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-qt-2.20.4/src/YQApplication.cc new/yast2-qt-2.20.7/src/YQApplication.cc --- old/yast2-qt-2.20.4/src/YQApplication.cc 2011-02-21 17:40:08.000000000 +0100 +++ new/yast2-qt-2.20.7/src/YQApplication.cc 2011-04-12 16:36:29.000000000 +0200 @@ -516,12 +516,19 @@ { normalCursor(); - QString fileName = - QFileDialog::getOpenFileName( 0, // parent - fromUTF8( headline ) , // caption - fromUTF8( startWith ), // dir - fromUTF8( filter ), // filter - 0, QFileDialog::DontUseNativeDialog); + QFileDialog* dialog = new QFileDialog( 0, // parent + fromUTF8( headline ), // caption + fromUTF8( startWith ), // dir + fromUTF8( filter )); // filter + dialog->setFileMode( QFileDialog::ExistingFile ); + dialog->setFilter( QDir::System | dialog->filter() ); + dialog->setOptions( QFileDialog::DontUseNativeDialog ); + + QString fileName; + if( dialog->exec() == QDialog::Accepted ) + fileName = dialog->selectedFiles().value( 0 ); + delete dialog; + busyCursor(); return toUTF8( fileName ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-qt-2.20.4/src/YQLogView.cc new/yast2-qt-2.20.7/src/YQLogView.cc --- old/yast2-qt-2.20.4/src/YQLogView.cc 2011-02-21 17:40:08.000000000 +0100 +++ new/yast2-qt-2.20.7/src/YQLogView.cc 2011-04-12 16:36:29.000000000 +0200 @@ -95,6 +95,7 @@ QScrollBar *sb = _qt_text->verticalScrollBar(); QString newString = fromUTF8( text ); + newString[ newString.length() ] = ' '; bool atEnd = sb->value() == sb->maximum(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-qt-2.20.4/yast2-qt.spec.in new/yast2-qt-2.20.7/yast2-qt.spec.in --- old/yast2-qt-2.20.4/yast2-qt.spec.in 2011-02-21 17:40:08.000000000 +0100 +++ new/yast2-qt-2.20.7/yast2-qt.spec.in 2011-04-12 16:36:29.000000000 +0200 @@ -23,6 +23,7 @@ BuildRequires: yast2-libyui-devel >= 2.20.2 Requires: yast2-libyui >= 2.20.2 Requires: yast2_theme >= 2.16.1 +Requires: yast2-branding Provides: yast2_ui Provides: y2base:/usr/lib/YaST2/servers/qt Provides: y2base:/usr/lib/YaST2/plugin/libpy2qt.so.2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
