Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package qtermwidget-qt5 for openSUSE:Factory
checked in at 2023-04-20 15:13:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qtermwidget-qt5 (Old)
and /work/SRC/openSUSE:Factory/.qtermwidget-qt5.new.2023 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qtermwidget-qt5"
Thu Apr 20 15:13:56 2023 rev:13 rq:1079668 version:1.3.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/qtermwidget-qt5/qtermwidget-qt5.changes
2022-11-06 12:43:11.873738502 +0100
+++
/work/SRC/openSUSE:Factory/.qtermwidget-qt5.new.2023/qtermwidget-qt5.changes
2023-04-20 15:14:44.642031233 +0200
@@ -1,0 +2,9 @@
+Sat Apr 15 18:18:02 UTC 2023 - Shawn Dunn <[email protected]>
+
+- Update to 1.3.0:
+ * A problem is fixed in switching the color scheme between dark
+ and light.
+ * Prevented a crash on splitting the terminal under
+ `kwin_wayland`
+
+-------------------------------------------------------------------
Old:
----
qtermwidget-1.2.0.tar.xz
qtermwidget-1.2.0.tar.xz.asc
New:
----
qtermwidget-1.3.0.tar.xz
qtermwidget-1.3.0.tar.xz.asc
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ qtermwidget-qt5.spec ++++++
--- /var/tmp/diff_new_pack.qUVd9f/_old 2023-04-20 15:14:45.238033966 +0200
+++ /var/tmp/diff_new_pack.qUVd9f/_new 2023-04-20 15:14:45.246034003 +0200
@@ -1,7 +1,7 @@
#
# spec file for package qtermwidget-qt5
#
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -27,7 +27,7 @@
code dealing with user interface parts and session management was \
removed.
Name: qtermwidget-qt5
-Version: 1.2.0
+Version: 1.3.0
Release: 0
Summary: %{pack_summ}
License: GPL-2.0-or-later
@@ -37,7 +37,7 @@
Source1:
https://github.com/lxqt/qtermwidget/releases/download/%{version}/qtermwidget-%{version}.tar.xz.asc
Source2: %{name}.keyring
BuildRequires: cmake >= 3.1.9
-BuildRequires: lxqt-build-tools-devel >= 0.11.0
+BuildRequires: lxqt-build-tools-devel >= 0.13.0
BuildRequires: pkgconfig
BuildRequires: utf8proc-devel
BuildRequires: cmake(Qt5LinguistTools)
++++++ qtermwidget-1.2.0.tar.xz -> qtermwidget-1.3.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtermwidget-1.2.0/CHANGELOG
new/qtermwidget-1.3.0/CHANGELOG
--- old/qtermwidget-1.2.0/CHANGELOG 2022-11-05 09:35:28.000000000 +0100
+++ new/qtermwidget-1.3.0/CHANGELOG 2023-04-15 18:13:48.000000000 +0200
@@ -1,3 +1,8 @@
+qtermwidget-1.3.0 / 2023-04-15
+===============================
+ * Fixed a problem in switching the color scheme between dark and light.
+ * Prevented a crash on splitting the terminal under `kwin_wayland`
+
qtermwidget-1.2.0 / 2022-11-05
===============================
* Enabled Bidi rendering by default.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtermwidget-1.2.0/CMakeLists.txt
new/qtermwidget-1.3.0/CMakeLists.txt
--- old/qtermwidget-1.2.0/CMakeLists.txt 2022-11-05 09:35:28.000000000
+0100
+++ new/qtermwidget-1.3.0/CMakeLists.txt 2023-04-15 18:13:48.000000000
+0200
@@ -22,7 +22,7 @@
# just change version for releases
# keep this in sync with the version in pyqt/pyproject.toml
set(QTERMWIDGET_VERSION_MAJOR "1")
-set(QTERMWIDGET_VERSION_MINOR "2")
+set(QTERMWIDGET_VERSION_MINOR "3")
set(QTERMWIDGET_VERSION_PATCH "0")
set(QTERMWIDGET_VERSION
"${QTERMWIDGET_VERSION_MAJOR}.${QTERMWIDGET_VERSION_MINOR}.${QTERMWIDGET_VERSION_PATCH}")
@@ -33,7 +33,7 @@
# Minimum Versions
set(QT_MINIMUM_VERSION "5.15.0")
-set(LXQTBT_MINIMUM_VERSION "0.12.0")
+set(LXQTBT_MINIMUM_VERSION "0.13.0")
find_package(Qt5Widgets "${QT_MINIMUM_VERSION}" REQUIRED)
find_package(Qt5LinguistTools "${QT_MINIMUM_VERSION}" REQUIRED)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtermwidget-1.2.0/lib/TerminalDisplay.cpp
new/qtermwidget-1.3.0/lib/TerminalDisplay.cpp
--- old/qtermwidget-1.2.0/lib/TerminalDisplay.cpp 2022-11-05
09:35:28.000000000 +0100
+++ new/qtermwidget-1.3.0/lib/TerminalDisplay.cpp 2023-04-15
18:13:48.000000000 +0200
@@ -2920,7 +2920,7 @@
QTextStream stream(&lineText);
PlainTextDecoder decoder;
decoder.begin(&stream);
-
decoder.decodeLine(&_image[loc(0,cursorPos.y())],_usedColumns,_lineProperties[cursorPos.y()]);
+
decoder.decodeLine(&_image[loc(0,cursorPos.y())],_usedColumns,0);
decoder.end();
return lineText;
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtermwidget-1.2.0/lib/qtermwidget.cpp
new/qtermwidget-1.3.0/lib/qtermwidget.cpp
--- old/qtermwidget-1.2.0/lib/qtermwidget.cpp 2022-11-05 09:35:28.000000000
+0100
+++ new/qtermwidget-1.3.0/lib/qtermwidget.cpp 2023-04-15 18:13:48.000000000
+0200
@@ -468,6 +468,7 @@
ColorEntry table[TABLE_COLORS];
cs->getColorTable(table);
m_impl->m_terminalDisplay->setColorTable(table);
+ m_impl->m_session->setDarkBackground(cs->hasDarkBackground());
}
QStringList QTermWidget::getAvailableColorSchemes()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtermwidget-1.2.0/lib/qtermwidget.json
new/qtermwidget-1.3.0/lib/qtermwidget.json
--- old/qtermwidget-1.2.0/lib/qtermwidget.json 2022-11-05 09:35:28.000000000
+0100
+++ new/qtermwidget-1.3.0/lib/qtermwidget.json 2023-04-15 18:13:48.000000000
+0200
@@ -1,6 +1,6 @@
{
"Name" : "QTermWidget",
- "Version" : "1.2.0",
+ "Version" : "1.3.0",
"Vendor" : "LXQt",
"Copyright" : "(C) 2022 LXQt",
"Url" : "https://github.com/lxqt/qtermwidget",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtermwidget-1.2.0/lib/translations/qtermwidget_es.ts
new/qtermwidget-1.3.0/lib/translations/qtermwidget_es.ts
--- old/qtermwidget-1.2.0/lib/translations/qtermwidget_es.ts 2022-11-05
09:35:28.000000000 +0100
+++ new/qtermwidget-1.3.0/lib/translations/qtermwidget_es.ts 2023-04-15
18:13:48.000000000 +0200
@@ -39,7 +39,7 @@
<message>
<location filename="../TerminalDisplay.cpp" line="2789"/>
<source>Paste multiline text</source>
- <translation>Pegar un texto de varias lÃneas</translation>
+ <translation>Pegar texto con varias lÃneas</translation>
</message>
<message>
<location filename="../TerminalDisplay.cpp" line="2790"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtermwidget-1.2.0/lib/translations/qtermwidget_oc.ts
new/qtermwidget-1.3.0/lib/translations/qtermwidget_oc.ts
--- old/qtermwidget-1.2.0/lib/translations/qtermwidget_oc.ts 1970-01-01
01:00:00.000000000 +0100
+++ new/qtermwidget-1.3.0/lib/translations/qtermwidget_oc.ts 2023-04-15
18:13:48.000000000 +0200
@@ -0,0 +1,166 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.1" language="oc">
+<context>
+ <name>Konsole::Session</name>
+ <message>
+ <location filename="../Session.cpp" line="454"/>
+ <source>Bell in session '%1'</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../Session.cpp" line="606"/>
+ <source>Session '%1' exited with status %2.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../Session.cpp" line="608"/>
+ <source>Session '%1' crashed.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../Session.cpp" line="613"/>
+ <source>Session '%1' exited unexpectedly.</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>Konsole::TerminalDisplay</name>
+ <message>
+ <location filename="../TerminalDisplay.cpp" line="1277"/>
+ <source>Size: XXX x XXX</source>
+ <translation>Talha : XXX x XXX</translation>
+ </message>
+ <message>
+ <location filename="../TerminalDisplay.cpp" line="1289"/>
+ <source>Size: %1 x %2</source>
+ <translation>Talha : %1 x %2</translation>
+ </message>
+ <message>
+ <location filename="../TerminalDisplay.cpp" line="2789"/>
+ <source>Paste multiline text</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../TerminalDisplay.cpp" line="2790"/>
+ <source>Are you sure you want to paste this text?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../TerminalDisplay.cpp" line="3260"/>
+ <source><qt>Output has been <a
href="http://en.wikipedia.org/wiki/Flow_control">suspended</a>
by pressing Ctrl+S. Press <b>Ctrl+Q</b> to
resume.</qt></source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>Konsole::Vt102Emulation</name>
+ <message>
+ <location filename="../Vt102Emulation.cpp" line="1121"/>
+ <source>No keyboard translator available. The information needed to
convert key presses into characters to send to the terminal is missing.</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>QMessageBox</name>
+ <message>
+ <location filename="../TerminalDisplay.cpp" line="2796"/>
+ <source>Show Details...</source>
+ <translation>Veire los detalhs...</translation>
+ </message>
+</context>
+<context>
+ <name>QObject</name>
+ <message>
+ <location filename="../ColorScheme.cpp" line="275"/>
+ <location filename="../ColorScheme.cpp" line="290"/>
+ <source>Un-named Color Scheme</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../ColorScheme.cpp" line="461"/>
+ <source>Accessible Color Scheme</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../Filter.cpp" line="515"/>
+ <source>Open Link</source>
+ <translation>Dobrir lo ligam</translation>
+ </message>
+ <message>
+ <location filename="../Filter.cpp" line="516"/>
+ <source>Copy Link Address</source>
+ <translation>Copiar lâadreça del ligam</translation>
+ </message>
+ <message>
+ <location filename="../Filter.cpp" line="520"/>
+ <source>Send Email To...</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../Filter.cpp" line="521"/>
+ <source>Copy Email Address</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>QTermWidget</name>
+ <message>
+ <location filename="../qtermwidget.cpp" line="464"/>
+ <source>Color Scheme Error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../qtermwidget.cpp" line="465"/>
+ <source>Cannot load color scheme: %1</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>SearchBar</name>
+ <message>
+ <location filename="../SearchBar.cpp" line="40"/>
+ <source>Match case</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../SearchBar.cpp" line="46"/>
+ <source>Regular expression</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../SearchBar.cpp" line="50"/>
+ <source>Highlight all matches</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../SearchBar.ui" line="14"/>
+ <source>SearchBar</source>
+ <translation>Barra de recèrca</translation>
+ </message>
+ <message>
+ <location filename="../SearchBar.ui" line="20"/>
+ <source>X</source>
+ <translation>X</translation>
+ </message>
+ <message>
+ <location filename="../SearchBar.ui" line="32"/>
+ <source>Find:</source>
+ <translation>Cercar :</translation>
+ </message>
+ <message>
+ <location filename="../SearchBar.ui" line="42"/>
+ <source><</source>
+ <translation><</translation>
+ </message>
+ <message>
+ <location filename="../SearchBar.ui" line="54"/>
+ <source>></source>
+ <translation>></translation>
+ </message>
+ <message>
+ <location filename="../SearchBar.ui" line="66"/>
+ <source>...</source>
+ <translation>...</translation>
+ </message>
+</context>
+</TS>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/qtermwidget-1.2.0/pyqt/pyproject.toml
new/qtermwidget-1.3.0/pyqt/pyproject.toml
--- old/qtermwidget-1.2.0/pyqt/pyproject.toml 2022-11-05 09:35:28.000000000
+0100
+++ new/qtermwidget-1.3.0/pyqt/pyproject.toml 2023-04-15 18:13:48.000000000
+0200
@@ -6,5 +6,5 @@
[tool.sip.metadata]
name = "QTermWidget"
-version = "1.2.0"
+version = "1.3.0"
requires-dist = ["PyQt5"]