Skip to content

Commit 9381a3d

Browse files
committed
chore: bumped up to v0.3.3
1 parent e5d8313 commit 9381a3d

File tree

6 files changed

+27
-27
lines changed

6 files changed

+27
-27
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
### ✨ Changelog
22

3-
- Added Debug Mode (with log customization)
4-
- Added quick paste and clear buttons on downloader
5-
- Fixed browser integration not working on Windows MSI install
6-
- Fixed the occasional freezing issue on macOS while downloading large files
7-
- Now Linux (deb, rpm) packages supports in-built app-updater
3+
- Added desktop notification settings (download completion, app updates)
4+
- Added per-download sponsorblock config
5+
- Added thumbnail embeding option for video files
6+
- Fixed yt-dlp failing to update on Windows MSI install
7+
- Fixed yt-dlp not resolving deno on macOS
88
- Other minor fixes and improvements
99

1010
### 📝 Notes
@@ -23,7 +23,7 @@
2323

2424
| yt-dlp (updateable) | ffmpeg | ffprobe | aria2c | deno |
2525
| :---- | :---- | :---- | :---- | :---- |
26-
| v2025.10.25.232842 (nightly) | v7.1.1 | v7.1.1 | v1.37.0 | v2.5.4 |
26+
| v2025.11.03.233024 (nightly) | v7.1.1 | v7.1.1 | v1.37.0 | v2.5.6 |
2727

2828
> ‼️ Linux builds (deb, rpm) does not ships with `ffmpeg` and `ffprobe` (though it will be auto installed as a dependency by your package manager, if you are on fedora make sure to [enable rpmfusion free+nonfree repos](https://docs.fedoraproject.org/en-US/quick-docs/rpmfusion-setup/#_enabling_the_rpm_fusion_repositories_using_command_line_utilities) before installing the rpm package)
2929
@@ -36,7 +36,7 @@
3636
| x86_64 | [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP_<version>_x64_en-US_windows.msi) | [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP_<version>_x64-setup_windows.exe) | [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP_<version>_amd64_linux.deb) | [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP-<version>-1.x86_64_linux.rpm) | 🚫 [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP_<version>_amd64_linux.AppImage) | [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP_<version>_x64_darwin.dmg) | [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP_darwin_x64.app.tar.gz) |
3737
| ARM64 | N/A | 🪟 [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP_<version>_x64-setup_windows.exe) | [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP_<version>_arm64_linux.deb) | [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP-<version>-1.aarch64_linux.rpm) | N/A | ⚠️ [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP_<version>_aarch64_darwin.dmg) | ⚠️ [Download](https://github.com/neosubhamoy/neodlp/releases/download/<release_tag>/NeoDLP_darwin_aarch64.app.tar.gz) |
3838

39-
> ⬆️ Now, all packages supports in-built app-updater
39+
> ⬆️ All packages supports in-built app-updater
4040
4141
> 🪟 Windows x86_64 binary also works on ARM64 (Windows on ARM) devices with emulation (Not planning to release native Windows ARM64 build anytime soon as, x86_64 one works fine on ARM64 without noticeable performance impact)
4242

package-lock.json

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "neodlp",
33
"private": true,
4-
"version": "0.3.2",
4+
"version": "0.3.3",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -39,7 +39,7 @@
3939
"@radix-ui/react-toggle": "^1.1.10",
4040
"@radix-ui/react-toggle-group": "^1.1.11",
4141
"@radix-ui/react-tooltip": "^1.2.8",
42-
"@tanstack/react-query": "^5.90.6",
42+
"@tanstack/react-query": "^5.90.7",
4343
"@tanstack/react-query-devtools": "^5.90.2",
4444
"@tauri-apps/api": "^2.9.0",
4545
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
@@ -86,6 +86,6 @@
8686
"tailwindcss": "^4.1.16",
8787
"tw-animate-css": "^1.4.0",
8888
"typescript": "~5.9.3",
89-
"vite": "^7.1.12"
89+
"vite": "^7.2.0"
9090
}
9191
}

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "neodlp"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
description = "NeoDLP"
55
authors = ["neosubhamoy <hey@neosubhamoy.com>"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "NeoDLP",
44
"mainBinaryName": "neodlp",
5-
"version": "0.3.2",
5+
"version": "0.3.3",
66
"identifier": "com.neosubhamoy.neodlp",
77
"build": {
88
"beforeDevCommand": "npm run dev",

0 commit comments

Comments
 (0)