Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-05-31Fix for Load/Save mission not working (#783)mirko-it
* Offline missions (with FC disconnected) are now available for load and save to file. Supports XML file format, should be compatible enough with other software * removed default file name * removed code in early stage of future developments * code style and fc buttons * map resize handling * fix include nwdialog and fs packages * xml2js lib with all dependencies in a single file
2019-03-10Backend for getting logic conditions from FCPawel Spychalski (DzikuVx)
2019-03-10Basic layout for logic conditionsPawel Spychalski (DzikuVx)
2019-02-14Win64 release targetPawel Spychalski (DzikuVx)
2019-02-11lower periodic tasks frequencyPawel Spychalski (DzikuVx)
2018-11-10GPS tab refactoringPawel Spychalski (DzikuVx)
2018-07-11Add support for editing more OSD settings from the OSD tabAlberto García Hierro
- Voltage decimals - Crosshairs style - Sidebar scroll for left and right - Sidebar scrolling arrows
2018-07-10Complete migration to Gulp 4, add linux32 supportAlberto García Hierro
- Remove usages of runSequence(), which doesn't work with Gulp 4, using gulp.series() instead. - Add support for linux32 builds - Add new --platform argument for building only for a single platform (e.g. --platform=osx64). Fixes build problems introduced in #527 Fixes #531
2018-07-09Update dependencies to be able to run with node 10Alberto García Hierro
- Update gulp to 4.0.0 - Update nw.js to 0.31.4-sdk
2018-06-20Add support for the new VTX settings APIAlberto García Hierro
When a controllable VTX is configured, a new section appears in the configuration tab which allows the user to set the band, channel power and "low power on disarm" option.
2018-05-24Servo output in Servo tabPawel Spychalski (DzikuVx)
2018-05-20Fix support for simulated RX via MSP, increase channels to 12Alberto García Hierro
- Fix detection of MSP_RX to show the button in the receiver tab - Fix path to the .css file for receiver_msp.html - Increase number of channels to 12
2018-03-28motor mix rules for all default presetsPawel Spychalski (DzikuVx)
2018-03-27Merge remote-tracking branch 'origin/master' into dzikuvx-new-mixer-approachPawel Spychalski (DzikuVx)
2018-03-17Format the markdown in the release notes as HTMLAlberto García Hierro
2018-02-13Move code for the debug trace window to an external scriptAlberto García Hierro
Chrome doesn't allow inline scripts, only external ones
2018-01-28Load and save of mmix over MSPPawel Spychalski (DzikuVx)
2018-01-26ground work for mmix editingPawel Spychalski (DzikuVx)
2018-01-24UI for smix rulesPawel Spychalski (DzikuVx)
2018-01-20load custom smix rulesPawel Spychalski (DzikuVx)
2017-12-28Merge pull request #316 from Afinogen/check-updateKonstantin Sharlaimov
add check new app version
2017-12-28add check new app versionafinogen
2017-12-25Add Linux build (gulp task) #312Sergej Pozdnyakov
For build only linux, without install Wine, added task `release-only-linux`
2017-10-17Make dist task finish before reporting it's doneAlberto García Hierro
runSequence will return immediately, so tasks depending on dist might fail the first time they're run. By explicitely passing the callback, gulp will wait until runSequence runs both clean and dist-build until it considers dist finished.
2017-10-11Use MSPV2_SET_SETTING to set small_angle to 180 on FW presetsAlberto García Hierro
- Add a json file with the types of all settings, generated by the settings generator on INAV. - Implement MSPV2_SETTING and MSPV2_SET_SETTING, which gives us access to any value exposed via settings. - Use this to set small_angle to 180 in FW presets.
2017-09-10Add missing 'release-windows' step to 'release' taskAlberto García Hierro
It won't build the Windows release by default otherwise. Missed accidentally in #235.
2017-09-04Add basic .zip file for distributing Windows appAlberto García Hierro
Package as win32 in a basic .zip file as a portable app
2017-09-04Add support for creating a macOS .zip from gulpAlberto García Hierro
This produces a nice .zip which can be distributed as is. Unfortunately, the only way to produce a signed binary is by generating the macOS app on macOS.
2017-09-04Add app icon on WindowsAlberto García Hierro
2017-09-04Add .icns icon for the macOS appAlberto García Hierro
Otherwise the icon won't show up in the Dock, it will use the default NW.js icon.
2017-09-04Document the build process betterAlberto García Hierro
Add comments in gulpfile.js indicating how to add new files to the build. Add documentation for getting a development environment up and running in the README. Document each task defined in gulpfile.js in the README.
2017-09-04Define build and watch tasks dynamically based on variablesAlberto García Hierro
This significantly reduces the ammount of boilerplate and repetition in gulpfile.js.
2017-09-04Copy js/workers/hex_parser.js to build/Alberto García Hierro
This avoids having to list it only for the dist task
2017-09-04Don't minify JS and CSSAlberto García Hierro
There is little to be gained in runtime performance and it complicates the build.
2017-08-31Add missing js file to 'dist-build' taskAlberto García Hierro
Worker file referenced from OSD tab
2017-08-31Rename 'deploy' related taks to 'minify'Alberto García Hierro
Also, make the minify task use the files created by 'build' as inputs. Now 'dist-build' depends on 'minify', which depends on 'build' so all files are properly regenerated when running the 'dist' task.
2017-08-31Remove redundant pattern in 'dist-build'Alberto García Hierro
'./images/**/*' includes './images/*'
2017-08-31Add gulp task for generating NW.js appsAlberto García Hierro
Also, now that we have support for regenerating all the files in ./build/ properly, we can safely delete it from the repository to clean up commits and PRs. They no longer need to update the generated files in ./build/. Generated apps are stored in ./apps/. Run gulp.js release to generate apps for win32, osx64 and linux64. To package the Chrome app, run gulp.js dist and pack the ./dist/ folder.
2017-08-31Cleanup gulpfile.js, fix minificationAlberto García Hierro
Move outputDir to a constant. Add an output variable which contains the filenames for each output file. Remove usage of 'let' and 'for(... of [Object])' from osd.js, since uglify doesn't support ES6 and babel failed on google-analytics-bundle.js Fix 'deploy-receiver-css'. uglify() was being called as part of the pipeline instead of the correct minifyCSS() call. Let npm sort the deps rather than editing them manually Add missing openlayers dependency
2017-08-06add runcam split suportazol
add peripherals column on ports page fixed ports page will show the rcsplit with apiversion less 1.27.0 move the modeName adjust function to peripherals.js, and add failsafe modename not update when rcsplit available cleanup clean up
2017-06-08Add font-awesome; Add support linksKonstantin (DigitalEntity) Sharlaimov
2017-06-04CSS files moved to src folderPawel Spychalski (DzikuVx)
2017-05-26MSP_FW_CONFIG frame supportPawel Spychalski (DzikuVx)
2017-03-10OpenLayers and OpenStreetMap instead of Google MapsPawel Spychalski (DzikuVx)
2017-03-09lib updatesPawel Spychalski (DzikuVx)
2017-03-09updated libsPawel Spychalski (DzikuVx)
2017-01-27build system - progressPawel Spychalski (DzikuVx)