updated version info (#258)

This commit is contained in:
Marco Piovanello
2025-02-04 14:16:02 +01:00
committed by GitHub
parent ff93bd552f
commit 1141903512
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "yt-dlp-webui",
"version": "3.2.3",
"version": "3.2.5",
"description": "Frontend compontent of yt-dlp-webui",
"scripts": {
"dev": "vite --host 0.0.0.0",

View File

@@ -7,7 +7,7 @@ const VersionIndicator: React.FC = () => {
return (
<div style={{ display: 'flex', gap: 4, alignItems: 'center' }}>
<Chip label={`UI v3.2.4`} variant="outlined" size="small" />
<Chip label={`UI v3.2.5`} variant="outlined" size="small" />
<Chip label={`RPC v${version.rpcVersion}`} variant="outlined" size="small" />
<Chip label={`yt-dlp v${version.ytdlpVersion}`} variant="outlined" size="small" />
</div>