Hello community,

here is the log from the commit of package ktimer for openSUSE:Factory checked 
in at 2015-10-03 20:24:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ktimer (Old)
 and      /work/SRC/openSUSE:Factory/.ktimer.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ktimer"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ktimer/ktimer.changes    2015-07-14 
17:38:06.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.ktimer.new/ktimer.changes       2015-10-03 
20:24:08.000000000 +0200
@@ -1,0 +2,23 @@
+Sun Sep 13 19:29:43 UTC 2015 - [email protected]
+
+- Update to KDE Applications 15.08.1
+   * KDE Applications 15.08.1 
+   * https://www.kde.org/announcements/announce-applications-15.08.1.php
+
+
+-------------------------------------------------------------------
+Wed Aug 19 19:43:59 UTC 2015 - [email protected]
+
+- Update to KDE Applications 15.08.0
+   * KDE Applications 15.08.0
+   * https://www.kde.org/announcements/announce-applications-15.08.0.php
+
+-------------------------------------------------------------------
+Fri Aug  7 07:01:09 UTC 2015 - [email protected]
+
+- Update to KDE Applications 15.07.90
+   * KDE Applications 15.08.0 RC1
+   * https://www.kde.org/announcements/announce-applications-15.07.90.php
+
+
+-------------------------------------------------------------------

Old:
----
  ktimer-15.04.3.tar.xz

New:
----
  ktimer-15.08.1.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ktimer.spec ++++++
--- /var/tmp/diff_new_pack.I96uZ5/_old  2015-10-03 20:24:09.000000000 +0200
+++ /var/tmp/diff_new_pack.I96uZ5/_new  2015-10-03 20:24:09.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           ktimer
-Version:        15.04.3
+Version:        15.08.1
 Release:        0
 Summary:        Countdown Launcher
 License:        GPL-2.0+

++++++ ktimer-15.04.3.tar.xz -> ktimer-15.08.1.tar.xz ++++++
Files old/ktimer-15.04.3/128-apps-ktimer.png and 
new/ktimer-15.08.1/128-apps-ktimer.png differ
Files old/ktimer-15.04.3/16-apps-ktimer.png and 
new/ktimer-15.08.1/16-apps-ktimer.png differ
Files old/ktimer-15.04.3/32-apps-ktimer.png and 
new/ktimer-15.08.1/32-apps-ktimer.png differ
Files old/ktimer-15.04.3/48-apps-ktimer.png and 
new/ktimer-15.08.1/48-apps-ktimer.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktimer-15.04.3/CMakeLists.txt 
new/ktimer-15.08.1/CMakeLists.txt
--- old/ktimer-15.04.3/CMakeLists.txt   2015-03-27 07:56:53.000000000 +0100
+++ new/ktimer-15.08.1/CMakeLists.txt   2015-07-30 11:16:51.000000000 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR)
 set (QT_MIN_VERSION "5.2.0")
 
-find_package (ECM 1.3.0 REQUIRED NO_MODULE)
+find_package (ECM 5.10.0 REQUIRED NO_MODULE)
 set (CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
 
 add_definitions(-DTRANSLATION_DOMAIN="ktimer")
@@ -12,6 +12,7 @@
 include(KDECompilerSettings)
 include(KDECMakeSettings)
 include(ECMInstallIcons)
+include(ECMAddAppIcon)
 
 find_package (Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
     Core
@@ -22,7 +23,6 @@
     DocTools
     I18n
     WidgetsAddons
-    XmlGui
     KIO
     IconThemes
     DBusAddons
@@ -34,20 +34,21 @@
 
 ki18n_wrap_ui(ktimer_SRCS prefwidget.ui )
 
-#kde4_add_app_icon(ktimer_SRCS 
"${CMAKE_CURRENT_SOURCE_DIR}/hi*-app-ktimer.png")
+file(GLOB ICONS_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/*-apps-ktimer.png")
+ecm_add_app_icon(ktimer_SRCS ICONS ${ICONS_SRCS})
 
 add_executable(ktimer ${ktimer_SRCS})
 
-target_link_libraries(ktimer  KF5::KIOCore KF5::I18n KF5::XmlGui 
KF5::KIOWidgets KF5::IconThemes KF5::Notifications KF5::DBusAddons)
+target_link_libraries(ktimer  KF5::I18n KF5::KIOWidgets KF5::ConfigWidgets 
KF5::IconThemes KF5::Notifications KF5::DBusAddons)
 
-install(TARGETS ktimer  ${INSTALL_TARGETS_DEFAULT_ARGS} )
+install(TARGETS ktimer  ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )
 
 
 ########### install files ###############
 
-install( PROGRAMS org.kde.ktimer.desktop  DESTINATION ${XDG_APPS_INSTALL_DIR})
+install( PROGRAMS org.kde.ktimer.desktop  DESTINATION ${KDE_INSTALL_APPDIR})
 
-ecm_install_icons( ICONS hi128-apps-ktimer.png  hi16-apps-ktimer.png  
hi32-apps-ktimer.png  hi48-apps-ktimer.png DESTINATION ${ICON_INSTALL_DIR}   )
+ecm_install_icons( ICONS 128-apps-ktimer.png  16-apps-ktimer.png  
32-apps-ktimer.png  48-apps-ktimer.png DESTINATION ${KDE_INSTALL_ICONDIR} THEME 
hicolor  )
 
 add_subdirectory(doc)
 feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktimer-15.04.3/doc/CMakeLists.txt 
new/ktimer-15.08.1/doc/CMakeLists.txt
--- old/ktimer-15.04.3/doc/CMakeLists.txt       2015-03-27 07:56:53.000000000 
+0100
+++ new/ktimer-15.08.1/doc/CMakeLists.txt       2015-07-30 11:16:51.000000000 
+0200
@@ -1,4 +1,4 @@
 ########### install files ###############
 #
 #
-kdoctools_create_handbook(index.docbook INSTALL_DESTINATION 
${HTML_INSTALL_DIR}/en SUBDIR ktimer)
+kdoctools_create_handbook(index.docbook INSTALL_DESTINATION 
${KDE_INSTALL_DOCBUNDLEDIR}/en SUBDIR ktimer)
Files old/ktimer-15.04.3/hi128-apps-ktimer.png and 
new/ktimer-15.08.1/hi128-apps-ktimer.png differ
Files old/ktimer-15.04.3/hi16-apps-ktimer.png and 
new/ktimer-15.08.1/hi16-apps-ktimer.png differ
Files old/ktimer-15.04.3/hi32-apps-ktimer.png and 
new/ktimer-15.08.1/hi32-apps-ktimer.png differ
Files old/ktimer-15.04.3/hi48-apps-ktimer.png and 
new/ktimer-15.08.1/hi48-apps-ktimer.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktimer-15.04.3/main.cpp new/ktimer-15.08.1/main.cpp
--- old/ktimer-15.04.3/main.cpp 2015-03-27 07:56:53.000000000 +0100
+++ new/ktimer-15.08.1/main.cpp 2015-07-30 11:16:51.000000000 +0200
@@ -34,6 +34,12 @@
 int main( int argc, char **argv )
 {
     QApplication app(argc, argv);
+
+    /**
+     * enable high dpi support
+     */
+    app.setAttribute(Qt::AA_UseHighDpiPixmaps, true);
+
     Kdelibs4ConfigMigrator migrate(QStringLiteral("ktimer"));
     migrate.setConfigFiles(QStringList() << QStringLiteral("ktimerrc"));
     migrate.migrate();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktimer-15.04.3/org.kde.ktimer.desktop 
new/ktimer-15.08.1/org.kde.ktimer.desktop
--- old/ktimer-15.04.3/org.kde.ktimer.desktop   2015-03-27 07:56:53.000000000 
+0100
+++ new/ktimer-15.08.1/org.kde.ktimer.desktop   2015-07-30 11:16:51.000000000 
+0200
@@ -61,7 +61,7 @@
 GenericName[wa]=Usteye di munutreye
 GenericName[x-test]=xxCountdown Launcherxx
 GenericName[zh_CN]=倒计时执行器
-GenericName[zh_TW]=倒數發射計時
+GenericName[zh_TW]=倒數計時
 Exec=ktimer
 Icon=ktimer
 Type=Application


Reply via email to