-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump version and update the release notes
- Loading branch information
Showing
7 changed files
with
25 additions
and
5 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 |
---|---|---|
|
@@ -273,7 +273,7 @@ | |
|
||
<div id="about"> | ||
<h2>Xpra HTML5 Client</h2> | ||
<h3>Version 11</h3> | ||
<h3>Version 11.1</h3> | ||
<span> | ||
Copyright (c) 2013-2022 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
xpra-html5 (11.1-r1520-1) UNRELEASED; urgency=low | ||
* build failures when using github archives | ||
* default to `yuicompressor` | ||
* version string incorrectly / not updated | ||
* offsreen decoding can handle larger video dimensions | ||
|
||
-- Antoine Martin [email protected] Sat, 24 Feb 2024 08:22:56 +0700 -500 | ||
|
||
xpra-html5 (11-r1520-1) UNRELEASED; urgency=low | ||
* more consistent positioning of fullscreen windows | ||
* prefix the `sessionStorage` data with pathname | ||
|
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: 11-r1520-1 | ||
Version: 11.1-r1520-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 11 | ||
%define version 11.1 | ||
%define release 1.r1520%{?dist} | ||
%define minifier uglifyjs | ||
%define python python3 | ||
|
@@ -78,6 +78,12 @@ rm -rf $RPM_BUILD_ROOT | |
%endif | ||
|
||
%changelog | ||
* Sat Feb 24 2024 Antoine Martin <[email protected]> 11.1-1520-1 | ||
- build failures when using github archives | ||
- default to `yuicompressor` | ||
- version string incorrectly / not updated | ||
- offsreen decoding can handle larger video dimensions | ||
|
||
* Wed Jan 31 2024 Antoine Martin <[email protected]> 11-1520-1 | ||
- more consistent positioning of fullscreen windows | ||
- prefix the `sessionStorage` data with pathname | ||
|
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 = "11" | ||
VERSION = "11.1" | ||
AUTHOR = "Antoine Martin" | ||
AUTHOR_EMAIL = "[email protected]" | ||
|
||
|