-
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.
- Loading branch information
Showing
7 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 |
---|---|---|
|
@@ -269,7 +269,7 @@ | |
|
||
<div id="about"> | ||
<h2>Xpra HTML5 Client</h2> | ||
<h3>Version 10</h3> | ||
<h3>Version 10.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,8 @@ | ||
xpra-html5 (10.1-r10-1) UNRELEASED; urgency=low | ||
* missing start menu | ||
|
||
-- Antoine Martin [email protected] Wed, 13 Dec 2023 15:07:29 +0700 +700 | ||
|
||
xpra-html5 (10-r1482-1) UNRELEASED; urgency=low | ||
* update libraries: jquery v3.7.1, jquery ui v1.13.2 | ||
* disable offscreen rendering with more buggy webkit based browsers, Chrome | ||
|
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: 10-r1482-1 | ||
Version: 10.1-r10-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,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 10 | ||
%define release 1.r1482%{?dist} | ||
%define version 10.1 | ||
%define release 1.r10%{?dist} | ||
%define minifier uglifyjs | ||
%define python python3 | ||
|
||
|
@@ -77,6 +77,9 @@ rm -rf $RPM_BUILD_ROOT | |
%endif | ||
|
||
%changelog | ||
* Wed Dec 13 2023 Antoine Martin <[email protected]> 10.1-10-1 | ||
- missing start menu | ||
|
||
* Tue Nov 28 2023 Antoine Martin <[email protected]> 10-1482-1 | ||
- update libraries: jquery v3.7.1, jquery ui v1.13.2 | ||
- disable offscreen rendering with more buggy webkit based browsers, Chrome without https | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
import os.path | ||
from subprocess import Popen, PIPE | ||
|
||
VERSION = "10" | ||
VERSION = "10.1" | ||
AUTHOR = "Antoine Martin" | ||
AUTHOR_EMAIL = "[email protected]" | ||
|
||
|