Skip to content

Commit

Permalink
forgot to bump the version
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jan 3, 2025
1 parent 0da33ee commit 44725e9
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 35 deletions.
18 changes: 10 additions & 8 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
# Changelog

All notable changes to this project will be documented in this file.
## [5.5] 2025-01-01
* fail fast if digest is unsafe
* refuse to use xor digest for passwords over insecure connections
## [5.6] 2025-01-01
* safer AES key stretching iterations range
* add RHEL10 builds
* support repository build target file
* prevent simple XSS from server menu data
* preserve disconnection message
* re-connection failures
* check for timeout when re-connecting
* keep modal windows on top
* don't send clipboard packets to servers that don't want them
* hide file transfers if not supported by the server
* missing start menu with newer server versions
* hide start menu if empty
* session info box too small
* desktop mode small offset
* chrome obfuscates the monitor names

## [5.5] 2024-07-15
* fail fast if digest is unsafe
* refuse to use xor digest for passwords over insecure connections
* add RHEL10 builds
* prevent simple XSS from server menu data
* preserve disconnection message
* hide file transfers if not supported by the server
* add 'Download' file menu entry
* password attribute is a list
* don't try to convert strings to strings
* chrome obfuscates the monitor names
* ignore whitespace when updating vcs info
* newer python compatibility: prefer setuptools, also add setuptools to the build dependencies
* consistency: always return a string
Expand Down
2 changes: 1 addition & 1 deletion html5/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@

<div id="about">
<h2>Xpra HTML5 Client</h2>
<h3>Version 5.5</h3>
<h3>Version 5.6</h3>
<span>
Copyright (c) 2013-2022 Antoine Martin &lt;[email protected]&gt;
<br />
Expand Down
4 changes: 2 additions & 2 deletions html5/js/Utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
'use strict';

const Utilities = {
VERSION : "5.5",
REVISION : 1,
VERSION : "5.6",
REVISION : 0,
LOCAL_MODIFICATIONS : 0,
BRANCH : "v5.x",

Expand Down
21 changes: 12 additions & 9 deletions packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
xpra-html5 (5.5-r1-1) UNRELEASED; urgency=low
* fail fast if digest is unsafe
* refuse to use xor digest for passwords over insecure connections
xpra-html5 (5.6-r0-1) UNRELEASED; urgency=low
* safer AES key stretching iterations range
* add RHEL10 builds
* support repository build target file
* prevent simple XSS from server menu data
* preserve disconnection message
* re-connection failures
* check for timeout when re-connecting
* keep modal windows on top
* don't send clipboard packets to servers that don't want them
* hide file transfers if not supported by the server
* missing start menu with newer server versions
* hide start menu if empty
* session info box too small
* desktop mode small offset

-- Antoine Martin [email protected] Fri, 03 Jan 2025 10:36:51 +0700 +700

xpra-html5 (5.5-r1-1) UNRELEASED; urgency=low
* fail fast if digest is unsafe
* refuse to use xor digest for passwords over insecure connections
* add RHEL10 builds
* prevent simple XSS from server menu data
* preserve disconnection message
* hide file transfers if not supported by the server
* add 'Download' file menu entry
* password attribute is a list
* don't try to convert strings to strings
* chrome obfuscates the monitor names
* ignore whitespace when updating vcs info
* newer python compatibility: prefer setuptools, also add setuptools to the build dependencies
* consistency: always return a string

-- Antoine Martin [email protected] Wed, 01 Jan 2025 11:27:07 +0700 +700
-- Antoine Martin [email protected] Mon, 15 Jul 2024 12:20:52 +0700 +700

xpra-html5 (5.4-r0-1) UNRELEASED; urgency=low
* update jquery and jquery-ui libraries
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: 5.5-r1-1
Version: 5.6-r0-1
Source: xpra-html5
Maintainer: Antoine Martin <[email protected]>
Standards-Version: 3.9.3
Expand Down
28 changes: 15 additions & 13 deletions 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 5.5
%define version 5.6
%define release 0%{?dist}
%define minifier uglifyjs
%define python python3
Expand Down Expand Up @@ -78,27 +78,29 @@ rm -rf $RPM_BUILD_ROOT
%endif

%changelog
* Wed Jan 01 2025 Antoine Martin <[email protected]> 5.5-1-1
* Wed Jan 01 2025 Antoine Martin <[email protected]> 5.6-1-1
* safer AES key stretching iterations range
* support repository build target file
* re-connection failures
* check for timeout when re-connecting
* keep modal windows on top
* don't send clipboard packets to servers that don't want them
* missing start menu with newer server versions
* hide start menu if empty
* session info box too small
* desktop mode small offset
* chrome obfuscates the monitor names

* Mon Jul 15 2024 Antoine Martin <[email protected]> 5.5-1-1
- fail fast if digest is unsafe
- refuse to use xor digest for passwords over insecure connections
- safer AES key stretching iterations range
- add RHEL10 builds
- support repository build target file
- prevent simple XSS from server menu data
- preserve disconnection message
- re-connection failures
- check for timeout when re-connecting
- keep modal windows on top
- don't send clipboard packets to servers that don't want them
- hide file transfers if not supported by the server
- missing start menu with newer server versions
- hide start menu if empty
- session info box too small
- desktop mode small offset
- add 'Download' file menu entry
- password attribute is a list
- don't try to convert strings to strings
- chrome obfuscates the monitor names
- ignore whitespace when updating vcs info
- newer python compatibility: prefer setuptools, also add setuptools to the build dependencies
- consistency: always return a string
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import os.path
from subprocess import Popen, PIPE

VERSION = "5.5"
VERSION = "5.6"
AUTHOR = "Antoine Martin"
AUTHOR_EMAIL = "[email protected]"

Expand Down

0 comments on commit 44725e9

Please sign in to comment.