Skip to content

Commit 1141903

Browse files
updated version info (#258)
1 parent ff93bd5 commit 1141903

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "yt-dlp-webui",
3-
"version": "3.2.3",
3+
"version": "3.2.5",
44
"description": "Frontend compontent of yt-dlp-webui",
55
"scripts": {
66
"dev": "vite --host 0.0.0.0",

frontend/src/components/VersionIndicator.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const VersionIndicator: React.FC = () => {
77

88
return (
99
<div style={{ display: 'flex', gap: 4, alignItems: 'center' }}>
10-
<Chip label={`UI v3.2.4`} variant="outlined" size="small" />
10+
<Chip label={`UI v3.2.5`} variant="outlined" size="small" />
1111
<Chip label={`RPC v${version.rpcVersion}`} variant="outlined" size="small" />
1212
<Chip label={`yt-dlp v${version.ytdlpVersion}`} variant="outlined" size="small" />
1313
</div>

server/rest/service.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ func (s *Service) DeleteTemplate(ctx context.Context, id string) error {
164164

165165
func (s *Service) GetVersion(ctx context.Context) (string, string, error) {
166166
//TODO: load from realease properties file, or anything else outside code
167-
const CURRENT_RPC_VERSION = "3.2.3"
167+
const CURRENT_RPC_VERSION = "3.2.5"
168168

169169
result := make(chan string, 1)
170170

0 commit comments

Comments
 (0)