From 34c78c7e2d58fc96154696de91825e14220fdbb0 Mon Sep 17 00:00:00 2001 From: marcobaobao Date: Tue, 12 Nov 2024 11:32:50 +0100 Subject: [PATCH] ready for 3.2.2 --- frontend/package.json | 4 ++-- server/rest/service.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index e945076..1572786 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,13 +1,13 @@ { "name": "yt-dlp-webui", - "version": "3.2.1", + "version": "3.2.2", "description": "Frontend compontent of yt-dlp-webui", "scripts": { "dev": "vite", "build": "vite build" }, "author": "marcopeocchi", - "license": "MPL-2.0", + "license": "GPL-3.0-only", "private": true, "dependencies": { "@emotion/react": "^11.11.4", diff --git a/server/rest/service.go b/server/rest/service.go index c1834c0..9b05326 100644 --- a/server/rest/service.go +++ b/server/rest/service.go @@ -148,7 +148,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.1" + const CURRENT_RPC_VERSION = "3.2.2" result := make(chan string, 1)