Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

node 20, nwjs 0.82.0, ffmpeg 0.82.0 #39

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '20'
continue-on-error: false

# for debugging
Expand Down
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const RELEASE_DIR = './release/';
const LINUX_INSTALL_DIR = '/opt/emuflight';

var nwBuilderOptions = {
version: '0.55.0',
version: '0.82.0',
files: './dist/**/*',
macIcns: './images/emu_icon.icns',
macPlist: { 'CFBundleDisplayName': 'EmuFlight Blackbox Explorer'},
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<h1>Welcome to the Enhanced Blackbox Explorer!</h1>
<p>This tool allows you to view and analyze logs created by Cleanflight's, Betaflight's and EmuFlight's Blackbox feature.</p>
<span class="btn btn-primary btn-lg btn-file" data-toggle="tooltip" title="Start by opening a log or video file"> Open log file/video
<input type="file" class="file-open" accept=".bbl,.txt,.cfl,.bfl,.log,.avi,.mov,.mp4,.mpeg,.json" multiple />
<input type="file" class="file-open" accept=".bbl,.txt,.cfl,.bfl,.log,.mov,.mp4,.mpeg,.json" multiple />
</span>
<span id="loading-file-text" class="hiddenElement loading-message"></span>
</div>
Expand Down Expand Up @@ -184,7 +184,7 @@ <h1>Welcome to the Enhanced Blackbox Explorer!</h1>
<a class="btn btn-primary btn-csv-export" data-toggle="tooltip" title="Export your current graphs to CSV file"> Export CSV...</a>
<span class="btn btn-primary btn-file" data-toggle="tooltip" title="Open another log file, video file, exported workspace file or configuration dump file">
Open log file/video
<input type="file" class="file-open" accept=".bbl,.txt,.cfl,.bfl,.log,.avi,.mov,.mp4,.mpeg,.json" multiple />
<input type="file" class="file-open" accept=".bbl,.txt,.cfl,.bfl,.log,.mov,.mp4,.mpeg,.json" multiple />
</span>
</div>
<div class="btn-group" style="display: none;">
Expand Down
Binary file modified library/linux32/libffmpeg.so
Binary file not shown.
Binary file modified library/linux64/libffmpeg.so
Binary file not shown.
Binary file modified library/osx64/libffmpeg.dylib
Binary file not shown.
Binary file modified library/win32/ffmpeg.dll
Binary file not shown.
Binary file modified library/win64/ffmpeg.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"**/**/lodash.template": "^4.5.0"
},
"engines": {
"node": "16.x"
"node": "20.x"
},
"optionalDependencies": {
"appdmg": "^0.6.6"
Expand Down
Loading