v5.6.0-beta.1 (#116)

* Fix displaying versions in web/desktop
* Update deps
* Tag 5.6.0-beta.1
This commit is contained in:
Igor Katson 2024-04-06 09:37:31 +01:00 committed by GitHub
parent 5eb01ac226
commit e18a711abf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 635 additions and 679 deletions

View file

@ -1,14 +1,14 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>rqbit web 4.0.0-beta.0</title>
<link rel="icon" type="image/svg+xml" href="assets/logo.svg" />
</head>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>rqbit desktop</title>
<link rel="icon" type="image/svg+xml" href="assets/logo.svg" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
[package]
name = "rqbit-desktop"
version = "5.6.0-beta.0"
version = "5.6.0-beta.1"
description = "rqbit torrent client"
authors = ["you"]
license = ""

View file

@ -14,7 +14,7 @@ export const RqbitDesktop: React.FC<{
}> = ({ version, defaultConfig, currentState }) => {
let [configured, setConfigured] = useState<boolean>(currentState.configured);
let [config, setConfig] = useState<RqbitDesktopConfig>(
currentState.config ?? defaultConfig
currentState.config ?? defaultConfig,
);
let [configurationOpened, setConfigurationOpened] = useState<boolean>(false);
@ -32,7 +32,8 @@ export const RqbitDesktop: React.FC<{
<APIContext.Provider value={makeAPI(config)}>
{configured && (
<RqbitWebUI
title={`Rqbit Desktop - v${version}`}
title={`Rqbit Desktop`}
version={version}
menuButtons={[configButton]}
></RqbitWebUI>
)}