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:
parent
5eb01ac226
commit
e18a711abf
13 changed files with 635 additions and 679 deletions
|
|
@ -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>
|
||||
|
|
|
|||
994
desktop/src-tauri/Cargo.lock
generated
994
desktop/src-tauri/Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -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 = ""
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
)}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue