- Update to 0.16.0:

* Use qAsConst.
  * Don't search application dir for keyboard and scheme data.
  * Use Q_EMIT to call signals, instead of the emit keyword.
  * Dropped the deprecated class QLinkedList.
  * Don't use 0/nullptr to initialize QFlags.
  * Fixed ColorEntry copy operator.
  * Disabled the use of copy constructors and assignment operators.
  * Check for successful ioctl() calls by testing that the call
    did not return -1.
  * Fix find_package() developer warning in cmake.
  * Use const references wherever possible.
  * Handle keyboard commands properly.

OBS-URL: https://build.opensuse.org/package/show/X11:LXQt/qtermwidget-qt5?expand=0&rev=13
This commit is contained in:
Michael Vetter 2020-11-04 13:55:27 +00:00 committed by Git OBS Bridge
parent edb6f57d83
commit e27bc90e82
6 changed files with 43 additions and 25 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6ecaf7c91be282c5e34937a853fe649729966c38d7e8f4cf54c0df94d85ac3ee
size 181284

View File

@ -1,17 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQJJBAABCAAzFiEEGd/fOleb1QnbtXLYvnkwB60i334FAl6jGQEVHHRzdWphbjIw
MDBAZ21haWwuY29tAAoJEL55MAetIt9+N4AP/RpQSLIb/GBlSXQtmqUD+B1Oa7zV
BLNYbtXhuG8QfJs+/TWp/KZKNMysqMY1lBMGa8IQD67uvq0ULPrC/TH1LCNUcA0l
r4KWx5zBts3r5iCsxXhGuPuiP00TaHyBSUgH8RmVd/GIAr7TBk7VL8tUq3dPfYNt
pTKUyKQ2RtD0d9EFNk7rVfvs4fTrmI6Np9Glx77xXEsKfeGZqMcn0gHQ4dZ80UUJ
FjeL/5AVxMCJEjoHl75KD9oK0dR4dDct8iY4Cp4umyv6iAvTXfF6NtBJ4012hwsC
UUD3IbLEiFVJRMMI7Rgbm0faVCiUBjHLOxcVfV4pSlVbffcfYiEPuSXS80o0RgLo
NWg0Q2jRm3b5eZWBAAIO8WjJFxUXg56b3Ay3E1SxfFfYiWQAfNlN7FsK4QU1/viJ
r/heu4rtLg8MnZ18/4rA2E2uXb2RViJ0U+gkiVqw6Ekyr2QsspwJDRxBJOIr+g6K
yyIpXoSyG2EVm9d0QhkI0UaP4AFjABr3RNAqqoBvHfo9ICzxn3vWqSS5iv2reszC
8GucWVgvdRoMOFB4Bycb4KuTmTLMXAdMF6fDNzxM46KTVh7XbJj5N6Co3LZOCQgx
tVNAABPss3GE0kdhZZrixAtc9ERqSqGb/OBLQqeEs6l6nL8BEkBd8iPtP0fmcTL4
JABcaKXe66VIS6zY
=45fN
-----END PGP SIGNATURE-----

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:739fcc97581d1fca441914d67808ea5eb2a051300488be319bb7afe30a01fdf2
size 182460

View File

@ -0,0 +1,17 @@
-----BEGIN PGP SIGNATURE-----
iQJJBAABCAAzFiEEGd/fOleb1QnbtXLYvnkwB60i334FAl+ir90VHHRzdWphbjIw
MDBAZ21haWwuY29tAAoJEL55MAetIt9+dLgQANA1Q7Xhd4dUbOVhehnBl8hdKsY9
IogNYdhdhqjvhVbPnynMslO8Nh1RpKAJn64/fNbPGvmX4a9WshhmgJQc4RXCwAQp
B5vOjYvPilvqukO8H477Yzbn3yAXtuFjZcwKo/O1rx7uDiWzE2J97BCHh7ywxTc1
6MLYXXwZSj+DGU9YXqkqw6yTr+03tfKWUI4XU0Yxu44Jw/9LDtmk9toiEAr6t/JL
c8kcowMXZDPfb3uxArnxLvg4xYtMs6FCn2abKr/YZGpMtmTNKYkG+7nxdFduSSxH
Y6PmumuiaSAEQuc/yEp8VRx+OyrT0mqCLLm8T2ouwMfsqylGy2nIXY78wNsFuDjq
34deS3t3mPAjJzhyhxqjh7GFP9IZTo6uT4Z6U0CLt8rzER9SlHW+43M+E9GOmPmr
KA43xVbrLmNAMsLaUDIh8/n0LfATCOW8xaO5PLkXY/j5kW69NvNWIP/o7V3501io
Qztp8Rz5csv5BZIlvzmQrccIGO05DFjeSSdlSzyrYiOLsSUkWD+DibaG2Thjeh9T
ahrCZykA1x9+zsVpi8fFb+ZS9r+qz3PevE9czfz/tvYH12r8IAw0ZN2et8mEzu8T
/s/TagNgqO7GCC8f5HFTpCqHNXVmo8a2FW5KMpcpkokW20tdxuwEc6TZ3lHxcplE
m3faFxNpr4CyHZ5Z
=sxuL
-----END PGP SIGNATURE-----

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Wed Nov 4 13:54:51 UTC 2020 - Michael Vetter <mvetter@suse.com>
- Update to 0.16.0:
* Use qAsConst.
* Don't search application dir for keyboard and scheme data.
* Use Q_EMIT to call signals, instead of the emit keyword.
* Dropped the deprecated class QLinkedList.
* Don't use 0/nullptr to initialize QFlags.
* Fixed ColorEntry copy operator.
* Disabled the use of copy constructors and assignment operators.
* Check for successful ioctl() calls by testing that the call
did not return -1.
* Fix find_package() developer warning in cmake.
* Use const references wherever possible.
* Handle keyboard commands properly.
-------------------------------------------------------------------
Mon Apr 27 11:28:43 UTC 2020 - Callum Farmer <callumjfarmer13@gmail.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package qtermwidget-qt5
#
# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@ -27,7 +27,7 @@ Konsole code was rewritten entirely with using Qt only, and all \
code dealing with user interface parts and session management was \
removed.
Name: qtermwidget-qt5
Version: 0.15.0
Version: 0.16.0
Release: 0
Summary: %{pack_summ}
License: GPL-2.0-or-later
@ -37,11 +37,11 @@ Source: https://github.com/lxqt/qtermwidget/releases/download/%{version}
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.7.0
BuildRequires: lxqt-build-tools-devel >= 0.8.0
BuildRequires: pkgconfig
BuildRequires: utf8proc-devel
BuildRequires: cmake(Qt5LinguistTools)
BuildRequires: pkgconfig(Qt5Widgets) >= 5.10
BuildRequires: pkgconfig(Qt5Widgets) >= 5.12
%description
%{pack_desc}