Hello community, here is the log from the commit of package kdbg for openSUSE:Factory checked in at 2015-03-05 15:40:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdbg (Old) and /work/SRC/openSUSE:Factory/.kdbg.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdbg" Changes: -------- --- /work/SRC/openSUSE:Factory/kdbg/kdbg.changes 2013-12-04 12:25:21.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kdbg.new/kdbg.changes 2015-03-05 18:16:27.000000000 +0100 @@ -1,0 +2,12 @@ +Tue Mar 3 11:59:28 UTC 2015 - [email protected] + +- Update to 2.5.5: + * A crash when the hotkey settings are changed was fixed. + * The animation button was regenerated to avoid a crash with modern Qt. + Thanks to Armin Felder for the initial fix. + * Pretty-printers and GDB Python extensions were disabled, because they + would interfere with the output parser. + * Recent GDBs do not terminate on receipt of SIGTERM, keeping KDbg + running for 20 seconds. This was fixed. + +------------------------------------------------------------------- Old: ---- kdbg-2.5.4.tar.gz New: ---- kdbg-2.5.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdbg.spec ++++++ --- /var/tmp/diff_new_pack.BZlE5H/_old 2015-03-05 18:16:27.000000000 +0100 +++ /var/tmp/diff_new_pack.BZlE5H/_new 2015-03-05 18:16:27.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package kdbg # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: kdbg -Version: 2.5.4 +Version: 2.5.5 Release: 0 Summary: Graphical User Interface for GDB License: GPL-2.0+ @@ -59,10 +59,9 @@ %make_jobs %install - cd build - %make_install + %kde4_makeinstall -C build %kde_post_install - cd .. + %find_lang %{name} %if 0%{?suse_version} >= 1310 %png_fix_dir %{buildroot}/%{_datadir}/icons/hicolor/22x22/actions/ @@ -90,7 +89,7 @@ %{_kde4_applicationsdir}/kdbg.desktop %{_kde4_appsdir}/kdbg %{_kde4_bindir}/kdbg -%config %{_kde4_configdir}/kdbgrc +%{_kde4_configdir}/kdbgrc %{_kde4_iconsdir}/hicolor/ %{_kde4_iconsdir}/locolor/ %{_kde4_iconsdir}/oxygen/ ++++++ kdbg-2.5.4.tar.gz -> kdbg-2.5.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/CMakeLists.txt new/kdbg-2.5.5/CMakeLists.txt --- old/kdbg-2.5.4/CMakeLists.txt 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/CMakeLists.txt 2015-02-22 20:54:42.000000000 +0100 @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 2.6) -set(KDBG_VERSION 2.5.4) +set(KDBG_VERSION 2.5.5) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/kdbg/version.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/kdbg/version.h) find_package(KDE4 REQUIRED) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/ReleaseNotes-2.5.5 new/kdbg-2.5.5/ReleaseNotes-2.5.5 --- old/kdbg-2.5.4/ReleaseNotes-2.5.5 1970-01-01 01:00:00.000000000 +0100 +++ new/kdbg-2.5.5/ReleaseNotes-2.5.5 2015-02-22 20:54:42.000000000 +0100 @@ -0,0 +1,18 @@ +KDbg Release Notes for version 2.5.5 +==================================== + +Changes since 2.5.4 +------------------- + +Bug fixes + +- A crash when the hotkey settings are changed was fixed. + +- The animation button was regenerated to avoid a crash with modern Qt. + Thanks to Armin Felder for the initial fix. + +- Pretty-printers and GDB Python extensions were disabled, because they + would interfere with the output parser. + +- Recent GDBs do not terminate on receipt of SIGTERM, keeping KDbg + running for 20 seconds. This was fixed. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/kdbg/dbgmainwnd.cpp new/kdbg-2.5.5/kdbg/dbgmainwnd.cpp --- old/kdbg-2.5.4/kdbg/dbgmainwnd.cpp 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/kdbg/dbgmainwnd.cpp 2015-02-22 20:54:42.000000000 +0100 @@ -67,7 +67,6 @@ m_tabWidth(0), m_sourceFilter(defaultSourceFilter), m_headerFilter(defaultHeaderFilter), - m_animation(0), m_statusActive(i18n("active")) { setDockNestingEnabled(true); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/kdbg/dbgmainwnd.h new/kdbg-2.5.5/kdbg/dbgmainwnd.h --- old/kdbg-2.5.4/kdbg/dbgmainwnd.h 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/kdbg/dbgmainwnd.h 2015-02-22 20:54:42.000000000 +0100 @@ -7,6 +7,7 @@ #ifndef DBGMAINWND_H #define DBGMAINWND_H +#include <QPointer> #include <QTimer> #include <kxmlguiwindow.h> #include "regwnd.h" @@ -161,7 +162,7 @@ // to avoid flicker when the status bar is updated, // we store the last string that we put there - KAnimatedButton* m_animation; + QPointer<KAnimatedButton> m_animation; QString m_lastActiveStatusText; bool m_animRunning; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/kdbg/debugger.cpp new/kdbg-2.5.5/kdbg/debugger.cpp --- old/kdbg-2.5.4/kdbg/debugger.cpp 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/kdbg/debugger.cpp 2015-02-22 20:54:42.000000000 +0100 @@ -1470,6 +1470,10 @@ void KDebugger::gotoFrame(int frame) { + // frame is negative when the backtrace list is cleared + // ignore this event + if (frame < 0) + return; m_d->executeCmd(DCframe, frame); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/kdbg/gdbdriver.cpp new/kdbg-2.5.5/kdbg/gdbdriver.cpp --- old/kdbg-2.5.4/kdbg/gdbdriver.cpp 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/kdbg/gdbdriver.cpp 2015-02-22 20:54:42.000000000 +0100 @@ -239,6 +239,16 @@ */ "set print thread-events off\n" /* + * We do not want Python pretty printer support, because their + * output is unpredictable, and we cannot parse it. + */ + "set auto-load python off\n" + /* + * Nevertheless, some Python messages get through, for example, + * when a backtrace is printed without the Python gdb module loaded. + */ + "set python print-stack none\n" + /* * Don't assume that program functions invoked from a watch expression * always succeed. */ @@ -648,8 +658,13 @@ void GdbDriver::terminate() { - ::kill(pid(), SIGTERM); - m_state = DSidle; + if (m_state != DSidle) + { + ::kill(pid(), SIGINT); + m_state = DSinterrupted; + } + flushCommands(); + closeWriteChannel(); } void GdbDriver::detachAndTerminate() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/kdbg/main.cpp new/kdbg-2.5.5/kdbg/main.cpp --- old/kdbg-2.5.4/kdbg/main.cpp 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/kdbg/main.cpp 2015-02-22 20:54:42.000000000 +0100 @@ -24,7 +24,7 @@ KDBG_VERSION, ki18n("A Debugger"), KAboutData::License_GPL, - ki18n("(c) 1998-2013 Johannes Sixt"), + ki18n("(c) 1998-2015 Johannes Sixt"), KLocalizedString(), /* any text */ "http://www.kdbg.org/", "[email protected]"); Files old/kdbg-2.5.4/kdbg/pics/hi22-action-pulse.mng and new/kdbg-2.5.5/kdbg/pics/hi22-action-pulse.mng differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/kdbg/testprogs/Makefile new/kdbg-2.5.5/kdbg/testprogs/Makefile --- old/kdbg-2.5.4/kdbg/testprogs/Makefile 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/kdbg/testprogs/Makefile 2015-02-22 20:54:42.000000000 +0100 @@ -59,3 +59,7 @@ widechar: widechar.cpp g++ -o $@ $(CXXFLAGS) $^ + + +clean: + $(RM) $(PROGS) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/kdbg/testprogs/std.cpp new/kdbg-2.5.5/kdbg/testprogs/std.cpp --- old/kdbg-2.5.4/kdbg/testprogs/std.cpp 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/kdbg/testprogs/std.cpp 2015-02-22 20:54:42.000000000 +0100 @@ -13,7 +13,7 @@ V(const T& v) : std::vector<T>(10, v) {} void anotherone(const T& v) { - push_back(v); + this->push_back(v); } }; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/kdbg.spec new/kdbg-2.5.5/kdbg.spec --- old/kdbg-2.5.4/kdbg.spec 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/kdbg.spec 2015-02-22 20:54:42.000000000 +0100 @@ -1,7 +1,8 @@ %define name kdbg -%define version 2.0.0 -%define release 1.kde2 +%define version 2.5.4 +%define release 1.kde4 %define prefix /usr +%define src_dir %{name}-%{version} %define builddir $RPM_BUILD_DIR/%{name}-%{version} @@ -11,7 +12,7 @@ Release: %{release} Prefix: %{prefix} Group: X11/KDE/Development -Copyright: GPL +License: GPL Distribution: RedHat 7.0 Vendor: Johannes Sixt <[email protected]> Packager: Ullrich von Bassewitz <[email protected]> @@ -33,20 +34,19 @@ touch `find . -type f` %build -if [ -z "$KDEDIR" ]; then - export KDEDIR=%{prefix} -fi -CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS="$RPM_OPT_FLAGS" ./configure \ - --prefix=$KDEDIR -make + +rm -f CMakeCache.txt +cmake . -DCMAKE_INSTALL_PREFIX=/usr +make -j4 %install + if [ -z "$KDEDIR" ]; then export KDEDIR=%{prefix} fi rm -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT install-strip +make DESTDIR=$RPM_BUILD_ROOT install cd $RPM_BUILD_ROOT find . -type d | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' > \ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/cs.po new/kdbg-2.5.5/po/cs.po --- old/kdbg-2.5.4/po/cs.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/cs.po 2015-02-22 20:54:42.000000000 +0100 @@ -318,7 +318,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/da.po new/kdbg-2.5.5/po/da.po --- old/kdbg-2.5.4/po/da.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/da.po 2015-02-22 20:54:42.000000000 +0100 @@ -321,7 +321,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/de.po new/kdbg-2.5.5/po/de.po --- old/kdbg-2.5.4/po/de.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/de.po 2015-02-22 20:54:42.000000000 +0100 @@ -320,8 +320,8 @@ msgstr "Ein Debugger" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" -msgstr "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" +msgstr "(c) 1998-2015 Johannes Sixt" #: main.cpp:31 msgid "Johannes Sixt" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/es.po new/kdbg-2.5.5/po/es.po --- old/kdbg-2.5.4/po/es.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/es.po 2015-02-22 20:54:42.000000000 +0100 @@ -323,7 +323,7 @@ msgstr "Un depurador" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/fr.po new/kdbg-2.5.5/po/fr.po --- old/kdbg-2.5.4/po/fr.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/fr.po 2015-02-22 20:54:42.000000000 +0100 @@ -327,7 +327,7 @@ msgstr "Un débogueur" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/hr.po new/kdbg-2.5.5/po/hr.po --- old/kdbg-2.5.4/po/hr.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/hr.po 2015-02-22 20:54:42.000000000 +0100 @@ -320,8 +320,8 @@ msgstr "Debuger" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" -msgstr "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" +msgstr "(c) 1998-2015 Johannes Sixt" #: main.cpp:31 msgid "Johannes Sixt" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/hu.po new/kdbg-2.5.5/po/hu.po --- old/kdbg-2.5.4/po/hu.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/hu.po 2015-02-22 20:54:42.000000000 +0100 @@ -320,7 +320,7 @@ msgstr "Nyomkövető" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/it.po new/kdbg-2.5.5/po/it.po --- old/kdbg-2.5.4/po/it.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/it.po 2015-02-22 20:54:42.000000000 +0100 @@ -454,7 +454,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/ja.po new/kdbg-2.5.5/po/ja.po --- old/kdbg-2.5.4/po/ja.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/ja.po 2015-02-22 20:54:42.000000000 +0100 @@ -322,7 +322,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/kdbg.pot new/kdbg-2.5.5/po/kdbg.pot --- old/kdbg-2.5.4/po/kdbg.pot 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/kdbg.pot 2015-02-22 20:54:42.000000000 +0100 @@ -312,7 +312,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/nb.po new/kdbg-2.5.5/po/nb.po --- old/kdbg-2.5.4/po/nb.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/nb.po 2015-02-22 20:54:42.000000000 +0100 @@ -321,7 +321,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/nn.po new/kdbg-2.5.5/po/nn.po --- old/kdbg-2.5.4/po/nn.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/nn.po 2015-02-22 20:54:42.000000000 +0100 @@ -323,7 +323,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/pl.po new/kdbg-2.5.5/po/pl.po --- old/kdbg-2.5.4/po/pl.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/pl.po 2015-02-22 20:54:42.000000000 +0100 @@ -320,7 +320,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/pt.po new/kdbg-2.5.5/po/pt.po --- old/kdbg-2.5.4/po/pt.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/pt.po 2015-02-22 20:54:42.000000000 +0100 @@ -314,7 +314,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/ro.po new/kdbg-2.5.5/po/ro.po --- old/kdbg-2.5.4/po/ro.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/ro.po 2015-02-22 20:54:42.000000000 +0100 @@ -315,7 +315,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/ru.po new/kdbg-2.5.5/po/ru.po --- old/kdbg-2.5.4/po/ru.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/ru.po 2015-02-22 20:54:42.000000000 +0100 @@ -317,7 +317,7 @@ msgstr "Отладчик" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/sk.po new/kdbg-2.5.5/po/sk.po --- old/kdbg-2.5.4/po/sk.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/sk.po 2015-02-22 20:54:42.000000000 +0100 @@ -317,7 +317,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/sr.po new/kdbg-2.5.5/po/sr.po --- old/kdbg-2.5.4/po/sr.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/sr.po 2015-02-22 20:54:42.000000000 +0100 @@ -321,7 +321,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/sv.po new/kdbg-2.5.5/po/sv.po --- old/kdbg-2.5.4/po/sv.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/sv.po 2015-02-22 20:54:42.000000000 +0100 @@ -321,7 +321,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/tr.po new/kdbg-2.5.5/po/tr.po --- old/kdbg-2.5.4/po/tr.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/tr.po 2015-02-22 20:54:42.000000000 +0100 @@ -322,7 +322,7 @@ msgstr "" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdbg-2.5.4/po/zh_CN.po new/kdbg-2.5.5/po/zh_CN.po --- old/kdbg-2.5.4/po/zh_CN.po 2013-11-09 20:32:33.000000000 +0100 +++ new/kdbg-2.5.5/po/zh_CN.po 2015-02-22 20:54:42.000000000 +0100 @@ -319,7 +319,7 @@ msgstr "一个基于GDB的图形界面调试器" #: main.cpp:27 -msgid "(c) 1998-2013 Johannes Sixt" +msgid "(c) 1998-2015 Johannes Sixt" msgstr "" #: main.cpp:31 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
