diff --git a/frontend/package.json b/frontend/package.json index 614b5b2..d62a475 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "yt-dlp-webui", - "version": "3.2.5", + "version": "3.2.6", "description": "Frontend compontent of yt-dlp-webui", "scripts": { "dev": "vite --host 0.0.0.0", diff --git a/server/rest/service.go b/server/rest/service.go index b807057..006a682 100644 --- a/server/rest/service.go +++ b/server/rest/service.go @@ -164,7 +164,7 @@ func (s *Service) DeleteTemplate(ctx context.Context, id string) error { func (s *Service) GetVersion(ctx context.Context) (string, string, error) { //TODO: load from realease properties file, or anything else outside code - const CURRENT_RPC_VERSION = "3.2.5" + const CURRENT_RPC_VERSION = "3.2.6" result := make(chan string, 1)