chore: bumped up to v0.2.1

This commit is contained in:
2025-07-22 15:32:40 +05:30
parent e8e27d3283
commit 0e55ac6a21
7 changed files with 15 additions and 25 deletions

View File

@@ -1,23 +1,12 @@
### ✨ Changelog ### ✨ Changelog
- DOWNLOADER: Introduced 'Combine' download mode (Now, You can combine a video and audio stream of your choice) - DOWNLOADER: Added 'Cancel Search' button
- SETTINGS: Added global video/audio file format selection option (Available Formats: MP4, WEBM, MKV, M4A, OPUS, MP3) - FIXED: Downloaded files are not moving from temp to download folder in some linux distros
- SETTINGS: Added video/audio file metadata embeding option - FIXED: 'Stop' all ongoing downloads button not working on linux
- SETTINGS: Added thumbnail embeding option in audio files (as cover art) - Improved search and download error handling
- SETTINGS: Added re-encode video over remuxing option (when file format convertion is needed) - Removed subtitle (CC) embeding restriction from M4A files
- SETTINGS: Added strict downloadablity check option - Migrated to Zod v4 and improved form validations
- SETTINGS: Added download speed rate limit option - Other minor fixes and improvements
- 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
### 📝 Notes ### 📝 Notes

View File

@@ -72,7 +72,8 @@ NeoDLP is and will be always FREE to Use for Everyone and Open-Sourced. On the o
<a href="https://buymeacoffee.com/neosubhamoy" target="_blank" title="buymeacoffee"> <a href="https://buymeacoffee.com/neosubhamoy" target="_blank" title="buymeacoffee">
<img src="https://iili.io/JoQ0zN9.md.png" alt="buymeacoffee-orange-badge" style="width: 150px;"> <img src="https://iili.io/JoQ0zN9.md.png" alt="buymeacoffee-orange-badge" style="width: 150px;">
</a> </a>
<br>
<br></br>
> 📌 **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)** > 📌 **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)**

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "neodlp", "name": "neodlp",
"version": "0.2.0", "version": "0.2.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "neodlp", "name": "neodlp",
"version": "0.2.0", "version": "0.2.1",
"dependencies": { "dependencies": {
"@hookform/resolvers": "^5.1.1", "@hookform/resolvers": "^5.1.1",
"@radix-ui/react-accordion": "^1.2.11", "@radix-ui/react-accordion": "^1.2.11",

View File

@@ -1,7 +1,7 @@
{ {
"name": "neodlp", "name": "neodlp",
"private": true, "private": true,
"version": "0.2.0", "version": "0.2.1",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

2
src-tauri/Cargo.lock generated
View File

@@ -2501,7 +2501,7 @@ dependencies = [
[[package]] [[package]]
name = "neodlp" name = "neodlp"
version = "0.2.0" version = "0.2.1"
dependencies = [ dependencies = [
"base64 0.22.1", "base64 0.22.1",
"directories", "directories",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "neodlp" name = "neodlp"
version = "0.2.0" version = "0.2.1"
description = "NeoDLP" description = "NeoDLP"
authors = ["neosubhamoy <hey@neosubhamoy.com>"] authors = ["neosubhamoy <hey@neosubhamoy.com>"]
edition = "2021" edition = "2021"

View File

@@ -2,7 +2,7 @@
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "NeoDLP", "productName": "NeoDLP",
"mainBinaryName": "neodlp", "mainBinaryName": "neodlp",
"version": "0.2.0", "version": "0.2.1",
"identifier": "com.neosubhamoy.neodlp", "identifier": "com.neosubhamoy.neodlp",
"build": { "build": {
"beforeDevCommand": "npm run dev", "beforeDevCommand": "npm run dev",