Hello community, here is the log from the commit of package kemoticons for openSUSE:Factory checked in at 2016-07-15 12:34:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kemoticons (Old) and /work/SRC/openSUSE:Factory/.kemoticons.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kemoticons" Changes: -------- --- /work/SRC/openSUSE:Factory/kemoticons/kemoticons.changes 2016-07-03 12:21:56.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kemoticons.new/kemoticons.changes 2016-07-15 12:34:24.000000000 +0200 @@ -1,0 +2,8 @@ +Wed Jul 6 15:03:33 UTC 2016 - [email protected] + +- Update to 5.24.0 + * Move glass theme to kde-look + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.24.0.php + +------------------------------------------------------------------- Old: ---- kemoticons-5.23.0.tar.xz New: ---- kemoticons-5.24.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kemoticons.spec ++++++ --- /var/tmp/diff_new_pack.0KJqQl/_old 2016-07-15 12:34:25.000000000 +0200 +++ /var/tmp/diff_new_pack.0KJqQl/_new 2016-07-15 12:34:25.000000000 +0200 @@ -17,9 +17,9 @@ %define lname libKF5Emoticons5 -%define _tar_path 5.23 +%define _tar_path 5.24 Name: kemoticons -Version: 5.23.0 +Version: 5.24.0 Release: 0 %define kf5_version %{version} BuildRequires: cmake >= 2.8.12 ++++++ kemoticons-5.23.0.tar.xz -> kemoticons-5.24.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.23.0/CMakeLists.txt new/kemoticons-5.24.0/CMakeLists.txt --- old/kemoticons-5.23.0/CMakeLists.txt 2016-06-06 11:29:39.000000000 +0200 +++ new/kemoticons-5.24.0/CMakeLists.txt 2016-07-02 10:46:14.000000000 +0200 @@ -3,7 +3,7 @@ project(KEmoticons) include(FeatureSummary) -find_package(ECM 5.23.0 NO_MODULE) +find_package(ECM 5.24.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -23,8 +23,8 @@ include(ECMGenerateHeaders) include(ECMPackageConfigHelpers) -set(KF5_VERSION "5.23.0") # handled by release scripts -set(KF5_DEP_VERSION "5.23.0") # handled by release scripts +set(KF5_VERSION "5.24.0") # handled by release scripts +set(KF5_DEP_VERSION "5.24.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KEMOTICONS VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kemoticons_version.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.23.0/autotests/CMakeLists.txt new/kemoticons-5.24.0/autotests/CMakeLists.txt --- old/kemoticons-5.23.0/autotests/CMakeLists.txt 2016-06-06 11:29:39.000000000 +0200 +++ new/kemoticons-5.24.0/autotests/CMakeLists.txt 2016-07-02 10:46:14.000000000 +0200 @@ -9,6 +9,3 @@ kemoticons_unit_test(kemoticontest) kemoticons_unit_test(ktexttohtmlplugintest ../src/integrationplugin/ktexttohtml.cpp) -target_compile_definitions(kemoticons-kemoticontest PRIVATE - LOCAL_THEMES_DIR="${KEmoticons_SOURCE_DIR}/themes") - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.23.0/autotests/autotestbase.h new/kemoticons-5.24.0/autotests/autotestbase.h --- old/kemoticons-5.23.0/autotests/autotestbase.h 1970-01-01 01:00:00.000000000 +0100 +++ new/kemoticons-5.24.0/autotests/autotestbase.h 2016-07-02 10:46:14.000000000 +0200 @@ -0,0 +1,47 @@ +/* + Test base class + + Copyright (c) 2004 by Richard Smith <[email protected]> + Copyright (c) 2005 by Duncan Mac-Vicar <[email protected]> + Copyright (c) 2014 by Alex Merry <[email protected]> + + Kopete (c) 2002-2005 by the Kopete developers <[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. * + * * + ************************************************************************* +*/ + +#ifndef AUTOTESTBASE_H +#define AUTOTESTBASE_H + +#include <QDebug> +#include <QDir> +#include <QObject> + +static bool copyTheme(const QString &dir, const QDir &baseThemeDir, const QString &themeName) +{ + QDir sourceThemeDir(dir); + if (!sourceThemeDir.exists()) { + return false; + } + QDir themeDir(baseThemeDir.absolutePath() + '/' + themeName); + themeDir.removeRecursively(); + themeDir.mkpath(QStringLiteral(".")); + + foreach (const QString &fileName, sourceThemeDir.entryList(QDir::Files)) { + if (!QFile::copy(sourceThemeDir.filePath(fileName), + themeDir.filePath(fileName))) { + qWarning() << "couldn't copy" << dir << "/" << fileName; + return false; + } + } + return true; +} + +#endif // AUTOTESTBASE_H Files old/kemoticons-5.23.0/autotests/default-testtheme/angry.png and new/kemoticons-5.24.0/autotests/default-testtheme/angry.png differ Files old/kemoticons-5.23.0/autotests/default-testtheme/confused.png and new/kemoticons-5.24.0/autotests/default-testtheme/confused.png differ Files old/kemoticons-5.23.0/autotests/default-testtheme/dog.png and new/kemoticons-5.24.0/autotests/default-testtheme/dog.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.23.0/autotests/default-testtheme/emoticons.xml new/kemoticons-5.24.0/autotests/default-testtheme/emoticons.xml --- old/kemoticons-5.23.0/autotests/default-testtheme/emoticons.xml 1970-01-01 01:00:00.000000000 +0100 +++ new/kemoticons-5.24.0/autotests/default-testtheme/emoticons.xml 2016-07-02 10:46:14.000000000 +0200 @@ -0,0 +1,24 @@ +<?xml version="1.0"?> +<messaging-emoticon-map> + <emoticon file="smile"> + <string>:)</string> + <string>:-)</string> + </emoticon> + <emoticon file="tongue"> + <string>:p</string> + <string>:P</string> + </emoticon> + <emoticon file="sad"> + <string>:-(</string> + <string>:(</string> + </emoticon> + <emoticon file="confused"> + <string>:s</string> + </emoticon> + <emoticon file="dog"> + <string>(&)</string> + </emoticon> + <emoticon file="angry"> + <string>>:(</string> + </emoticon> +</messaging-emoticon-map> Files old/kemoticons-5.23.0/autotests/default-testtheme/sad.png and new/kemoticons-5.24.0/autotests/default-testtheme/sad.png differ Files old/kemoticons-5.23.0/autotests/default-testtheme/smile.png and new/kemoticons-5.24.0/autotests/default-testtheme/smile.png differ Files old/kemoticons-5.23.0/autotests/default-testtheme/tongue.png and new/kemoticons-5.24.0/autotests/default-testtheme/tongue.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.23.0/autotests/kemoticontest.cpp new/kemoticons-5.24.0/autotests/kemoticontest.cpp --- old/kemoticons-5.23.0/autotests/kemoticontest.cpp 2016-06-06 11:29:39.000000000 +0200 +++ new/kemoticons-5.24.0/autotests/kemoticontest.cpp 2016-07-02 10:46:14.000000000 +0200 @@ -17,6 +17,8 @@ ************************************************************************* */ +#include "autotestbase.h" + #include <QTest> #include <QDir> #include <QFile> @@ -26,7 +28,7 @@ #include <kemoticons.h> -static const char * default_theme = "Glass"; +static const char * default_theme = "__woopwoop__"; /* There are three sets of tests, the Kopete 0.7 baseline with tests that were @@ -42,27 +44,6 @@ { Q_OBJECT -private: - bool copyTheme(const QString &dir, const QDir &baseThemeDir, const QString &themeName) - { - QDir sourceThemeDir(dir); - if (!sourceThemeDir.exists()) { - return false; - } - QDir themeDir(baseThemeDir.absolutePath() + '/' + themeName); - themeDir.removeRecursively(); - themeDir.mkpath(QStringLiteral(".")); - - foreach (const QString &fileName, sourceThemeDir.entryList(QDir::Files)) { - if (!QFile::copy(sourceThemeDir.filePath(fileName), - themeDir.filePath(fileName))) { - qWarning() << "couldn't copy" << dir << "/" << fileName; - return false; - } - } - return true; - } - private Q_SLOTS: void initTestCase() { @@ -76,7 +57,7 @@ } QVERIFY(themeDir.mkpath(QStringLiteral("."))); - QVERIFY(copyTheme(QFile::decodeName(LOCAL_THEMES_DIR) + QLatin1String("/") + default_theme, themeDir, default_theme)); + QVERIFY(copyTheme(QFINDTESTDATA("default-testtheme"), themeDir, default_theme)); // check it can actually be found themePath = QStandardPaths::locate( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.23.0/autotests/ktexttohtmlplugintest.cpp new/kemoticons-5.24.0/autotests/ktexttohtmlplugintest.cpp --- old/kemoticons-5.23.0/autotests/ktexttohtmlplugintest.cpp 2016-06-06 11:29:39.000000000 +0200 +++ new/kemoticons-5.24.0/autotests/ktexttohtmlplugintest.cpp 2016-07-02 10:46:14.000000000 +0200 @@ -17,6 +17,8 @@ * */ +#include "autotestbase.h" + #include <QObject> #include <QTest> #include <QStandardPaths> @@ -44,8 +46,18 @@ void KTextToHTMLPluginTest::initTestCase() { - KEmoticons::setTheme(QStringLiteral("Glass")); - mEmoticonsThemePath = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("emoticons/Glass"), QStandardPaths::LocateDirectory); + QStandardPaths::setTestModeEnabled(true); + QString dataPath = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); + QString destThemePath = dataPath + QLatin1String("/emoticons/"); + QDir themeDir(destThemePath); + if (themeDir.exists()) { + QVERIFY(themeDir.removeRecursively()); + } + QVERIFY(themeDir.mkpath(QStringLiteral("."))); + QVERIFY(copyTheme(QFINDTESTDATA("default-testtheme"), themeDir, "default-testtheme")); + + KEmoticons::setTheme(QStringLiteral("default-testtheme")); + mEmoticonsThemePath = destThemePath + "default-testtheme"; QVERIFY(!mEmoticonsThemePath.isEmpty()); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.23.0/metainfo.yaml new/kemoticons-5.24.0/metainfo.yaml --- old/kemoticons-5.23.0/metainfo.yaml 2016-06-06 11:29:39.000000000 +0200 +++ new/kemoticons-5.24.0/metainfo.yaml 2016-07-02 10:46:14.000000000 +0200 @@ -3,7 +3,9 @@ tier: 3 type: functional platforms: - - name: All + - name: Linux + - name: Windows + - name: MacOSX portingAid: false deprecated: false release: true diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.23.0/themes/CMakeLists.txt new/kemoticons-5.24.0/themes/CMakeLists.txt --- old/kemoticons-5.23.0/themes/CMakeLists.txt 2016-06-06 11:29:39.000000000 +0200 +++ new/kemoticons-5.24.0/themes/CMakeLists.txt 2016-07-02 10:46:14.000000000 +0200 @@ -1,6 +1,6 @@ install( DIRECTORY - Glass Breeze Konqi EmojiOne + Breeze Konqi EmojiOne DESTINATION ${KDE_INSTALL_DATAROOTDIR}/emoticons/ FILES_MATCHING Files old/kemoticons-5.23.0/themes/Glass/angry.png and new/kemoticons-5.24.0/themes/Glass/angry.png differ Files old/kemoticons-5.23.0/themes/Glass/bat.png and new/kemoticons-5.24.0/themes/Glass/bat.png differ Files old/kemoticons-5.23.0/themes/Glass/beer.png and new/kemoticons-5.24.0/themes/Glass/beer.png differ Files old/kemoticons-5.23.0/themes/Glass/biggrin.png and new/kemoticons-5.24.0/themes/Glass/biggrin.png differ Files old/kemoticons-5.23.0/themes/Glass/cake.png and new/kemoticons-5.24.0/themes/Glass/cake.png differ Files old/kemoticons-5.23.0/themes/Glass/camera.png and new/kemoticons-5.24.0/themes/Glass/camera.png differ Files old/kemoticons-5.23.0/themes/Glass/cat.png and new/kemoticons-5.24.0/themes/Glass/cat.png differ Files old/kemoticons-5.23.0/themes/Glass/clock.png and new/kemoticons-5.24.0/themes/Glass/clock.png differ Files old/kemoticons-5.23.0/themes/Glass/cocktail.png and new/kemoticons-5.24.0/themes/Glass/cocktail.png differ Files old/kemoticons-5.23.0/themes/Glass/confused.png and new/kemoticons-5.24.0/themes/Glass/confused.png differ Files old/kemoticons-5.23.0/themes/Glass/cry.png and new/kemoticons-5.24.0/themes/Glass/cry.png differ Files old/kemoticons-5.23.0/themes/Glass/cup.png and new/kemoticons-5.24.0/themes/Glass/cup.png differ Files old/kemoticons-5.23.0/themes/Glass/dog.png and new/kemoticons-5.24.0/themes/Glass/dog.png differ Files old/kemoticons-5.23.0/themes/Glass/email.png and new/kemoticons-5.24.0/themes/Glass/email.png differ Files old/kemoticons-5.23.0/themes/Glass/embarassed.png and new/kemoticons-5.24.0/themes/Glass/embarassed.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kemoticons-5.23.0/themes/Glass/emoticons.xml new/kemoticons-5.24.0/themes/Glass/emoticons.xml --- old/kemoticons-5.23.0/themes/Glass/emoticons.xml 2016-06-06 11:29:39.000000000 +0200 +++ new/kemoticons-5.24.0/themes/Glass/emoticons.xml 1970-01-01 01:00:00.000000000 +0100 @@ -1,283 +0,0 @@ -<?xml version="1.0"?> -<messaging-emoticon-map > - -<emoticon file="angry"> - <string>:-@</string> - <string>:@</string> - <string>>:-(</string> - <string>>:(</string> - <string>😠</string> -</emoticon> - -<emoticon file="bat"> - <string>:-[</string> - <string>:[</string> -</emoticon> - -<emoticon file="beer"> - <string>(B)</string> - <string>(b)</string> - <string>🍺</string> -</emoticon> - -<emoticon file="cake"> - <string>(^)</string> - <string>🎂</string> - <string>🍰</string> -</emoticon> - -<emoticon file="camera"> - <string>(P)</string> - <string>(p)</string> - <string>📷</string> -</emoticon> - -<emoticon file="cat"> - <string>(@)</string> - <string>🐈</string> -</emoticon> - -<emoticon file="clock"> - <string>(O)</string> - <string>(o)</string> - <string>🕐</string> - <string>🕑</string> - <string>🕒</string> - <string>🕓</string> - <string>🕔</string> - <string>🕕</string> - <string>🕖</string> - <string>🕗</string> - <string>🕘</string> - <string>🕙</string> - <string>🕚</string> - <string>🕛</string> - <string>🕜</string> - <string>🕝</string> - <string>🕞</string> - <string>🕟</string> - <string>🕠</string> - <string>🕡</string> - <string>🕢</string> - <string>🕣</string> - <string>🕤</string> - <string>🕥</string> - <string>🕦</string> - <string>🕧</string> -</emoticon> - -<emoticon file="cocktail"> - <string>(D)</string> - <string>(d)</string> - <string>🍸</string> - <string>🍹</string> -</emoticon> - -<emoticon file="confused"> - <string>:-S</string> - <string>:S</string> - <string>:-s</string> - <string>:s</string> - <string>😕</string> -</emoticon> - -<emoticon file="cry"> - <string>:'(</string> - <string>:'-(</string> - <string>;-(</string> - <string>;(</string> - <string>😢</string> - <string>😭</string> - <string>😿</string> -</emoticon> - -<emoticon file="cup"> - <string>(C)</string> - <string>(c)</string> - <string>🍵</string> - <string>☕</string> -</emoticon> - -<emoticon file="dog"> - <string>(&)</string> - <string>🐶</string> - <string>🐕</string> -</emoticon> - -<emoticon file="embarassed"> - <string>:-$</string> - <string>:$</string> - <string>😓</string> - <string>😰</string> -</emoticon> - -<emoticon file="email"> - <string>(E)</string> - <string>(e)</string> - <string>📧</string> -</emoticon> - -<emoticon file="film"> - <string>(~)</string> - <string>😨</string> -</emoticon> - -<emoticon file="innocent"> - <string>😇</string> -</emoticon> - -<emoticon file="kiss"> - <string>(K)</string> - <string>(k)</string> - <string>:-X</string> - <string>:X</string> - <string>:-x</string> - <string>:x</string> - <string>😗</string> - <string>😙</string> - <string>😘</string> - <string>😚</string> - <string>😽</string> - <string>💋</string> - <string>💏</string> -</emoticon> - -<emoticon file="lightbulb"> - <string>(I)</string> - <string>(i)</string> - <string>💡</string> -</emoticon> - -<emoticon file="love"> - <string>(L)</string> - <string>(l)</string> - <string>😍</string> - <string>😻</string> - <string>💓</string> - <string>💕</string> - <string>💖</string> - <string>💗</string> - <string>💘</string> - <string>💙</string> - <string>💚</string> - <string>💛</string> - <string>💜</string> - <string>💝</string> - <string>💞</string> -</emoticon> - -<emoticon file="note"> - <string>(8)</string> - <string>🎵</string> - <string>🎶</string> -</emoticon> - -<emoticon file="omg"> - <string>:-O</string> - <string>:O</string> - <string>:-o</string> - <string>:o</string> - <string>😮</string> -</emoticon> - -<emoticon file="phone"> - <string>(T)</string> - <string>(t)</string> - <string>☎</string> - <string>📞</string> - <string>📱</string> -</emoticon> - -<emoticon file="present"> - <string>(G)</string> - <string>(g)</string> - <string>🎁</string> -</emoticon> - -<emoticon file="rose"> - <string>(F)</string> - <string>(f)</string> - <string>🌹</string> -</emoticon> - -<emoticon file="sad"> - <string>:-(</string> - <string>:(</string> - <string>😞</string> -</emoticon> - -<emoticon file="shade"> - <string>(H)</string> - <string>(h)</string> - <string>8-)</string> - <string>8)</string> - <string>😎</string> -</emoticon> - -<emoticon file="smile"> - <string>:-)</string> - <string>:)</string> - <string>:o)</string> - <string>☺</string> - <string>😊</string> -</emoticon> - -<emoticon file="star"> - <string>(*)</string> - <string>✴</string> - <string>⭐</string> - <string>🌟</string> -</emoticon> - -<emoticon file="teeth"> - <string>:-D</string> - <string>:D</string> - <string>😸</string> - <string>😁</string> - <string>😂</string> - <string>😃</string> - <string>😄</string> - <string>😀</string> -</emoticon> - -<emoticon file="thumbs_down"> - <string>(N)</string> - <string>(n)</string> - <string>👎</string> -</emoticon> - -<emoticon file="thumbs_up"> - <string>(Y)</string> - <string>(y)</string> - <string>👍</string> -</emoticon> - -<emoticon file="tongue"> - <string>:-P</string> - <string>:P</string> - <string>:-p</string> - <string>:p</string> - <string>😝</string> - <string>👅</string> - <string>😛</string> -</emoticon> - -<emoticon file="unlove"> - <string>(U)</string> - <string>(u)</string> - <string>💔</string> -</emoticon> - -<emoticon file="wilted_rose"> - <string>(W)</string> - <string>(w)</string> -</emoticon> - -<emoticon file="wink"> - <string>;-)</string> - <string>;)</string> - <string>😉</string> - <string>😜</string> -</emoticon> - -</messaging-emoticon-map> Files old/kemoticons-5.23.0/themes/Glass/film.png and new/kemoticons-5.24.0/themes/Glass/film.png differ Files old/kemoticons-5.23.0/themes/Glass/foot_in_mouth.png and new/kemoticons-5.24.0/themes/Glass/foot_in_mouth.png differ Files old/kemoticons-5.23.0/themes/Glass/innocent.png and new/kemoticons-5.24.0/themes/Glass/innocent.png differ Files old/kemoticons-5.23.0/themes/Glass/kiss.png and new/kemoticons-5.24.0/themes/Glass/kiss.png differ Files old/kemoticons-5.23.0/themes/Glass/lightbulb.png and new/kemoticons-5.24.0/themes/Glass/lightbulb.png differ Files old/kemoticons-5.23.0/themes/Glass/love.png and new/kemoticons-5.24.0/themes/Glass/love.png differ Files old/kemoticons-5.23.0/themes/Glass/note.png and new/kemoticons-5.24.0/themes/Glass/note.png differ Files old/kemoticons-5.23.0/themes/Glass/oh.png and new/kemoticons-5.24.0/themes/Glass/oh.png differ Files old/kemoticons-5.23.0/themes/Glass/omg.png and new/kemoticons-5.24.0/themes/Glass/omg.png differ Files old/kemoticons-5.23.0/themes/Glass/phone.png and new/kemoticons-5.24.0/themes/Glass/phone.png differ Files old/kemoticons-5.23.0/themes/Glass/present.png and new/kemoticons-5.24.0/themes/Glass/present.png differ Files old/kemoticons-5.23.0/themes/Glass/rose.png and new/kemoticons-5.24.0/themes/Glass/rose.png differ Files old/kemoticons-5.23.0/themes/Glass/sad.png and new/kemoticons-5.24.0/themes/Glass/sad.png differ Files old/kemoticons-5.23.0/themes/Glass/shade.png and new/kemoticons-5.24.0/themes/Glass/shade.png differ Files old/kemoticons-5.23.0/themes/Glass/sleep.png and new/kemoticons-5.24.0/themes/Glass/sleep.png differ Files old/kemoticons-5.23.0/themes/Glass/smile.png and new/kemoticons-5.24.0/themes/Glass/smile.png differ Files old/kemoticons-5.23.0/themes/Glass/star.png and new/kemoticons-5.24.0/themes/Glass/star.png differ Files old/kemoticons-5.23.0/themes/Glass/teeth.png and new/kemoticons-5.24.0/themes/Glass/teeth.png differ Files old/kemoticons-5.23.0/themes/Glass/thumbs_down.png and new/kemoticons-5.24.0/themes/Glass/thumbs_down.png differ Files old/kemoticons-5.23.0/themes/Glass/thumbs_up.png and new/kemoticons-5.24.0/themes/Glass/thumbs_up.png differ Files old/kemoticons-5.23.0/themes/Glass/tongue.png and new/kemoticons-5.24.0/themes/Glass/tongue.png differ Files old/kemoticons-5.23.0/themes/Glass/undecided.png and new/kemoticons-5.24.0/themes/Glass/undecided.png differ Files old/kemoticons-5.23.0/themes/Glass/unhappy.png and new/kemoticons-5.24.0/themes/Glass/unhappy.png differ Files old/kemoticons-5.23.0/themes/Glass/unlove.png and new/kemoticons-5.24.0/themes/Glass/unlove.png differ Files old/kemoticons-5.23.0/themes/Glass/wilted_rose.png and new/kemoticons-5.24.0/themes/Glass/wilted_rose.png differ Files old/kemoticons-5.23.0/themes/Glass/wink.png and new/kemoticons-5.24.0/themes/Glass/wink.png differ
