-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from vitalygashkov/next
Added version output in debug log, added ffmpeg debug logging, improved log message if mux/decryption failed
- Loading branch information
Showing
4 changed files
with
13 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,13 +10,13 @@ jobs: | |
runs-on: windows-latest | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.CONTROL_REPO_TOKEN }} | ||
submodules: recursive | ||
|
||
- name: Install Node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'npm' | ||
|
@@ -49,13 +49,13 @@ jobs: | |
runs-on: macos-latest | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.CONTROL_REPO_TOKEN }} | ||
submodules: recursive | ||
|
||
- name: Install Node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'npm' | ||
|
@@ -92,19 +92,19 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.CONTROL_REPO_TOKEN }} | ||
submodules: recursive | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'npm' | ||
- run: git config --global url."https://${{ secrets.CONTROL_REPO_TOKEN }}@github.com/".insteadOf ssh://[email protected]/ | ||
|
||
- name: Install app dependencies | ||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Get package name and version | ||
|
@@ -132,13 +132,13 @@ jobs: | |
needs: [build-win, build-macos, build-linux] | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.CONTROL_REPO_TOKEN }} | ||
submodules: recursive | ||
|
||
- name: Install Node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'npm' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "streamyx", | ||
"version": "3.8.0.beta.5", | ||
"version": "3.8.0.beta.6", | ||
"author": "Vitaly Gashkov <[email protected]>", | ||
"description": "Cross-platform video downloader", | ||
"main": "dist/src/main.js", | ||
|
@@ -43,8 +43,7 @@ | |
"typescript": "^5.3.3" | ||
}, | ||
"engines": { | ||
"node": ">=18", | ||
"npm": ">=8" | ||
"node": ">=20" | ||
}, | ||
"pkg": { | ||
"assets": [ | ||
|
Submodule src
updated
from 9f2524 to 6e6827