Skip to content

Commit defdfd6

Browse files
committed
fix: yt-dlp exiting with code 2 on macos
1 parent 9381a3d commit defdfd6

File tree

8 files changed

+100
-101
lines changed

8 files changed

+100
-101
lines changed

CHANGELOG.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
### ✨ Changelog
22

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
8-
- Other minor fixes and improvements
3+
- HOTFIX: yt-dlp exiting with code 2 while resolving deno on macOS
4+
- Also, a small correction: Linux (deb, rpm) packages are not yet self-updateable
95

106
### 📝 Notes
117

8+
> [!TIP]
9+
> This is a hotfix release for macOS only, You can skip this update if you are on other platforms
10+
1211
> [!CAUTION]
1312
> This is a breaking update if you are coming from older version than `v0.3.0`. Users are adviced to complete/cancel all paused downloads before updating to this version, otherwise paused downloads may not resume properly or re-start from the begining.
1413
@@ -23,20 +22,20 @@
2322

2423
| yt-dlp (updateable) | ffmpeg | ffprobe | aria2c | deno |
2524
| :---- | :---- | :---- | :---- | :---- |
26-
| v2025.11.03.233024 (nightly) | v7.1.1 | v7.1.1 | v1.37.0 | v2.5.6 |
25+
| v2025.11.05.232946 (nightly) | v7.1.1 | v7.1.1 | v1.37.0 | v2.5.6 |
2726

2827
> ‼️ 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)
2928
3029
> ‼️ MacOS builds (dmg, app) does not ships with `aria2c`, If you want to use [aria2](https://formulae.brew.sh/formula/aria2) install it via [homebrew](https://brew.sh)
3130
3231
### ⬇️ Download Section
3332

34-
| Arch\OS | Windows (msi) | Windows (exe) | Linux (deb) | Linux (rpm) | Linux (AppImage) | MacOS (dmg) | MacOS (app) |
33+
| Architecture | Windows (msi) ⬆️ | Windows (exe) ⬆️ | Linux (deb) | Linux (rpm) | Linux (AppImage) ⬆️ | MacOS (dmg) ⬆️ | MacOS (app) ⬆️ |
3534
| :---- | :---- | :---- | :---- | :---- | :---- | :---- | :---- |
3635
| 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) |
3736
| 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) |
3837

39-
> ⬆️ All packages supports in-built app-updater
38+
> ⬆️ icon indicates this packaging format supports in-built app-updater
4039
4140
> 🪟 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)
4241

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ After installing the extension you can do the following directly from the browse
6767

6868
1. Download the latest [NeoDLP](https://github.com/neosubhamoy/neodlp/releases/latest) release based on your OS and CPU Architecture, then install it! -OR- Install it directly from an available distribution channel (listed below)
6969

70-
| Arch\OS | Windows | Linux | MacOS |
70+
| Architecture | Windows | Linux | MacOS |
7171
| :---- | :---- | :---- | :---- |
7272
| x86_64 |[Download](https://github.com/neosubhamoy/neodlp/releases/latest) |[Download](https://github.com/neosubhamoy/neodlp/releases/latest) |[Download](https://github.com/neosubhamoy/neodlp/releases/latest) |
7373
| ARM64 | ✅ Emulation |[Download](https://github.com/neosubhamoy/neodlp/releases/latest) |[Download](https://github.com/neosubhamoy/neodlp/releases/latest) |

package-lock.json

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

0 commit comments

Comments
 (0)