From 0e55ac6a21902da1991485458ec74c19e30c3038 Mon Sep 17 00:00:00 2001 From: Subhamoy Biswas Date: Tue, 22 Jul 2025 15:32:40 +0530 Subject: [PATCH] chore: bumped up to v0.2.1 --- CHANGELOG.md | 25 +++++++------------------ README.md | 3 ++- package-lock.json | 4 ++-- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 7 files changed, 15 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e97e72c..0769d7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,23 +1,12 @@ ### ✨ Changelog -- DOWNLOADER: Introduced 'Combine' download mode (Now, You can combine a video and audio stream of your choice) -- SETTINGS: Added global video/audio file format selection option (Available Formats: MP4, WEBM, MKV, M4A, OPUS, MP3) -- SETTINGS: Added video/audio file metadata embeding option -- SETTINGS: Added thumbnail embeding option in audio files (as cover art) -- SETTINGS: Added re-encode video over remuxing option (when file format convertion is needed) -- SETTINGS: Added strict downloadablity check option -- SETTINGS: Added download speed rate limit option -- SETTINGS: Added download max retries option -- SETTINGS: Added temporary download folder cleanup option -- UI: Improved 'Settings' ui/layout with categories (tabs) -- UI: Merged 'Extension' sidebar tab within 'Settings' (Settings > Extension > Install) -- UI: Improved 'Library' ui/layout with tabs -- UI: Added 'Stop' all ongoing downloads button in 'Library' -- UI: Renamed settings 'General' tab to 'Application' ('General' is now a sub-category of 'Application' tab) -- UI: Improved all alert dialog messages (for better undestanding/UX) -- FIXED: Unexpected crashing of yt-dlp causing downloads to stuck on a unrevocable state (Now, coresponding download will be 'paused' on detection of unexpected yt-dlp crash) -- FIXED: Broken app updater progress bar/percentage (also improved the update notification card) -- Lots of other minor fixes and improvements +- DOWNLOADER: Added 'Cancel Search' button +- FIXED: Downloaded files are not moving from temp to download folder in some linux distros +- FIXED: 'Stop' all ongoing downloads button not working on linux +- Improved search and download error handling +- Removed subtitle (CC) embeding restriction from M4A files +- Migrated to Zod v4 and improved form validations +- Other minor fixes and improvements ### 📝 Notes diff --git a/README.md b/README.md index 602854e..edeccca 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,8 @@ NeoDLP is and will be always FREE to Use for Everyone and Open-Sourced. On the o buymeacoffee-orange-badge -
+ +

> 📌 **NOTE:** You can also donate via UPI by sending donations to this UPI ID directly: **[subhamoybiswas636-2@oksbi](upi://pay?pa=subhamoybiswas636-2@oksbi&pn=Subhamoy%20Biswas)** diff --git a/package-lock.json b/package-lock.json index 719c153..4fd82c2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "neodlp", - "version": "0.2.0", + "version": "0.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "neodlp", - "version": "0.2.0", + "version": "0.2.1", "dependencies": { "@hookform/resolvers": "^5.1.1", "@radix-ui/react-accordion": "^1.2.11", diff --git a/package.json b/package.json index 82daf5f..092adff 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "neodlp", "private": true, - "version": "0.2.0", + "version": "0.2.1", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index d6fede1..66b4c6f 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2501,7 +2501,7 @@ dependencies = [ [[package]] name = "neodlp" -version = "0.2.0" +version = "0.2.1" dependencies = [ "base64 0.22.1", "directories", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index b5a4240..c77c6a4 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "neodlp" -version = "0.2.0" +version = "0.2.1" description = "NeoDLP" authors = ["neosubhamoy "] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index e19adfc..5387cae 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -2,7 +2,7 @@ "$schema": "https://schema.tauri.app/config/2", "productName": "NeoDLP", "mainBinaryName": "neodlp", - "version": "0.2.0", + "version": "0.2.1", "identifier": "com.neosubhamoy.neodlp", "build": { "beforeDevCommand": "npm run dev",