Skip to content

Commit

Permalink
version bump + update the release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Oct 8, 2024
1 parent e376739 commit 73d46f7
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 6 deletions.
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog

All notable changes to this project will be documented in this file.
## [16.1] 2024-10-08
- [fallback to client decoding](https://github.com/Xpra-org/xpra-html5/commit/e3767393aecc91453efc3ca87a6e20e42ae87c6c)
- [missing start menu after connecting](https://github.com/Xpra-org/xpra-html5/commit/48b576f940d8ab5294616e92b748fe7f1373873f)
- [don't send clipboard packets to servers that don't want them](https://github.com/Xpra-org/xpra-html5/commit/6cf8b8a5e09f5911295125756e85ff2aaf0417a6)
- [fail early if server doesn't support `rencodeplus`](https://github.com/Xpra-org/xpra-html5/commit/1e7fee5dc3e6cc9944189d8e8351bf518df99053)

## [16.1] 2024-09-24
- [decode worker failures with some inlined packets](https://github.com/Xpra-org/xpra-html5/commit/0ce5a899ed22bbec8c9219e10defa8c8764a0a3d)

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 16.1</h5>
<h5>Version 16.2</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 16.1</h3>
<h3>Version 16.2</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 : "16.1",
VERSION : "16.2",
REVISION : 0,
LOCAL_MODIFICATIONS: 0,
BRANCH: "v16.x",
Expand Down
8 changes: 8 additions & 0 deletions packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
xpra-html5 (16.2-r0-1) UNRELEASED; urgency=low
* fallback to client decoding
* missing start menu after connecting
* don't send clipboard packets to servers that don't want them
* fail early if server doesn't support `rencodeplus`

-- Antoine Martin antoine@xpra.org Tue, 08 Oct 2024 15:29:19 +0700 +700

xpra-html5 (16.1-r0-1) UNRELEASED; urgency=low
* decode worker failures with some inlined packets

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: 16.1-r0-1
Version: 16.2-r0-1
Source: xpra-html5
Maintainer: Antoine Martin <antoine@xpra.org>
Standards-Version: 3.9.3
Expand Down
8 changes: 7 additions & 1 deletion packaging/rpm/xpra-html5.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# 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 16.1
%define version 16.2
%define release 1.r0%{?dist}
%define minifier uglifyjs
%define python python3
Expand Down Expand Up @@ -78,6 +78,12 @@ rm -rf $RPM_BUILD_ROOT
%endif

%changelog
* Tue Oct 08 2024 Antoine Martin <antoine@xpra.org> 16.2-0-1
- fallback to client decoding
- missing start menu after connecting
- don't send clipboard packets to servers that don't want them
- fail early if server doesn't support `rencodeplus`

* Tue Sep 24 2024 Antoine Martin <antoine@xpra.org> 16.1-0-1
- decode worker failures with some inlined packets

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 = "16.1"
VERSION = "16.2"
AUTHOR = "Antoine Martin"
AUTHOR_EMAIL = "antoine@xpra.org"

Expand Down

0 comments on commit 73d46f7

Please sign in to comment.