Hello community, here is the log from the commit of package cutecom for openSUSE:Factory checked in at 2016-01-16 11:56:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cutecom (Old) and /work/SRC/openSUSE:Factory/.cutecom.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cutecom" Changes: -------- --- /work/SRC/openSUSE:Factory/cutecom/cutecom.changes 2016-01-13 22:45:52.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.cutecom.new/cutecom.changes 2016-01-16 11:57:01.000000000 +0100 @@ -1,0 +2,8 @@ +Thu Jan 14 14:21:11 UTC 2016 - [email protected] + +- update to release 0.30.2 + * custom baud rates restored properly on startup + * custom baud rates > 200000 now selectable + * prevent horizontal scroll bar showing up (feedback) + +------------------------------------------------------------------- Old: ---- cutecom-0.30.1.tgz New: ---- cutecom-0.30.2.tgz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cutecom.spec ++++++ --- /var/tmp/diff_new_pack.u9HJih/_old 2016-01-16 11:57:02.000000000 +0100 +++ /var/tmp/diff_new_pack.u9HJih/_new 2016-01-16 11:57:02.000000000 +0100 @@ -17,7 +17,7 @@ Name: cutecom -Version: 0.30.1 +Version: 0.30.2 Release: 0 Url: http://github.com/neundorf/CuteCom BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ cutecom-0.30.1.tgz -> cutecom-0.30.2.tgz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cutecom-0.30.1/CMakeLists.txt new/cutecom-0.30.2/CMakeLists.txt --- old/cutecom-0.30.1/CMakeLists.txt 2015-12-21 20:47:11.000000000 +0100 +++ new/cutecom-0.30.2/CMakeLists.txt 2016-01-11 17:30:00.000000000 +0100 @@ -4,7 +4,7 @@ set (CuteCom_MAJOR_VERSION 0) set (CuteCom_MINOR_VERSION 30) -set (CuteCom_PATCH_VERSION 1) +set (CuteCom_PATCH_VERSION 2) set (CuteCom_VERSION ${CuteCom_MAJOR_VERSION}.${CuteCom_MINOR_VERSION}.${CuteCom_PATCH_VERSION}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cutecom-0.30.1/Changelog new/cutecom-0.30.2/Changelog --- old/cutecom-0.30.1/Changelog 2015-12-21 20:47:11.000000000 +0100 +++ new/cutecom-0.30.2/Changelog 2016-01-11 17:30:00.000000000 +0100 @@ -1,3 +1,8 @@ +0.30.2, January 11th, 2016 +-opening a connnection with more than 200000 Baud not possible - FIX +-custom baud rate not restored - FIX +-extra long lines are wrapped - less disturbing + 0.31.1, December 21th, 2015 -fixed a bug preventing to compile on gcc 5.2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cutecom-0.30.1/controlpanel.cpp new/cutecom-0.30.2/controlpanel.cpp --- old/cutecom-0.30.1/controlpanel.cpp 2015-12-21 20:47:11.000000000 +0100 +++ new/cutecom-0.30.2/controlpanel.cpp 2016-01-11 17:30:00.000000000 +0100 @@ -37,7 +37,7 @@ { this->setupUi(this); - m_baudValidator = new QIntValidator(0, 220000, this); + m_baudValidator = new QIntValidator(0, 999000, this); m_combo_Baud->setInsertPolicy(QComboBox::NoInsert); const Settings::Session session = settings->getCurrentSession(); @@ -168,8 +168,8 @@ } else { index = m_combo_Baud->findData(-1); if (index != -1) { + m_combo_Baud->setItemText(index, QString::number(session.baudRate)); m_combo_Baud->setCurrentIndex(index); - m_combo_Baud->setCurrentText(QString::number(session.baudRate)); } } @@ -296,7 +296,10 @@ m_combo_Baud->addItem(QStringLiteral("Custom"), -1); connect(m_combo_Baud, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), - [=]() { emit settingChanged(Settings::BaudRate, m_combo_Baud->currentData()); }); + [=]() { int custom = m_combo_Baud->currentData().toInt(); + emit settingChanged(Settings::BaudRate, + (custom == -1) ? m_combo_Baud->currentText() : m_combo_Baud->currentData()); + }); } void ControlPanel::fillFlowCombo() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cutecom-0.30.1/datadisplay.cpp new/cutecom-0.30.2/datadisplay.cpp --- old/cutecom-0.30.1/datadisplay.cpp 2015-12-21 20:47:11.000000000 +0100 +++ new/cutecom-0.30.2/datadisplay.cpp 2016-01-11 17:30:00.000000000 +0100 @@ -37,7 +37,6 @@ , m_previous_ended_with_nl(true) { setupTextFormats(); - setLineWrapMode(QTextEdit::NoWrap); } void DataDisplay::clear() @@ -273,7 +272,7 @@ line.prefix = m_timestamp; continue; } else { - line.data += QString("<0x%1>").arg(b & 0xff, 8, 16, QChar('0')); + line.data += QString("<0x%1>").arg(b & 0xff, 2, 16, QChar('0')); } } } @@ -302,12 +301,14 @@ void DataDisplay::setDisplayHex(bool displayHex) { if (displayHex) { + setLineWrapMode(QTextEdit::NoWrap); if (!m_previous_ended_with_nl) { displayData(QByteArray(1, '\n')); } m_hexBytes = 0; m_displayHex = displayHex; } else { + setLineWrapMode(QTextEdit::WidgetWidth); m_displayHex = displayHex; if (!m_previous_ended_with_nl) { displayData(QByteArray(1, '\n')); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cutecom-0.30.1/distribution/Debian/cutecom.dsc new/cutecom-0.30.2/distribution/Debian/cutecom.dsc --- old/cutecom-0.30.1/distribution/Debian/cutecom.dsc 2015-12-21 20:47:11.000000000 +0100 +++ new/cutecom-0.30.2/distribution/Debian/cutecom.dsc 2016-01-11 17:30:00.000000000 +0100 @@ -1,9 +1,9 @@ Format: 1.0 Source: cutecom -Version: 0.30-1 +Version: 0.30-2 Binary: CuteCom Maintainer: Meinhard Ritscher <[email protected]> Architecture: any Build-Depends: debhelper (>= 4.1.16), cmake (>= 2.8.11), qt5-default, libqt5serialport5-dev ,cutecom Files: - a123e277faa328ccef665145e1ea4ada 125197 cutecom-0.30.1.tgz + a123e277faa328ccef665145e1ea4ada 125197 cutecom-0.30.2.tgz diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cutecom-0.30.1/distribution/Debian/debian.changelog new/cutecom-0.30.2/distribution/Debian/debian.changelog --- old/cutecom-0.30.1/distribution/Debian/debian.changelog 2015-12-21 20:47:11.000000000 +0100 +++ new/cutecom-0.30.2/distribution/Debian/debian.changelog 2016-01-11 17:30:00.000000000 +0100 @@ -1,3 +1,10 @@ +cutecom (0.30.2-0) unstable; urgency=low + * opening a connnection with more than 200000 Baud not possible - FIX + * custom baud rate not restored - FIX + * extra long lines are wrapped - less disturbing + + -- Meinhard Ritscher <[email protected]> Mon, 11 Jan 2016 17:10:00 +0100 + cutecom (0.30.1-0) unstable; urgency=low * fixed a bug preventing to compile on gcc 5.2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cutecom-0.30.1/distribution/openSUSE/cutecom.changes new/cutecom-0.30.2/distribution/openSUSE/cutecom.changes --- old/cutecom-0.30.1/distribution/openSUSE/cutecom.changes 1970-01-01 01:00:00.000000000 +0100 +++ new/cutecom-0.30.2/distribution/openSUSE/cutecom.changes 2016-01-11 17:30:00.000000000 +0100 @@ -0,0 +1,39 @@ +Mon Jan 11 17:10:33 UTC 2016 - [email protected] + +- opening a connnection with more than 200000 Baud not possible - FIX +- custom baud rate not restored - FIX +- extra long lines are wrapped - less disturbing + +------------------------------------------------------------------- +Fri Dec 18 20:20:20 UTC 2015 - [email protected] + +- reimplementation based on Qt5 +- including various feature enhancements +- removed cutecom-0.22.0-license.diff - codebase changed +- removed cutecom-0.22.0-nolinebreak.diff - codebase changed + +------------------------------------------------------------------- +Tue Nov 17 10:35:42 UTC 2015 - [email protected] + +- fix build for Leap 42.1 +- correct FSF address + +------------------------------------------------------------------- +Thu Feb 23 17:08:17 UTC 2012 - [email protected] + +- display correct license in about dialog + +------------------------------------------------------------------- +Thu Jan 12 11:30:33 UTC 2012 - [email protected] + +- change license to be in spdx.org format + +------------------------------------------------------------------- +Tue Apr 26 18:39:52 CEST 2011 - [email protected] + +- fix line breaking issue (patch copied from Debian) + +------------------------------------------------------------------- +Tue Jan 27 12:00:00 CEST 2009 - [email protected] + +- initial setup diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cutecom-0.30.1/distribution/openSUSE/cutecom.spec new/cutecom-0.30.2/distribution/openSUSE/cutecom.spec --- old/cutecom-0.30.1/distribution/openSUSE/cutecom.spec 2015-12-21 20:47:11.000000000 +0100 +++ new/cutecom-0.30.2/distribution/openSUSE/cutecom.spec 2016-01-11 17:30:00.000000000 +0100 @@ -18,8 +18,8 @@ Name: cutecom -Version: 0.30.1 -Release: 1.0.0 +Version: 0.30.2 +Release: 0 Url: http://github.com/neundorf/CuteCom BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: cmake @@ -64,19 +64,4 @@ %doc Changelog TODO LICENSE CREDITS README.md %changelog -* Mon Dec 21 2015 [email protected] -- fixed a bug preventing to compile on gcc 5.2 -* Fri Dec 18 2015 [email protected] -- reimplementation based on Qt5 -- including various feature enhancements -* Tue Nov 17 2015 [email protected] -- fix build for Leap 42.1 -- correct FSF address -* Thu Feb 23 2012 [email protected] -- display correct license in about dialog -* Thu Jan 12 2012 [email protected] -- change license to be in spdx.org format -* Tue Apr 26 2011 [email protected] -- fix line breaking issue (patch copied from Debian) -* Tue Jan 27 2009 [email protected] -- initial setup +
