Hello community, here is the log from the commit of package obconf-qt for openSUSE:Factory checked in at 2017-10-24 22:23:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/obconf-qt (Old) and /work/SRC/openSUSE:Factory/.obconf-qt.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "obconf-qt" Tue Oct 24 22:23:25 2017 rev:3 rq:535985 version:0.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/obconf-qt/obconf-qt.changes 2017-03-13 15:33:37.085135109 +0100 +++ /work/SRC/openSUSE:Factory/.obconf-qt.new/obconf-qt.changes 2017-10-24 22:23:26.364241409 +0200 @@ -1,0 +2,17 @@ +Mon Oct 23 11:48:48 UTC 2017 - [email protected] + +- Update to 0.12.0: + * Bump version to 0.12.0 + * Don't export github templates + * Added Lithuanian language + * liblxqt dont make sense here + * Copied issue template + * Drops Qt5Core_VERSION_STRING + * set Qt::AA_UseHighDpiPixmaps to true + * Added default CMAKE_BUILD_TYPE and versioning (#29) + * added Polish translation + * Add obconf-qt_ca.desktop (Catalan) + * Update AUTHORS + * Added *da.desktop + +------------------------------------------------------------------- Old: ---- obconf-qt-0.11.1.tar.xz obconf-qt-0.11.1.tar.xz.asc New: ---- obconf-qt-0.12.0.tar.xz obconf-qt-0.12.0.tar.xz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ obconf-qt.spec ++++++ --- /var/tmp/diff_new_pack.cLEYQs/_old 2017-10-24 22:23:27.128205697 +0200 +++ /var/tmp/diff_new_pack.cLEYQs/_new 2017-10-24 22:23:27.128205697 +0200 @@ -17,14 +17,14 @@ Name: obconf-qt -Version: 0.11.1 +Version: 0.12.0 Release: 0 Summary: OpenBox window manager configuration tool License: LGPL-2.1+ and GPL-2.0+ Group: System/GUI/LXQt Url: http://www.lxqt.org -Source0: https://downloads.lxqt.org/obconf-qt/%{version}/%{name}-%{version}.tar.xz -Source1: https://downloads.lxqt.org/obconf-qt/%{version}/%{name}-%{version}.tar.xz.asc +Source: https://github.com/lxde/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz +Source1: https://github.com/lxde/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz.asc Source2: %{name}.keyring BuildRequires: cmake >= 2.8.11 BuildRequires: gcc-c++ ++++++ obconf-qt-0.11.1.tar.xz -> obconf-qt-0.12.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/obconf-qt-0.11.1/AUTHORS new/obconf-qt-0.12.0/AUTHORS --- old/obconf-qt-0.11.1/AUTHORS 2016-12-11 10:39:41.000000000 +0100 +++ new/obconf-qt-0.12.0/AUTHORS 2017-09-24 12:49:48.000000000 +0200 @@ -1,5 +1,5 @@ Copyright: - Copyright (c) 2012-2016 LXQt team + Copyright (c) 2012-2017 LXQt team This program is based on source code from the ObConf project <http://openbox.org/wiki/ObConf:About> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/obconf-qt-0.11.1/CHANGELOG new/obconf-qt-0.12.0/CHANGELOG --- old/obconf-qt-0.11.1/CHANGELOG 2016-12-11 10:39:41.000000000 +0100 +++ new/obconf-qt-0.12.0/CHANGELOG 2017-09-24 12:49:48.000000000 +0200 @@ -1,7 +1,24 @@ -obconf-qt-0.11.1 / 2016-12-11 +obconf-qt-0.12.0 / 2017-09-24 ============================= + * Bump version to 0.12.0 + * Don't export github templates + * Added Lithuanian language + * liblxqt dont make sense here + * Copied issue template + * Drops Qt5Core_VERSION_STRING + * set Qt::AA_UseHighDpiPixmaps to true + * Added default CMAKE_BUILD_TYPE and versioning (#29) + * added Polish translation + * Add obconf-qt_ca.desktop (Catalan) + * Update AUTHORS + * Added *da.desktop + +0.11.1 / 2016-12-11 +=================== + + * Release 0.11.1: Update changelog * Create obconf-qt_fr.desktop * Use the LXQtCompilerSettings * Use lxqt-build-tools translation modules diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/obconf-qt-0.11.1/CMakeLists.txt new/obconf-qt-0.12.0/CMakeLists.txt --- old/obconf-qt-0.11.1/CMakeLists.txt 2016-12-11 10:39:41.000000000 +0100 +++ new/obconf-qt-0.12.0/CMakeLists.txt 2017-09-24 12:49:48.000000000 +0200 @@ -23,7 +23,7 @@ find_package(Qt5Widgets REQUIRED) find_package(Qt5X11Extras REQUIRED) find_package(Qt5LinguistTools REQUIRED QUIET) - message(STATUS "Building with Qt${Qt5Core_VERSION_STRING}") + message(STATUS "Building with Qt${Qt5Core_VERSION}") endif() find_package(lxqt-build-tools ${LXQTBT_MINIMUM_VERSION} REQUIRED) @@ -38,6 +38,16 @@ obt-3.5 ) +if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE Release) +endif() + +set(OBCONFQT_MAJOR_VERSION 0) +set(OBCONFQT_MINOR_VERSION 12) +set(OBCONFQT_PATCH_VERSION 0) +set(OBCONFQT_VERSION ${OBCONFQT_MAJOR_VERSION}.${OBCONFQT_MINOR_VERSION}.${OBCONFQT_PATCH_VERSION}) +add_definitions("-DOBCONFQT_VERSION=\"${OBCONFQT_VERSION}\"") + include(LXQtTranslateTs) include(LXQtTranslateDesktop) include(LXQtCompilerSettings) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/obconf-qt-0.11.1/src/obconf-qt.cpp new/obconf-qt-0.12.0/src/obconf-qt.cpp --- old/obconf-qt-0.11.1/src/obconf-qt.cpp 2016-12-11 10:39:41.000000000 +0100 +++ new/obconf-qt-0.12.0/src/obconf-qt.cpp 2017-09-24 12:49:48.000000000 +0200 @@ -1,20 +1,20 @@ /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- - * + * * main.c for ObConf, the configuration tool for Openbox * Copyright (c) 2003-2008 Dana Jansens * Copyright (c) 2003 Tim Riley * Copyright (C) 2013 Hong Jen Yee (PCMan) <[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. - * + * * See the COPYING file for a copy of the GNU General Public License. */ @@ -180,11 +180,15 @@ int main(int argc, char** argv) { QApplication app(argc, argv); + app.setAttribute(Qt::AA_UseHighDpiPixmaps, true); + // load translations QTranslator qtTranslator, translator; + // install the translations built-into Qt itself qtTranslator.load("qt_" + QLocale::system().name(), QLibraryInfo::location(QLibraryInfo::TranslationsPath)); app.installTranslator(&qtTranslator); + // install our own tranlations translator.load("obconf-qt_" + QLocale::system().name(), PACKAGE_DATA_DIR "/translations"); app.installTranslator(&translator); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/obconf-qt-0.11.1/src/translations/obconf-qt_ca.desktop new/obconf-qt-0.12.0/src/translations/obconf-qt_ca.desktop --- old/obconf-qt-0.11.1/src/translations/obconf-qt_ca.desktop 1970-01-01 01:00:00.000000000 +0100 +++ new/obconf-qt-0.12.0/src/translations/obconf-qt_ca.desktop 2017-09-24 12:49:48.000000000 +0200 @@ -0,0 +1,3 @@ +Name[ca]=Ajusts d'Openbox +GenericName[ca]=Ajusts del gestor de finestres +Comment[ca]=Configureu el gestor de finestres Openbox diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/obconf-qt-0.11.1/src/translations/obconf-qt_da.desktop new/obconf-qt-0.12.0/src/translations/obconf-qt_da.desktop --- old/obconf-qt-0.11.1/src/translations/obconf-qt_da.desktop 1970-01-01 01:00:00.000000000 +0100 +++ new/obconf-qt-0.12.0/src/translations/obconf-qt_da.desktop 2017-09-24 12:49:48.000000000 +0200 @@ -0,0 +1,3 @@ +Name[da]=Openbox-indstillinger +GenericName[da]=Indstillinger for Window Manager +Comment[da]=Konfigurér window manageren Openbox diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/obconf-qt-0.11.1/src/translations/obconf-qt_lt.desktop new/obconf-qt-0.12.0/src/translations/obconf-qt_lt.desktop --- old/obconf-qt-0.11.1/src/translations/obconf-qt_lt.desktop 1970-01-01 01:00:00.000000000 +0100 +++ new/obconf-qt-0.12.0/src/translations/obconf-qt_lt.desktop 2017-09-24 12:49:48.000000000 +0200 @@ -0,0 +1,3 @@ +Name[lt]=Openbox nustatymai +GenericName[lt]=Langų tvarkytuvės nustatymai +Comment[lt]=Konfigūruoti Openbox langų tvarkytuvę diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/obconf-qt-0.11.1/src/translations/obconf-qt_pl.desktop new/obconf-qt-0.12.0/src/translations/obconf-qt_pl.desktop --- old/obconf-qt-0.11.1/src/translations/obconf-qt_pl.desktop 1970-01-01 01:00:00.000000000 +0100 +++ new/obconf-qt-0.12.0/src/translations/obconf-qt_pl.desktop 2017-09-24 12:49:48.000000000 +0200 @@ -0,0 +1,3 @@ +Name[pl]=Edytor konfiguracji OpenBox +GenericName[pl]=Ustawienia menedżera okien +Comment[pl]=Edytor konfiguracji menedżera okien OpenBox (wersja Qt)
