From f5ec002d056006081af992ebf1b6ffa28c2d8d9d Mon Sep 17 00:00:00 2001 From: totaam Date: Wed, 15 Nov 2023 22:05:06 +0700 Subject: [PATCH] bump version --- html5/index.html | 2 +- html5/js/Utilities.js | 4 ++-- packaging/debian/changelog | 5 +++++ packaging/debian/control | 2 +- packaging/rpm/xpra-html5.spec | 7 +++++-- setup.py | 2 +- 6 files changed, 15 insertions(+), 7 deletions(-) diff --git a/html5/index.html b/html5/index.html index 53d72f7c..eec80b92 100644 --- a/html5/index.html +++ b/html5/index.html @@ -173,7 +173,7 @@

Xpra HTML5 Client

-

Version 5.3

+

Version 5.4

Copyright (c) 2013-2022 Antoine Martin <antoine@xpra.org>
diff --git a/html5/js/Utilities.js b/html5/js/Utilities.js index a6569ab8..8841eb95 100644 --- a/html5/js/Utilities.js +++ b/html5/js/Utilities.js @@ -10,8 +10,8 @@ 'use strict'; const Utilities = { - VERSION : "5.3", - REVISION : 8, + VERSION : "5.4", + REVISION : 0, LOCAL_MODIFICATIONS : 0, BRANCH : "v5.x", diff --git a/packaging/debian/changelog b/packaging/debian/changelog index 2d5588c1..c8e7b839 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,8 @@ +xpra-html5 (5.4-r2-1) UNRELEASED; urgency=low + * TODO + + -- Antoine Martin antoine@xpra.org Wed, 15 Nov 2023 22:03:37 +0700 +700 + xpra-html5 (5.3-r0-1) UNRELEASED; urgency=low * some windows can't be restored * fix relative path to eye-icon diff --git a/packaging/debian/control b/packaging/debian/control index 987cdfbf..a05992be 100644 --- a/packaging/debian/control +++ b/packaging/debian/control @@ -1,5 +1,5 @@ Package: xpra-html5 -Version: 5.3-r0-1 +Version: 5.4-r0 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 0d85549e..6e21984c 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 5.3 -%define release 1.r2%{?dist} +%define version 5.4 +%define release 0%{?dist} %define minifier uglifyjs %define python python3 @@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Wed Nov 15 2023 Antoine Martin 5.4-1 +- update jquery and jquery-ui libraries + * Thu Jun 15 2023 Antoine Martin 5.3-0-1 - some windows can't be restored - fix relative path to eye-icon diff --git a/setup.py b/setup.py index 2405faab..b7ed2310 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ import os.path from subprocess import Popen, PIPE -VERSION = "5.3" +VERSION = "5.4" AUTHOR = "Antoine Martin" AUTHOR_EMAIL = "antoine@xpra.org"