diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e1bba89..f7778ef 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -2,7 +2,10 @@ name: "Publish to Releases" on: workflow_dispatch: - + inputs: + version: + description: "Specify the version. Ensure that the version is in the format v0.0.0." + required: true jobs: publish-tauri: permissions: diff --git a/package.json b/package.json index 2e32f08..b32784d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "qsv-easy-installer", "private": true, - "version": "1.1.1", + "version": "1.1.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src/App.tsx b/src/App.tsx index e37eca2..fdba217 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -25,7 +25,6 @@ function App() { invoke("run_path_update") .finally(() => { setLoading(false); - alert("Successfully installed qsv. Try opening a new terminal and run a qsv command!"); }); }} className="mx-auto w-full flex justify-center bg-blue-400"