diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 380b2156..b6c82550 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -8,9 +8,14 @@ For a detailed view of what has changed, refer to the {uri-repo}/commits/master[ == - +=== Enhancements + +* Player GUI displays playback time and recording duration ({uri-issue}467[#467]) + === Bug fixes * Clipboard file transfers compatibility with non-mstsc clients ({uri-issue}464[#464]) +* Some replay files when converted would be cut short ({uri-issue}466[#466]) == v2.0.0 - 2023-12-22 diff --git a/pyrdp/player/Replay.py b/pyrdp/player/Replay.py index c13d6ad8..2ba8fcc9 100644 --- a/pyrdp/player/Replay.py +++ b/pyrdp/player/Replay.py @@ -1,6 +1,6 @@ # # This file is part of the PyRDP project. -# Copyright (C) 2019-2021 GoSecure Inc. +# Copyright (C) 2019-2024 GoSecure Inc. # Licensed under the GPLv3 or later. # diff --git a/pyrdp/player/ReplayBar.py b/pyrdp/player/ReplayBar.py index a52c3a95..3255fea4 100644 --- a/pyrdp/player/ReplayBar.py +++ b/pyrdp/player/ReplayBar.py @@ -1,6 +1,6 @@ # # This file is part of the PyRDP project. -# Copyright (C) 2018-2023 GoSecure Inc. +# Copyright (C) 2018-2024 GoSecure Inc. # Licensed under the GPLv3 or later. # import logging diff --git a/pyrdp/player/ReplayTab.py b/pyrdp/player/ReplayTab.py index 9ed75b8a..0522c600 100644 --- a/pyrdp/player/ReplayTab.py +++ b/pyrdp/player/ReplayTab.py @@ -1,6 +1,6 @@ # # This file is part of the PyRDP project. -# Copyright (C) 2019-2023 GoSecure Inc. +# Copyright (C) 2019-2024 GoSecure Inc. # Licensed under the GPLv3 or later. # from PySide6.QtCore import Qt