Skip to content

Commit 8af3ff3

Browse files
committed
bump version and update the release notes
1 parent d81286f commit 8af3ff3

File tree

7 files changed

+25
-5
lines changed

7 files changed

+25
-5
lines changed

docs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [11.1] 2024-02-24
6+
- [build failures when using github archives](https://github.com/Xpra-org/xpra-html5/commit/2bdca6c5ba1459c21317e7f51e933b83e06d36fa)
7+
- [default to `yuicompressor`](https://github.com/Xpra-org/xpra-html5/commit/ecb56b264c235ccb35474ac1a3b85aff1119fc96)
8+
- [version string incorrectly / not updated](https://github.com/Xpra-org/xpra-html5/commit/8973774c5318aa2dc5223628826296a835aed43e)
9+
- [offsreen decoding can handle larger video dimensions](https://github.com/Xpra-org/xpra-html5/commit/d81286fe2091f5266df898c0a37dcc30aaa060d0)
10+
511
## [11.0] 2024-01-31
612
- [more consistent positioning of fullscreen windows](https://github.com/Xpra-org/xpra-html5/commit/be43532f1637b315466289154b387f48db7a9a0b)
713
- [prefix the `sessionStorage` data with pathname](https://github.com/Xpra-org/xpra-html5/commit/b944a32f4b3a1394e092095e6ab57d575b764307)

html5/connect.html

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

4949
<div
5050
id="alert-disconnect"

html5/index.html

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

274274
<div id="about">
275275
<h2>Xpra HTML5 Client</h2>
276-
<h3>Version 11</h3>
276+
<h3>Version 11.1</h3>
277277
<span>
278278
Copyright (c) 2013-2022 Antoine Martin &lt;antoine@xpra.org&gt;
279279
<br />

packaging/debian/changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
xpra-html5 (11.1-r1520-1) UNRELEASED; urgency=low
2+
* build failures when using github archives
3+
* default to `yuicompressor`
4+
* version string incorrectly / not updated
5+
* offsreen decoding can handle larger video dimensions
6+
7+
-- Antoine Martin antoine@xpra.org Sat, 24 Feb 2024 08:22:56 +0700 -500
8+
19
xpra-html5 (11-r1520-1) UNRELEASED; urgency=low
210
* more consistent positioning of fullscreen windows
311
* prefix the `sessionStorage` data with pathname

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: 11-r1520-1
2+
Version: 11.1-r1520-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: 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 11
6+
%define version 11.1
77
%define release 1.r1520%{?dist}
88
%define minifier uglifyjs
99
%define python python3
@@ -78,6 +78,12 @@ rm -rf $RPM_BUILD_ROOT
7878
%endif
7979

8080
%changelog
81+
* Sat Feb 24 2024 Antoine Martin <antoine@xpra.org> 11.1-1520-1
82+
- build failures when using github archives
83+
- default to `yuicompressor`
84+
- version string incorrectly / not updated
85+
- offsreen decoding can handle larger video dimensions
86+
8187
* Wed Jan 31 2024 Antoine Martin <antoine@xpra.org> 11-1520-1
8288
- more consistent positioning of fullscreen windows
8389
- prefix the `sessionStorage` data with pathname

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 = "11"
16+
VERSION = "11.1"
1717
AUTHOR = "Antoine Martin"
1818
AUTHOR_EMAIL = "antoine@xpra.org"
1919

0 commit comments

Comments
 (0)