Hello community,
here is the log from the commit of package ktp-desktop-applets for
openSUSE:Factory checked in at 2015-06-04 11:24:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ktp-desktop-applets (Old)
and /work/SRC/openSUSE:Factory/.ktp-desktop-applets.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ktp-desktop-applets"
Changes:
--------
--- /work/SRC/openSUSE:Factory/ktp-desktop-applets/ktp-desktop-applets.changes
2015-05-15 10:05:40.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.ktp-desktop-applets.new/ktp-desktop-applets.changes
2015-06-04 11:24:56.000000000 +0200
@@ -1,0 +2,8 @@
+Sat May 30 15:23:42 UTC 2015 - [email protected]
+
+- Update to KDE Applications 15.04.2
+ * KDE Applications 15.04.2
+ * https://www.kde.org/announcements/announce-applications-15.04.2.php
+
+
+-------------------------------------------------------------------
Old:
----
ktp-desktop-applets-15.04.1.tar.xz
New:
----
ktp-desktop-applets-15.04.2.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ktp-desktop-applets.spec ++++++
--- /var/tmp/diff_new_pack.6snlME/_old 2015-06-04 11:24:57.000000000 +0200
+++ /var/tmp/diff_new_pack.6snlME/_new 2015-06-04 11:24:57.000000000 +0200
@@ -17,7 +17,7 @@
Name: ktp-desktop-applets
-Version: 15.04.1
+Version: 15.04.2
Release: 0
Summary: Telepathy presence applet
License: GPL-2.0+ and LGPL-2.1+
++++++ ktp-desktop-applets-15.04.1.tar.xz -> ktp-desktop-applets-15.04.2.tar.xz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ktp-desktop-applets-15.04.1/CMakeLists.txt
new/ktp-desktop-applets-15.04.2/CMakeLists.txt
--- old/ktp-desktop-applets-15.04.1/CMakeLists.txt 2015-05-07
15:02:50.000000000 +0200
+++ new/ktp-desktop-applets-15.04.2/CMakeLists.txt 2015-05-28
23:55:58.000000000 +0200
@@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
-set(KTP_DESKTOP_APPLETS_VERSION "15.04.1")
+set(KTP_DESKTOP_APPLETS_VERSION "15.04.2")
find_package(ECM 0.0.11 REQUIRED NO_MODULE)
set (CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/ktp-desktop-applets-15.04.1/contactlist/org.kde.ktp-contactlist/contents/ui/ExternalLabel.qml
new/ktp-desktop-applets-15.04.2/contactlist/org.kde.ktp-contactlist/contents/ui/ExternalLabel.qml
---
old/ktp-desktop-applets-15.04.1/contactlist/org.kde.ktp-contactlist/contents/ui/ExternalLabel.qml
2015-05-07 15:02:50.000000000 +0200
+++
new/ktp-desktop-applets-15.04.2/contactlist/org.kde.ktp-contactlist/contents/ui/ExternalLabel.qml
1970-01-01 01:00:00.000000000 +0100
@@ -1,55 +0,0 @@
-/***************************************************************************
- * Copyright (C) 2011 by Francesco Nwokeka <[email protected]> *
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * You should have received a copy of the GNU General Public License *
- * along with this program; if not, write to the *
- * Free Software Foundation, Inc., *
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
- ***************************************************************************/
-
-import QtQuick 2.1
-import org.kde.plasma.core 2.0 as PlasmaCore
-import org.kde.plasma.graphicswidgets 0.1 as PlasmaWidgets
-
-Item {
- id: label;
-
- // this property holds which side the label is to be viewed. Default is
left
- // and changes when user changes screen edge from settings ui.
- property string orientation: "left";
- signal orientationChanged();
- property QtObject theme: PlasmaCore.Theme {}
-
- PlasmaWidgets.IconWidget {
- id: labelIcon;
- icon: QIcon("kde-telepathy");
- drawBackground: false;
- text: i18n("ContactList");
- orientation: QtHorizontal;
- textBackgroundColor: theme.backgroundColor;
- anchors.fill: parent;
- }
-
- function setOrientation(newOrientation)
- {
- if (newOrientation == "left"
- || newOrientation == "right"
- || newOrientation == "bottom"
- || newOrientation == "top") {
- label.orientation = newOrientation;
- label.orientationChanged();
- } else {
- console.log("CAN'T SET FAILED ORIENTATION!");
- }
- }
-}