Hello community, here is the log from the commit of package ghostwriter for openSUSE:Factory checked in at 2018-08-27 13:00:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghostwriter (Old) and /work/SRC/openSUSE:Factory/.ghostwriter.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghostwriter" Mon Aug 27 13:00:15 2018 rev:12 rq:631696 version:1.7.3 Changes: -------- --- /work/SRC/openSUSE:Factory/ghostwriter/ghostwriter.changes 2018-08-03 12:35:28.451406959 +0200 +++ /work/SRC/openSUSE:Factory/.ghostwriter.new/ghostwriter.changes 2018-08-27 13:00:18.176878616 +0200 @@ -1,0 +2,6 @@ +Fri Aug 24 14:20:13 UTC 2018 - [email protected] + +- Update to version 1.7.3: + * Fixed segfault that occurred when changing the theme or interface style after opening the Preview Options dialog. + +------------------------------------------------------------------- Old: ---- ghostwriter-1.7.2.tar.gz New: ---- ghostwriter-1.7.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghostwriter.spec ++++++ --- /var/tmp/diff_new_pack.QoSuEI/_old 2018-08-27 13:00:18.824879322 +0200 +++ /var/tmp/diff_new_pack.QoSuEI/_new 2018-08-27 13:00:18.844879344 +0200 @@ -17,7 +17,7 @@ Name: ghostwriter -Version: 1.7.2 +Version: 1.7.3 Release: 0 Summary: A distraction-free Markdown editor License: GPL-3.0-or-later ++++++ ghostwriter-1.7.2.tar.gz -> ghostwriter-1.7.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/CHANGELOG.md new/ghostwriter-1.7.3/CHANGELOG.md --- old/ghostwriter-1.7.2/CHANGELOG.md 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/CHANGELOG.md 2018-08-11 22:23:44.000000000 +0200 @@ -1,3 +1,11 @@ +1.7.3 +===== + +Fixes +----- + +* Issue #369: Fixed segfault that occurred when changing the theme or interface style after opening the Preview Options dialog. + 1.7.2 ===== @@ -279,4 +287,4 @@ 1.0.0 ===== -Initial release. Happy birthday, ghostwriter! \ No newline at end of file +Initial release. Happy birthday, ghostwriter! diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/ghostwriter.pro new/ghostwriter-1.7.3/ghostwriter.pro --- old/ghostwriter-1.7.2/ghostwriter.pro 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/ghostwriter.pro 2018-08-11 22:23:44.000000000 +0200 @@ -35,7 +35,7 @@ # Set program version isEmpty(VERSION) { - VERSION = v1.7.2 + VERSION = v1.7.3 } DEFINES += APPVERSION='\\"$${VERSION}\\"' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/resources/linux/ghostwriter.1 new/ghostwriter-1.7.3/resources/linux/ghostwriter.1 --- old/ghostwriter-1.7.2/resources/linux/ghostwriter.1 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/resources/linux/ghostwriter.1 2018-08-11 22:23:44.000000000 +0200 @@ -1,5 +1,5 @@ .\" Manpage for ghostwriter. -.TH man 1 "28 July 2018" "1.7.2" "ghostwriter man page" +.TH man 1 "11 August 2018" "1.7.3" "ghostwriter man page" .SH NAME ghostwriter \- distraction\-free text editor for Markdown .SH SYNOPSIS diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/resources/linux/ghostwriter.appdata.xml new/ghostwriter-1.7.3/resources/linux/ghostwriter.appdata.xml --- old/ghostwriter-1.7.2/resources/linux/ghostwriter.appdata.xml 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/resources/linux/ghostwriter.appdata.xml 2018-08-11 22:23:44.000000000 +0200 @@ -27,6 +27,6 @@ <binary>ghostwriter</binary> </provides> <releases> - <release version="1.7.2" timestamp="1532801993" /> + <release version="1.7.3" timestamp="1534018870" /> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/src/PreviewOptionsDialog.cpp new/ghostwriter-1.7.3/src/PreviewOptionsDialog.cpp --- old/ghostwriter-1.7.2/src/PreviewOptionsDialog.cpp 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/src/PreviewOptionsDialog.cpp 2018-08-11 22:23:44.000000000 +0200 @@ -44,7 +44,7 @@ QFormLayout* optionsLayout = new QFormLayout(); mainContents->setLayout(optionsLayout); - previewerComboBox = new QComboBox(); + previewerComboBox = new QComboBox(this); QList<Exporter*> exporters = exporterFactory->getHtmlExporters(); Exporter* currentExporter = AppSettings::getInstance()->getCurrentHtmlExporter(); @@ -71,6 +71,7 @@ styleSheetComboBox = new QComboBox(this); buildStyleSheetComboBox(); optionsLayout->addRow(tr("Style Sheet"), styleSheetComboBox); + connect(styleSheetComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(onStyleSheetChanged(int))); QDialogButtonBox* buttonBox = new QDialogButtonBox(Qt::Horizontal, this); buttonBox->addButton(QDialogButtonBox::Close); @@ -108,7 +109,7 @@ void PreviewOptionsDialog::buildStyleSheetComboBox() { - styleSheetComboBox->disconnect(); + styleSheetComboBox->blockSignals(true); styleSheetComboBox->clear(); styleSheetComboBox->addItem(tr("Github (Default)")); styleSheetComboBox->setItemData(0, QVariant(defaultStyleSheets.at(0))); @@ -151,5 +152,5 @@ AppSettings::getInstance()->setCurrentCssFile(defaultStyleSheets.first()); } - connect(styleSheetComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(onStyleSheetChanged(int))); + styleSheetComboBox->blockSignals(false); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/translations/ghostwriter_cs.ts new/ghostwriter-1.7.3/translations/ghostwriter_cs.ts --- old/ghostwriter-1.7.2/translations/ghostwriter_cs.ts 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/translations/ghostwriter_cs.ts 2018-08-11 22:23:44.000000000 +0200 @@ -1314,12 +1314,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="113"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="114"/> <source>Github (Default)</source> <translation type="unfinished">Github (výchozí)</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="115"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="116"/> <source>Github Dark</source> <translation type="unfinished"></translation> </message> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/translations/ghostwriter_de.ts new/ghostwriter-1.7.3/translations/ghostwriter_de.ts --- old/ghostwriter-1.7.2/translations/ghostwriter_de.ts 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/translations/ghostwriter_de.ts 2018-08-11 22:23:44.000000000 +0200 @@ -1316,12 +1316,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="113"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="114"/> <source>Github (Default)</source> <translation type="unfinished">Github (Standard)</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="115"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="116"/> <source>Github Dark</source> <translation type="unfinished"></translation> </message> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/translations/ghostwriter_en.ts new/ghostwriter-1.7.3/translations/ghostwriter_en.ts --- old/ghostwriter-1.7.2/translations/ghostwriter_en.ts 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/translations/ghostwriter_en.ts 2018-08-11 22:23:44.000000000 +0200 @@ -1249,12 +1249,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="113"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="114"/> <source>Github (Default)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="115"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="116"/> <source>Github Dark</source> <translation type="unfinished"></translation> </message> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/translations/ghostwriter_es.ts new/ghostwriter-1.7.3/translations/ghostwriter_es.ts --- old/ghostwriter-1.7.2/translations/ghostwriter_es.ts 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/translations/ghostwriter_es.ts 2018-08-11 22:23:44.000000000 +0200 @@ -1285,12 +1285,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="113"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="114"/> <source>Github (Default)</source> <translation type="unfinished">Github (Predeterminado)</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="115"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="116"/> <source>Github Dark</source> <translation type="unfinished"></translation> </message> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/translations/ghostwriter_fr.ts new/ghostwriter-1.7.3/translations/ghostwriter_fr.ts --- old/ghostwriter-1.7.2/translations/ghostwriter_fr.ts 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/translations/ghostwriter_fr.ts 2018-08-11 22:23:44.000000000 +0200 @@ -1281,12 +1281,12 @@ <translation type="unfinished">Feuille de style</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="113"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="114"/> <source>Github (Default)</source> <translation type="unfinished">Github (par défaut)</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="115"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="116"/> <source>Github Dark</source> <translation type="unfinished"></translation> </message> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/translations/ghostwriter_it.ts new/ghostwriter-1.7.3/translations/ghostwriter_it.ts --- old/ghostwriter-1.7.2/translations/ghostwriter_it.ts 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/translations/ghostwriter_it.ts 2018-08-11 22:23:44.000000000 +0200 @@ -1375,12 +1375,12 @@ <translation>Foglio di stile</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="113"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="114"/> <source>Github (Default)</source> <translation>GitHub (predefinito)</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="115"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="116"/> <source>Github Dark</source> <translation type="unfinished"></translation> </message> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/translations/ghostwriter_ja.ts new/ghostwriter-1.7.3/translations/ghostwriter_ja.ts --- old/ghostwriter-1.7.2/translations/ghostwriter_ja.ts 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/translations/ghostwriter_ja.ts 2018-08-11 22:23:44.000000000 +0200 @@ -1306,12 +1306,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="113"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="114"/> <source>Github (Default)</source> <translation type="unfinished">Github (既定)</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="115"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="116"/> <source>Github Dark</source> <translation type="unfinished"></translation> </message> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/translations/ghostwriter_pt_BR.ts new/ghostwriter-1.7.3/translations/ghostwriter_pt_BR.ts --- old/ghostwriter-1.7.2/translations/ghostwriter_pt_BR.ts 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/translations/ghostwriter_pt_BR.ts 2018-08-11 22:23:44.000000000 +0200 @@ -1311,12 +1311,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="113"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="114"/> <source>Github (Default)</source> <translation type="unfinished">Github (Padrão)</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="115"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="116"/> <source>Github Dark</source> <translation type="unfinished"></translation> </message> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/translations/ghostwriter_ru.ts new/ghostwriter-1.7.3/translations/ghostwriter_ru.ts --- old/ghostwriter-1.7.2/translations/ghostwriter_ru.ts 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/translations/ghostwriter_ru.ts 2018-08-11 22:23:44.000000000 +0200 @@ -1330,12 +1330,12 @@ <translation>Таблицы стилей</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="113"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="114"/> <source>Github (Default)</source> <translation>Github (по-умолчанию)</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="115"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="116"/> <source>Github Dark</source> <translation type="unfinished"></translation> </message> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ghostwriter-1.7.2/translations/ghostwriter_zh.ts new/ghostwriter-1.7.3/translations/ghostwriter_zh.ts --- old/ghostwriter-1.7.2/translations/ghostwriter_zh.ts 2018-07-28 20:48:26.000000000 +0200 +++ new/ghostwriter-1.7.3/translations/ghostwriter_zh.ts 2018-08-11 22:23:44.000000000 +0200 @@ -1249,12 +1249,12 @@ <translation>样式表</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="113"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="114"/> <source>Github (Default)</source> <translation>Github (默认)</translation> </message> <message> - <location filename="../src/PreviewOptionsDialog.cpp" line="115"/> + <location filename="../src/PreviewOptionsDialog.cpp" line="116"/> <source>Github Dark</source> <translation type="unfinished"></translation> </message>
