-
Notifications
You must be signed in to change notification settings - Fork 55
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
17 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</h3> | ||
<h3>Version 16.1</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,8 @@ | ||
xpra-html5 (16.1-r0-1) UNRELEASED; urgency=low | ||
* decode worker failures with some inlined packets | ||
|
||
-- Antoine Martin [email protected] Tue, 24 Sep 2024 15:59:29 +0700 +700 | ||
|
||
xpra-html5 (16-r0-1) UNRELEASED; urgency=low | ||
* re-connection fixes: | ||
- hangs | ||
|
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-r0-1 | ||
Version: 16.1-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 | ||
%define version 16.1 | ||
%define release 1.r0%{?dist} | ||
%define minifier uglifyjs | ||
%define python python3 | ||
|
@@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT | |
%endif | ||
|
||
%changelog | ||
* Tue Sep 24 2024 Antoine Martin <[email protected]> 16.1-0-1 | ||
- decode worker failures with some inlined packets | ||
|
||
* Mon Sep 09 2024 Antoine Martin <[email protected]> 16-0-1 | ||
- re-connection fixes: | ||
hangs | ||
|
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" | ||
VERSION = "16.1" | ||
AUTHOR = "Antoine Martin" | ||
AUTHOR_EMAIL = "[email protected]" | ||
|
||
|