Skip to content

Commit

Permalink
update the release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Aug 23, 2024
1 parent 97bd799 commit 178ae48
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 7 deletions.
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog

All notable changes to this project will be documented in this file.
## [16.0] 2024-08-23
- re-connection fixes:
- hangs
- does not timeout
- retry WebSocket connection
- ping packets not sent

## [15.1] 2024-08-21
- [syntax error](https://github.com/Xpra-org/xpra-html5/commit/11909d82d71f4461508527d8ff3a11abbc336cad)

Expand Down
2 changes: 1 addition & 1 deletion html5/connect.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<form class="form-signin" action="./index.html">
<img src="icons/xpra-logo.png" alt="xpra logo" />
<h2 class="form-signin-heading">Xpra HTML5 Client</h2>
<h5>Version 15 beta</h5>
<h5>Version 16</h5>

<div
id="alert-disconnect"
Expand Down
2 changes: 1 addition & 1 deletion html5/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@

<div id="about">
<h2>Xpra HTML5 Client</h2>
<h3>Version 15 beta</h3>
<h3>Version 16</h3>
<span>
Copyright (c) 2013-2024 Antoine Martin &lt;antoine@xpra.org&gt;
<br />
Expand Down
2 changes: 1 addition & 1 deletion html5/js/Utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

const Utilities = {
VERSION : "15",
VERSION : "16",
REVISION : 0,
LOCAL_MODIFICATIONS: 0,
BRANCH: "master",
Expand Down
9 changes: 9 additions & 0 deletions packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
xpra-html5 (16-r0-1) UNRELEASED; urgency=low
* re-connection fixes:
- hangs
- does not timeout
- retry WebSocket connection
* ping packets not sent

-- Antoine Martin antoine@xpra.org Fri, 23 Aug 2024 14:00:27 +0700 +700

xpra-html5 (15.1-r0-1) UNRELEASED; urgency=low
* syntax error

Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: xpra-html5
Version: 15-r1604-1
Version: 16-r0-1
Source: xpra-html5
Maintainer: Antoine Martin <antoine@xpra.org>
Standards-Version: 3.9.3
Expand Down
11 changes: 9 additions & 2 deletions packaging/rpm/xpra-html5.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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 15
%define release 1.r1604%{?dist}
%define version 16
%define release 1.r0%{?dist}
%define minifier uglifyjs
%define python python3

Expand Down Expand Up @@ -78,6 +78,13 @@ rm -rf $RPM_BUILD_ROOT
%endif

%changelog
* Fri Aug 23 2024 Antoine Martin <antoine@xpra.org> 16-0-1
- re-connection fixes:
hangs
does not timeout
retry WebSocket connection
- ping packets not sent

* Wed Aug 21 2024 Antoine Martin <antoine@xpra.org> 15.1-0-1
- syntax error

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from typing import AnyStr
from subprocess import Popen, PIPE

VERSION = "15"
VERSION = "16"
AUTHOR = "Antoine Martin"
AUTHOR_EMAIL = "antoine@xpra.org"

Expand Down

0 comments on commit 178ae48

Please sign in to comment.