Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Feb 5, 2025
1 parent f3e71b4 commit 3882cf9
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion html5/connect.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<form class="form-signin" action="./index.html">
<img src="icons/xpra-logo.png" alt="xpra logo" />
<h2 class="form-signin-heading">Xpra HTML5 Client</h2>
<h5>Version 17 beta</h5>
<h5>Version 18</h5>

<div id="alert-disconnect" class="alert alert-info" role="alert" style="display: none">
<p>You were disconnected for the following reason:</p>
Expand Down
2 changes: 1 addition & 1 deletion html5/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@

<div id="about">
<h2>Xpra HTML5 Client</h2>
<h3>Version 17 beta</h3>
<h3>Version 18</h3>
<span>
Copyright (c) 2013-2024 Antoine Martin &lt;antoine@xpra.org&gt;
<br />
Expand Down
6 changes: 3 additions & 3 deletions html5/js/Utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
*/

const Utilities = {
VERSION: "17",
REVISION: 0,
VERSION : "18",
REVISION : 0,
LOCAL_MODIFICATIONS: 0,
BRANCH: "master",
BRANCH: "v16.x",

exc: console_error_safe,
error: console_error_safe,
Expand Down
5 changes: 5 additions & 0 deletions packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
xpra-html5 (18-r0-1) UNRELEASED; urgency=low
* TODO

-- Antoine Martin antoine@xpra.org Wed, 05 Feb 2025 13:11:57 +0700 +700

xpra-html5 (17-r0-1) UNRELEASED; urgency=low
* Build and packaging:
- nodejs-less formatting script
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: 17-r0-1
Version: 18-r0-1
Source: xpra-html5
Maintainer: Antoine Martin <antoine@xpra.org>
Standards-Version: 3.9.3
Expand Down
5 changes: 4 additions & 1 deletion 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 17
%define version 18
%define release 1.r0%{?dist}
%define minifier uglifyjs
%define python python3
Expand Down Expand Up @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT
%endif

%changelog
* Wed Feb 05 2025 Antoine Martin <antoine@xpra.org> 18-0-1
- TODO

* Tue Jan 14 2025 Antoine Martin <antoine@xpra.org> 17-0-1
- Build and packaging:
nodejs-less formatting script
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from typing import AnyStr
from subprocess import Popen, PIPE

VERSION = "17"
VERSION = "18"
AUTHOR = "Antoine Martin"
AUTHOR_EMAIL = "antoine@xpra.org"

Expand Down

0 comments on commit 3882cf9

Please sign in to comment.