commit
eb25ef3cda
6 changed files with 8 additions and 6 deletions
2
crates/librqbit/webui/dist/assets/index.js
vendored
2
crates/librqbit/webui/dist/assets/index.js
vendored
File diff suppressed because one or more lines are too long
2
crates/librqbit/webui/dist/index.html
vendored
2
crates/librqbit/webui/dist/index.html
vendored
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>rqbit web 4.0.0-beta.0</title>
|
<title>rqbit web</title>
|
||||||
<link rel="icon" type="image/svg+xml" href="assets/logo.svg" />
|
<link rel="icon" type="image/svg+xml" href="assets/logo.svg" />
|
||||||
<!-- Include Bootstrap CSS -->
|
<!-- Include Bootstrap CSS -->
|
||||||
<link
|
<link
|
||||||
|
|
|
||||||
2
crates/librqbit/webui/dist/manifest.json
vendored
2
crates/librqbit/webui/dist/manifest.json
vendored
|
|
@ -4,7 +4,7 @@
|
||||||
"src": "assets/logo.svg"
|
"src": "assets/logo.svg"
|
||||||
},
|
},
|
||||||
"index.html": {
|
"index.html": {
|
||||||
"file": "assets/index-21d43919.js",
|
"file": "assets/index-9523ae4e.js",
|
||||||
"isEntry": true,
|
"isEntry": true,
|
||||||
"src": "index.html"
|
"src": "index.html"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>rqbit web 4.0.0-beta.0</title>
|
<title>rqbit web</title>
|
||||||
<link rel="icon" type="image/svg+xml" href="assets/logo.svg" />
|
<link rel="icon" type="image/svg+xml" href="assets/logo.svg" />
|
||||||
<!-- Include Bootstrap CSS -->
|
<!-- Include Bootstrap CSS -->
|
||||||
<link
|
<link
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import json
|
import json
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,9 @@ const RootWithVersion = () => {
|
||||||
const refreshVersion = () =>
|
const refreshVersion = () =>
|
||||||
API.getVersion().then(
|
API.getVersion().then(
|
||||||
(version) => {
|
(version) => {
|
||||||
setTitle(`rqbit web UI - v${version}`);
|
const title = `rqbit web UI - v${version}`;
|
||||||
|
setTitle(title);
|
||||||
|
document.title = title;
|
||||||
return 10000;
|
return 10000;
|
||||||
},
|
},
|
||||||
(e) => {
|
(e) => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue