From 9ba6c51997535efa403c7c2ef319e85f72afd080 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 24 Sep 2024 16:00:36 +0700 Subject: [PATCH] version bump + update the release notes --- docs/CHANGELOG.md | 3 +++ html5/connect.html | 2 +- html5/index.html | 2 +- html5/js/Utilities.js | 2 +- packaging/debian/changelog | 5 +++++ packaging/debian/control | 2 +- packaging/rpm/xpra-html5.spec | 5 ++++- setup.py | 2 +- 8 files changed, 17 insertions(+), 6 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index eba5e047..bdb27768 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All notable changes to this project will be documented in this file. +## [16.1] 2024-09-24 +- [decode worker failures with some inlined packets](https://github.com/Xpra-org/xpra-html5/commit/0ce5a899ed22bbec8c9219e10defa8c8764a0a3d) + ## [16.0] 2024-09-09 - [retry WebSocket connection](https://github.com/Xpra-org/xpra-html5/commit/8614719f724b06ce99a9fb1f3093464274ad5d25) - [ping packets not sent](https://github.com/Xpra-org/xpra-html5/commit/4f148c36a363b4cb2b0fe3fb2daa59ebe8568b7d) diff --git a/html5/connect.html b/html5/connect.html index a8466a87..2088a133 100644 --- a/html5/connect.html +++ b/html5/connect.html @@ -41,7 +41,7 @@
xpra logo -
Version 16
+
Version 16.1

Xpra HTML5 Client

-

Version 16

+

Version 16.1

Copyright (c) 2013-2024 Antoine Martin <antoine@xpra.org>
diff --git a/html5/js/Utilities.js b/html5/js/Utilities.js index f754fb81..0ee9d6b6 100644 --- a/html5/js/Utilities.js +++ b/html5/js/Utilities.js @@ -8,7 +8,7 @@ */ const Utilities = { - VERSION : "16", + VERSION : "16.1", REVISION : 0, LOCAL_MODIFICATIONS: 0, BRANCH: "v16.x", diff --git a/packaging/debian/changelog b/packaging/debian/changelog index e893901a..47f76f41 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,8 @@ +xpra-html5 (16.1-r0-1) UNRELEASED; urgency=low + * decode worker failures with some inlined packets + + -- Antoine Martin antoine@xpra.org Tue, 24 Sep 2024 15:59:29 +0700 +700 + xpra-html5 (16-r0-1) UNRELEASED; urgency=low * re-connection fixes: - hangs diff --git a/packaging/debian/control b/packaging/debian/control index 1d5a0653..32234372 100644 --- a/packaging/debian/control +++ b/packaging/debian/control @@ -1,5 +1,5 @@ Package: xpra-html5 -Version: 16-r0-1 +Version: 16.1-r0-1 Source: xpra-html5 Maintainer: Antoine Martin Standards-Version: 3.9.3 diff --git a/packaging/rpm/xpra-html5.spec b/packaging/rpm/xpra-html5.spec index 55bfb599..0d15a4f9 100644 --- a/packaging/rpm/xpra-html5.spec +++ b/packaging/rpm/xpra-html5.spec @@ -3,7 +3,7 @@ # Xpra is released under the terms of the GNU GPL v2, or, at your option, any # later version. See the file COPYING for details. -%define version 16 +%define version 16.1 %define release 1.r0%{?dist} %define minifier uglifyjs %define python python3 @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Tue Sep 24 2024 Antoine Martin 16.1-0-1 +- decode worker failures with some inlined packets + * Mon Sep 09 2024 Antoine Martin 16-0-1 - re-connection fixes: hangs diff --git a/setup.py b/setup.py index 84ade8cb..022e7110 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ from typing import AnyStr from subprocess import Popen, PIPE -VERSION = "16" +VERSION = "16.1" AUTHOR = "Antoine Martin" AUTHOR_EMAIL = "antoine@xpra.org"