Skip to content

Commit e7cec05

Browse files
committed
update the release notes
1 parent 3aba44c commit e7cec05

File tree

8 files changed

+27
-7
lines changed

8 files changed

+27
-7
lines changed

docs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

33
All notable changes to this project will be documented in this file.
4+
## [17.1] 2025-03-26
5+
- [keycloak authentication fails](https://github.com/Xpra-org/xpra-html5/commit/de64e1ec5d380c5d2c81d0c2478ad01589eab06b)
6+
- [`xor` authentication errors over non-secure connections](https://github.com/Xpra-org/xpra-html5/commit/3aba44cff7bdf82412b700896e9dc3a62169d1fb)
7+
- [file downloads fail](https://github.com/Xpra-org/xpra-html5/commit/c006a23b4e76420c9e9d92f36aba28cea68c6454)
8+
- [pointer event handler error](https://github.com/Xpra-org/xpra-html5/commit/4af417c67823b2f1215522af4e16c94d79bc4933)
9+
410
## [17.0] 2025-02-04
511
- Build and packaging:
612
- [nodejs-less formatting script](https://github.com/Xpra-org/xpra-html5/pull/332)

html5/connect.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<form class="form-signin" action="./index.html">
3838
<img src="icons/xpra-logo.png" alt="xpra logo" />
3939
<h2 class="form-signin-heading">Xpra HTML5 Client</h2>
40-
<h5>Version 17</h5>
40+
<h5>Version 17.1</h5>
4141

4242
<div id="alert-disconnect" class="alert alert-info" role="alert" style="display: none">
4343
<p>You were disconnected for the following reason:</p>

html5/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@
190190

191191
<div id="about">
192192
<h2>Xpra HTML5 Client</h2>
193-
<h3>Version 17</h3>
193+
<h3>Version 17.1</h3>
194194
<span>
195195
Copyright (c) 2013-2024 Antoine Martin &lt;[email protected]&gt;
196196
<br />

html5/js/Utilities.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
*/
99

1010
const Utilities = {
11-
VERSION: "17",
12-
REVISION: 0,
11+
VERSION : "17.1",
12+
REVISION : 0,
1313
LOCAL_MODIFICATIONS: 0,
1414
BRANCH: "v17.x",
1515

packaging/debian/changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
xpra-html5 (17.1-r0-1) UNRELEASED; urgency=low
2+
* keycloak authentication fails
3+
* `xor` authentication errors over non-secure connections
4+
* file downloads fail
5+
* pointer event handler error
6+
7+
-- Antoine Martin [email protected] Wed, 26 Mar 2025 21:58:20 +0700 +700
8+
19
xpra-html5 (17-r0-1) UNRELEASED; urgency=low
210
* Build and packaging:
311
- nodejs-less formatting script

packaging/debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: xpra-html5
2-
Version: 17-r0-1
2+
Version: 17.1-r0-1
33
Source: xpra-html5
44
Maintainer: Antoine Martin <[email protected]>
55
Standards-Version: 3.9.3

packaging/rpm/xpra-html5.spec

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any
44
# later version. See the file COPYING for details.
55

6-
%define version 17
6+
%define version 17.1
77
%define release 1.r0%{?dist}
88
%define minifier uglifyjs
99
%define python python3
@@ -78,6 +78,12 @@ rm -rf $RPM_BUILD_ROOT
7878
%endif
7979

8080
%changelog
81+
* Wed Mar 26 2025 Antoine Martin <[email protected]> 17.1-0-1
82+
- keycloak authentication fails
83+
- `xor` authentication errors over non-secure connections
84+
- file downloads fail
85+
- pointer event handler error
86+
8187
* Tue Feb 04 2025 Antoine Martin <[email protected]> 17-0-1
8288
- Build and packaging:
8389
nodejs-less formatting script

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from typing import AnyStr
1414
from subprocess import Popen, PIPE
1515

16-
VERSION = "17"
16+
VERSION = "17.1"
1717
AUTHOR = "Antoine Martin"
1818
AUTHOR_EMAIL = "[email protected]"
1919

0 commit comments

Comments
 (0)