-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version bump + update the release notes
- Loading branch information
Showing
8 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]> | ||
<br /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 [email protected] 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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]> | ||
Standards-Version: 3.9.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -78,6 +78,12 @@ rm -rf $RPM_BUILD_ROOT | |
%endif | ||
|
||
%changelog | ||
* Tue Oct 08 2024 Antoine Martin <[email protected]> 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 <[email protected]> 16.1-0-1 | ||
- decode worker failures with some inlined packets | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
from typing import AnyStr | ||
from subprocess import Popen, PIPE | ||
|
||
VERSION = "16.1" | ||
VERSION = "16.2" | ||
AUTHOR = "Antoine Martin" | ||
AUTHOR_EMAIL = "[email protected]" | ||
|
||
|