Skip to content

Commit 1a2f0dc

Browse files
committed
update the release notes
1 parent c5c8cf6 commit 1a2f0dc

File tree

7 files changed

+18
-12
lines changed

7 files changed

+18
-12
lines changed

docs/CHANGELOG.md

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

33
All notable changes to this project will be documented in this file.
4+
## [15.0] 2024-07-31
5+
- [try harder to prevent password input with insecure settings](https://github.com/Xpra-org/xpra-html5/commit/5425c1a856badf46d9727cba585b8ab9c1a0e735) [but also allow password input with 'insecure' option](https://github.com/Xpra-org/xpra-html5/commit/bebca925ef289342d5af44ef203fb3498b31c9ed)
6+
- [honour preferred clipboard format](https://github.com/Xpra-org/xpra-html5/commit/c5c8cf6de46633cca45a2df8dce8d02f38e0ed16)
7+
48
## [14.0] 2024-07-02
59
- security fixes:
610
- [prevent XSS from server menu data](https://github.com/Xpra-org/xpra-html5/commit/dab26753459258258e2958d507f072595129838a) - low concern

html5/connect.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<form class="form-signin" action="./index.html">
4242
<img src="icons/xpra-logo.png" alt="xpra logo" />
4343
<h2 class="form-signin-heading">Xpra HTML5 Client</h2>
44-
<h5>Version 15 beta</h5>
44+
<h5>Version 15</h5>
4545

4646
<div
4747
id="alert-disconnect"

html5/index.html

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

258258
<div id="about">
259259
<h2>Xpra HTML5 Client</h2>
260-
<h3>Version 15 beta</h3>
260+
<h3>Version 15</h3>
261261
<span>
262262
Copyright (c) 2013-2024 Antoine Martin &lt;antoine@xpra.org&gt;
263263
<br />

html5/js/Utilities.js

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

1010
const Utilities = {
11-
VERSION: "15",
12-
REVISION : 1604,
11+
VERSION = "15",
12+
REVISION : 0,
1313
LOCAL_MODIFICATIONS: 0,
14-
BRANCH: "master",
14+
BRANCH: "v15.x",
1515

1616
exc: console_error_safe,
1717
error: console_error_safe,

packaging/debian/changelog

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
xpra-html5 (15-r1604-1) UNRELEASED; urgency=low
2-
* TODO
1+
xpra-html5 (15-r0-1) UNRELEASED; urgency=low
2+
* try harder to prevent password input with insecure settings, but also allow password input with 'insecure' option
3+
* honour preferred clipboard format
34

4-
-- Antoine Martin antoine@xpra.org Tue, 02 Jul 2024 23:44:00 +0700 +700
5+
-- Antoine Martin antoine@xpra.org Wed, 31 Jul 2024 20:16:19 +0700 +700
56

67
xpra-html5 (14-r1569-1) UNRELEASED; urgency=low
78
* security fixes:

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: 15-r1604-1
2+
Version: 15-r0-1
33
Source: xpra-html5
44
Maintainer: Antoine Martin <antoine@xpra.org>
55
Standards-Version: 3.9.3

packaging/rpm/xpra-html5.spec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# later version. See the file COPYING for details.
55

66
%define version 15
7-
%define release 1.r1604%{?dist}
7+
%define release 1.r0%{?dist}
88
%define minifier uglifyjs
99
%define python python3
1010

@@ -78,8 +78,9 @@ rm -rf $RPM_BUILD_ROOT
7878
%endif
7979

8080
%changelog
81-
* Tue Jul 02 2024 Antoine Martin <antoine@xpra.org> 15-1604-1
82-
- TODO
81+
* Wed Jul 31 2024 Antoine Martin <antoine@xpra.org> 15-0-1
82+
- try harder to prevent password input with insecure settings, but also allow password input with 'insecure' option
83+
- honour preferred clipboard format
8384

8485
* Tue Jul 02 2024 Antoine Martin <antoine@xpra.org> 14-1569-1
8586
- security fixes:

0 commit comments

Comments
 (0)