diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index dd566c59..94bcd153 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. +## [10.1] 2023-12-13 +- [missing start menu](https://github.com/Xpra-org/xpra-html5/commit/1378ff914aab1b382fb2ddd6471d4d33200bbd07) + ## [10.0] 2023-11-28 - update libraries: [jquery v3.7.1](https://github.com/Xpra-org/xpra-html5/commit/b7ca50be7b90de1657817f6685a0eb956fe99669), [jquery ui v1.13.2](https://github.com/Xpra-org/xpra-html5/commit/b503697e2420c070d2e6441e18e100e2586dade3) - disable offscreen rendering with [more buggy webkit based browsers](https://github.com/Xpra-org/xpra-html5/commit/e2e71ff9102033293d2c078c3ba6c7a9880b9a70), [Chrome without https](https://github.com/Xpra-org/xpra-html5/commit/52742e3f78fee5c098778f68094f7c58e603f22a) diff --git a/html5/connect.html b/html5/connect.html index 7a45bbfc..554f0eb6 100644 --- a/html5/connect.html +++ b/html5/connect.html @@ -44,7 +44,7 @@
xpra logo

Xpra HTML5 Client

-
Version 10 beta
+
Version 10.1

Xpra HTML5 Client

-

Version 10

+

Version 10.1

Copyright (c) 2013-2022 Antoine Martin <antoine@xpra.org>
diff --git a/packaging/debian/changelog b/packaging/debian/changelog index ba19cfe2..6180ac50 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,8 @@ +xpra-html5 (10.1-r10-1) UNRELEASED; urgency=low + * missing start menu + + -- Antoine Martin antoine@xpra.org Wed, 13 Dec 2023 15:07:29 +0700 +700 + xpra-html5 (10-r1482-1) UNRELEASED; urgency=low * update libraries: jquery v3.7.1, jquery ui v1.13.2 * disable offscreen rendering with more buggy webkit based browsers, Chrome diff --git a/packaging/debian/control b/packaging/debian/control index c4f87c64..16612fbf 100644 --- a/packaging/debian/control +++ b/packaging/debian/control @@ -1,5 +1,5 @@ Package: xpra-html5 -Version: 10-r1482-1 +Version: 10.1-r10-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 19dcae96..76602777 100644 --- a/packaging/rpm/xpra-html5.spec +++ b/packaging/rpm/xpra-html5.spec @@ -3,8 +3,8 @@ # 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 10 -%define release 1.r1482%{?dist} +%define version 10.1 +%define release 1.r10%{?dist} %define minifier uglifyjs %define python python3 @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Wed Dec 13 2023 Antoine Martin 10.1-10-1 +- missing start menu + * Tue Nov 28 2023 Antoine Martin 10-1482-1 - update libraries: jquery v3.7.1, jquery ui v1.13.2 - disable offscreen rendering with more buggy webkit based browsers, Chrome without https diff --git a/setup.py b/setup.py index 5335d7a4..43584817 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ import os.path from subprocess import Popen, PIPE -VERSION = "10" +VERSION = "10.1" AUTHOR = "Antoine Martin" AUTHOR_EMAIL = "antoine@xpra.org"