1
1
mirror of https://github.com/neosubhamoy/neodlp.git synced 2026-02-04 11:52:23 +05:30

chore: bumped up to v0.4.0 and updated docs

This commit is contained in:
2026-01-20 21:00:47 +05:30
Verified
parent 04590d892d
commit b40270f350
9 changed files with 133 additions and 94 deletions

2
src-tauri/Cargo.lock generated
View File

@@ -2560,7 +2560,7 @@ dependencies = [
[[package]]
name = "neodlp"
version = "0.3.4"
version = "0.4.0"
dependencies = [
"base64 0.22.1",
"directories",

View File

@@ -1,7 +1,7 @@
[package]
name = "neodlp"
version = "0.3.4"
description = "NeoDLP"
version = "0.4.0"
description = "Cross-platform Video/Audio Downloader Desktop App with Modern UI and Browser Integration"
authors = ["neosubhamoy <hey@neosubhamoy.com>"]
edition = "2021"
license = "MIT"

View File

@@ -151,7 +151,7 @@ pub fn get_migrations() -> Vec<Migration> {
},
Migration {
version: 3,
description: "add_more_columns_and_indexes_to_downloads",
description: "add_more_columns_and_indices_to_downloads",
sql: "
-- Create temporary table with all new columns
CREATE TABLE downloads_temp (
@@ -207,9 +207,7 @@ pub fn get_migrations() -> Vec<Migration> {
CASE WHEN playlist_id IS NOT NULL THEN '1/1' ELSE NULL END, -- item
progress, total, downloaded, speed, eta,
filepath, filetype, filesize,
output_format,
embed_metadata,
embed_thumbnail,
output_format, embed_metadata, embed_thumbnail,
0, -- square_crop_thumbnail
sponsorblock_remove, sponsorblock_mark, use_aria2,
custom_command, queue_config, created_at, updated_at

View File

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