Commit Graph

2785 Commits (06efd870bd0a8e9e46329039c146561eb3722abb)
 

Author SHA1 Message Date
Sergej Pozdnyakov 6cd87dbd64 add first version mission planer 7 years ago
Sergej Pozdnyakov a058f0a96c Merge branch 'master' of https://github.com/iNavFlight/inav-configurator 7 years ago
Sergej b669fa4d16 fix firmware version, moved compass calibrate (#323) 7 years ago
Sergej Pozdnyakov 025f2e743f Merge branch 'master' of https://github.com/iNavFlight/inav-configurator 7 years ago
Konstantin Sharlaimov 8243e36d0e
Merge pull request #322 from Afinogen/fix-open-link
Fix open link
7 years ago
Konstantin Sharlaimov 00baf9596d
Merge pull request #20 from iNavFlight/calibration-tab
Calibration tab in feature branch
7 years ago
Sergej Pozdnyakov 7ed32e2d39 fix #320 7 years ago
Sergej Pozdnyakov 4de9d6ab3a Merge branch 'master' of https://github.com/iNavFlight/inav-configurator 7 years ago
Konstantin Sharlaimov (DigitalEntity) 9942e9508e Calibration tab. Squashed commit. Kudos to @DzikuVx, @skaman82, @Afinogen 7 years ago
Konstantin Sharlaimov 35eb73e5cb
Merge pull request #316 from Afinogen/check-update
add check new app version
7 years ago
afinogen d5a8fd2e18 fix message 7 years ago
afinogen 6ccba50734 add check new app version 7 years ago
Konstantin Sharlaimov 62c32128b0
Merge pull request #313 from Afinogen/make-linux
Add Linux build (gulp task)
7 years ago
Konstantin Sharlaimov 64a01b8f46
Merge pull request #314 from Afinogen/app-size
Save the last used size/position
7 years ago
Sergej Pozdnyakov cacc4522c2 fix error for `require` 7 years ago
afinogen db002fb1f5 Save the last used size/position for issue #234
Need to check whether my window closing handler has affected on function createdWindow.onClosed
I did not understand how it works.
7 years ago
Sergej Pozdnyakov 14dd00fb7b Add Linux build (gulp task) #312
For build only linux, without install Wine, added task `release-only-linux`
7 years ago
Paweł Spychalski 216ff35b38
Merge pull request #310 from iNavFlight/dzikuvx-readme-standalone-apps
Updated README for standalone installation for Win and Mac users
7 years ago
Pawel Spychalski (DzikuVx) 5a74287c1f Updated README for standalone installation for Win and Mac users 7 years ago
Konstantin Sharlaimov c559b86d82
Merge pull request #308 from iNavFlight/de_sponsor_logos
Use sponsor logos
7 years ago
Konstantin Sharlaimov (DigitalEntity) 24fc53a5c0 Use sponsor logos 7 years ago
Paweł Spychalski 2fef5535ef
Merge pull request #305 from iNavFlight/colorfix
Fix toggle color in OSD Tab
7 years ago
skaman82 9e7be86de0 Fix toggle color 7 years ago
Paweł Spychalski f7bef5306e
Merge pull request #303 from iNavFlight/agh_fix_legacy_rx
Fix incorrectly swapped bits for legacy RX
7 years ago
Alberto García Hierro c18807405e Fix incorrectly swapped bits for legacy RX
Code for handling versions using feature bits for RX had the
feature bits for RX_PPM and RX_PWM swapped, causing incorrectly
displayed values.
7 years ago
Konstantin Sharlaimov 2236004ae1
Merge pull request #299 from iNavFlight/agh_rtc_functions
Add MSPHelper.getRTC() and MSPHelper.setRTC()
7 years ago
Alberto García Hierro 89831dd1d7 Add MSPHelper.getRTC() and MSPHelper.setRTC()
Functions for getting and setting the RTC. Not used for now, but
can be manually called from the debug console for testing RTC
related changes.
7 years ago
Tim Eckel 8a803b06a3 Change the OSD config to show ACRO instead of the defunct STAB flight mode placeholder 7 years ago
Konstantin Sharlaimov (DigitalEntity) 55516a608e Version bump to 1.8.1 7 years ago
Konstantin Sharlaimov 7929a82e5c Merge pull request #285 from iNavFlight/agh_fix_dist
Make dist task finish before reporting it's done
7 years ago
Konstantin Sharlaimov 91760b53f2 Merge pull request #290 from iNavFlight/agh_osd_rtc_preview
Fix preview of RTC OSD indicator
7 years ago
Konstantin Sharlaimov d9d10cc573 Merge pull request #291 from iNavFlight/osd_vario_help
Add descriptions and help messages for OSD vario elements
7 years ago
Konstantin Sharlaimov 8159c454ce Merge pull request #295 from iNavFlight/agh_rssi_channel
Allow RSSI channel only on channels >= 5
7 years ago
Alberto García Hierro 24f9823c1f Allow RSSI channel only on channels >= 5
Also, show CH# (e.g. CH7) rather than just the bare number in the
combobox, makes it more obvious that you're selecting an actual
channel number rather than an AUX channel number.
7 years ago
Paweł Spychalski de7ecb1e6c Merge pull request #293 from azolyoung/update-rcsplit-to-rcdevice
Change 'RunCam Split' to 'RunCam Device'
7 years ago
azol eddf5473f4 Change 'RunCam Split' to 'RunCam Device' 7 years ago
Alberto García Hierro 2117a54f96 Add descriptions and help messages for OSD vario elements
Added help for VARIO and description and help for VARIO_NUM.
7 years ago
Alberto García Hierro e58513e9ae Fix preview of RTC OSD indicator
There was an extra space between the clock symbol and the hour
7 years ago
Konstantin Sharlaimov aba2fc421c Merge pull request #289 from iNavFlight/agh_fix_legacy_rx
Don't test for RX_NONE on INAV <= 1.7.3
7 years ago
Alberto García Hierro e3821b8a3e Don't test for RX_NONE on INAV <= 1.7.3
Since in RX_NONE bit is undefined, bit_check() will always return
true. Fix is just removing RX_NONE from the available RX types
on versions using feature bits for RX, since they won't allow
not having a RX configured (FC will fall back to RX_PPM).

Fixes #287
7 years ago
Konstantin Sharlaimov 113c763814 Merge pull request #286 from iNavFlight/agh_fix_presets
Use async URL loading for the JSON setting definitions
7 years ago
Alberto García Hierro 850632bfee Use async URL loading for the JSON setting definitions
Chrome disallows synchronous URL loading, so all functions requiring
the JSON definitions for the settings over MSPv2 need to be async.
This required rewriting MSPHelper._getSetting() and all its callers
using promises.

Fixes #284
7 years ago
Alberto García Hierro ef906c1af2 Make dist task finish before reporting it's done
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.
7 years ago
Konstantin Sharlaimov (DigitalEntity) 244b646bd2 Bump version to 1.8.0 7 years ago
Konstantin Sharlaimov 0fcb5790a6 Merge pull request #281 from iNavFlight/rth_allow_landing_fs
Add support for the new value FS_ONLY in nav_rth_allow_landing
7 years ago
Konstantin Sharlaimov 8e12e3e074 Merge pull request #282 from iNavFlight/fix_altitide_typo
Fix typo: Altitide -> Altitude
7 years ago
Alberto García Hierro fa47265a05 Fix typo: Altitide -> Altitude 7 years ago
Alberto García Hierro fb0605d639 Add support for the new value FS_ONLY in nav_rth_allow_landing 7 years ago
Paweł Spychalski ada14ed6cb Merge pull request #280 from fiam/rx_map_fix
Fix RC map validation code.
7 years ago
Alberto García Hierro 7c9154601a Fix RC map validation code.
Small typo introduced in the renaming of AUX channels.
7 years ago