Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package linphoneqt for openSUSE:Factory checked in at 2022-05-15 19:00:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/linphoneqt (Old) and /work/SRC/openSUSE:Factory/.linphoneqt.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "linphoneqt" Sun May 15 19:00:22 2022 rev:7 rq:977253 version:4.4.1 Changes: -------- --- /work/SRC/openSUSE:Factory/linphoneqt/linphoneqt.changes 2022-02-02 22:45:02.242058171 +0100 +++ /work/SRC/openSUSE:Factory/.linphoneqt.new.1538/linphoneqt.changes 2022-05-15 19:00:24.294408960 +0200 @@ -1,0 +2,34 @@ +Sat May 7 15:05:16 UTC 2022 - Giacomo Comes <[email protected]> + +- Update to version 4.4.1: + * Messages features : Reply, forward (to contact, to a SIP address or to a timeline), + Vocal record and play, multi contents, preview. + * Add a feedback on fetching remote provisioning when it failed. + * Option to enable message notifications. + * CPIM on basic chat rooms. + * Device name can be changed from settings. + * New event on new messages in chat and a shortcut to go to the end of chat if last + message is not shown. + * Shortcut in Reply to message's origin. + * Allow redirected downloads (bzip2/OpenH264) + * Auto-download message files, editable in settings (10Mb as default) + * Simplify filtering timelines with 2 modes (minimal or exhaustive) and on 3 kind of + search : security level, simple/group chats, ephemerals. + * Sort timelines by taken account of unread events in chat rooms. + * Fix systemTrayIcon that could be cloned on each restart. + * Fix thumbnails display in notification. + * Fix errors on Action-Buttons on restart. + * Enable G729 on public builds. + * Take account of return key on Numpad. + * Huge messages are better shown and with less flickering. + * High CPU consumption on idle state. + * Hide deleted/terminated chat rooms. + * Adapt UserAgent with device name. + * Video freeze on network change. + * Support OpenGL 4.1 and GLSL 4.10. + * Audio errors in settings when using different audio format between input and output. + * Set default log size to 50MB + * Crash on the smart search bar. +- revert license tag change + +------------------------------------------------------------------- Old: ---- linphone-desktop-4.3.2.tar.bz2 New: ---- linphone-desktop-4.4.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ linphoneqt.spec ++++++ --- /var/tmp/diff_new_pack.XdxR2g/_old 2022-05-15 19:00:24.866409639 +0200 +++ /var/tmp/diff_new_pack.XdxR2g/_new 2022-05-15 19:00:24.870409643 +0200 @@ -18,10 +18,10 @@ %define _name linphone Name: linphoneqt -Version: 4.3.2 +Version: 4.4.1 Release: 0 Summary: Qt interface for Linphone -License: GPL-3.0-only +License: GPL-3.0-or-later Group: Productivity/Telephony/SIP/Clients URL: https://linphone.org/technical-corner/linphone Source: https://gitlab.linphone.org/BC/public/linphone-desktop/-/archive/%{version}/%{_name}-desktop-%{version}.tar.bz2 @@ -85,10 +85,10 @@ echo "project(linphoneqt VERSION %{version})" > linphone-app/linphoneqt_version.cmake %build -sed -i '/^add_custom_command/s@${CMAKE_INSTALL_PREFIX}/include/@%{buildroot}%{_includedir}/@;/^add_custom_command/s@${CMAKE_INSTALL_PREFIX}/lib/@%{buildroot}%{_libdir}/@' linphone-app/CMakeLists.txt -#fix install error for 4.3.2 -if [[ %version = 4.3.2 ]]; then - sed -i '/install(DIRECTORY.*linphone/d' linphone-app/cmake_builder/linphone_package/CMakeLists.txt +if [[ %version = 4.4.? ]]; then + sed -i '/^add_custom_command/s@${CMAKE_INSTALL_PREFIX}/include/@%{buildroot}%{_includedir}/@;/^add_custom_command/s@${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/@%{buildroot}%{_libdir}/@' linphone-app/CMakeLists.txt + sed -i '/\/ui/s@${qml_dir}@${CMAKE_CURRENT_SOURCE_DIR}/../&@' linphone-app/cmake_builder/linphone_package/CMakeLists.txt + mkdir -p build/linphone-sdk/desktop/share/{,sounds}/linphone fi %cmake \ -DCMAKE_CXX_FLAGS="-fpermissive" \ ++++++ linphone-desktop-4.3.2.tar.bz2 -> linphone-desktop-4.4.1.tar.bz2 ++++++ ++++ 32997 lines of diff (skipped) ++++++ linphoneqt-fix-no-git.patch ++++++ --- /var/tmp/diff_new_pack.XdxR2g/_old 2022-05-15 19:00:26.378411433 +0200 +++ /var/tmp/diff_new_pack.XdxR2g/_new 2022-05-15 19:00:26.382411438 +0200 @@ -11,7 +11,7 @@ --- a/linphone-app/src/app/AppController.cpp +++ b/linphone-app/src/app/AppController.cpp @@ -26,6 +26,10 @@ - #include "config.h" + #include "gitversion.h" +#ifdef LINPHONE_QT_GIT_VERSION @@ -22,14 +22,14 @@ #include "components/other/desktop-tools/DesktopTools.hpp" @@ -52,7 +56,7 @@ AppController::AppController (int &argc, - // The EXECUTABLE_NAME will be used in qt standard paths. It's our goal. - QCoreApplication::setApplicationName(EXECUTABLE_NAME); - QApplication::setOrganizationDomain(EXECUTABLE_NAME); -- QCoreApplication::setApplicationVersion(LINPHONE_QT_GIT_VERSION); -+ QCoreApplication::setApplicationVersion(APPLICATION_VERSION); - - mApp = new App(argc, argv); - + // The EXECUTABLE_NAME will be used in qt standard paths. It's our goal. + QCoreApplication::setApplicationName(EXECUTABLE_NAME); + QApplication::setOrganizationDomain(EXECUTABLE_NAME); +- QCoreApplication::setApplicationVersion(LINPHONE_QT_GIT_VERSION); ++ QCoreApplication::setApplicationVersion(APPLICATION_VERSION); + #ifdef ENABLE_APP_WEBVIEW + #if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) + mApp = new App(argc, argv); --- a/linphone-app/src/config.h.cmake +++ b/linphone-app/src/config.h.cmake @@ -23,6 +23,7 @@
