Skip to content

Commit 64a54d6

Browse files
committed
update readme etc
1 parent 01cd3df commit 64a54d6

File tree

10 files changed

+22
-14
lines changed

10 files changed

+22
-14
lines changed

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ It runs as an app within Google Chrome and allows you to configure the ARDUPILOT
66

77
Various types of aircraft are supported by the tool and by ARDUPILOT, e.g. quadcopters, hexacopters, octocopters and fixed-wing aircraft.
88

9+
![pic1](https://github.com/davidbuzz/ardu-configurator/blob/master/configurator1.png?raw=true)
10+
![pic2](https://github.com/davidbuzz/ardu-configurator/blob/master/configurator2.png?raw=true)
11+
![pic3](https://github.com/davidbuzz/ardu-configurator/blob/master/configurator3.png?raw=true)
12+
![pic4](https://github.com/davidbuzz/ardu-configurator/blob/master/configurator4.png?raw=true)
13+
![pic5](https://github.com/davidbuzz/ardu-configurator/blob/master/configurator5.png?raw=true)
14+
![pic6](https://github.com/davidbuzz/ardu-configurator/blob/master/configurator6.png?raw=true)
15+
16+
917
## ARDUPILOT Configurator start minimized, what should I do?
1018

1119
You have to remove `C:\Users%Your_UserNname%\AppData\Local\ARDUPILOT-configurator` folder and all its content.
@@ -20,23 +28,23 @@ Depending on target operating system, _ARDUPILOT Configurator_ is distributed as
2028

2129
### Windows
2230

23-
1. Visit [release page](https://github.com/davidbuzz/no-longer-inav-configurator/releases)
31+
1. Visit [release page](https://github.com/davidbuzz/ardu-configurator/releases)
2432
1. Download Configurator for Windows platform (win32 or win64 is present)
2533
1. Extract ZIP archive
2634
1. Run ARDUPILOT Configurator app from unpacked folder
2735
1. Configurator is not signed, so you have to allow Windows to run untrusted application. There might be a monit for it during first run
2836

2937
### Linux
3038

31-
1. Visit [release page](https://github.com/davidbuzz/no-longer-inav-configurator/releases)
39+
1. Visit [release page](https://github.com/davidbuzz/ardu-configurator/releases)
3240
1. Download Configurator for Linux platform (linux32 and linux64 are present)
3341
1. Extract tar.gz archive
3442
1. Make the ARDUPILOT-configurator file executable (chmod +x ARDUPILOT-configurator)
3543
1. Run ARDUPILOT Configurator app from unpacked folder
3644

3745
### Mac
3846

39-
1. Visit [release page](https://github.com/davidbuzz/no-longer-inav-configurator/releases)
47+
1. Visit [release page](https://github.com/davidbuzz/ardu-configurator/releases)
4048
1. Download Configurator for Mac platform
4149
1. Extract ZIP archive
4250
1. Run ARDUPILOT Configurator
@@ -134,7 +142,7 @@ everything, hardware is not working or have any other _support_ problem, please
134142

135143
For ARDUPILOT configurator issues raise them here
136144

137-
https://github.com/davidbuzz/no-longer-inav-configurator/issues
145+
https://github.com/davidbuzz/ardu-configurator/issues
138146

139147
For ARDUPILOT firmware issues raise them here
140148

_locales/en/messages.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3246,7 +3246,7 @@
32463246
"message": "New Configurator version available."
32473247
},
32483248
"appUpdateNotificationDescription": {
3249-
"message": "Please visit the <a href=\"https://github.com/davidbuzz/no-longer-inav-configurator/releases\" target=\"_blank\">website</a> to read the release notes and download."
3249+
"message": "Please visit the <a href=\"https://github.com/davidbuzz/ardu-configurator/releases\" target=\"_blank\">website</a> to read the release notes and download."
32503250
},
32513251
"closeUpdateBtn": {
32523252
"message": "Close"
@@ -3263,12 +3263,12 @@
32633263
"saveMissionButton": {
32643264
"message": "Save mission to FC"
32653265
},
3266-
"loadEepromMissionButton": {
3267-
"message": "Load Eeprom mission"
3268-
},
3269-
"saveEepromMissionButton": {
3270-
"message": "Save Eeprom mission"
3271-
},
3266+
// "loadEepromMissionButton": {
3267+
// "message": "Load Eeprom mission"
3268+
// },
3269+
// "saveEepromMissionButton": {
3270+
// "message": "Save Eeprom mission"
3271+
// },
32723272
"loadFileMissionButton": {
32733273
"message": "Load file"
32743274
},
@@ -3312,7 +3312,7 @@
33123312
"message": "Action Menu"
33133313
},
33143314
"useOnlyStandalone": {
3315-
"message": "Use stand-alone application.<br> Please visit the <a href=\"https://github.com/davidbuzz/no-longer-inav-configurator/releases\" target=\"_blank\">website</a> to read the release notes and download."
3315+
"message": "Use stand-alone application.<br> Please visit the <a href=\"https://github.com/davidbuzz/ardu-configurator/releases\" target=\"_blank\">website</a> to read the release notes and download."
33163316
},
33173317
"eeprom_load_ok": {
33183318
"message": "EEPROM <span style=\"color: #37a8db\">loaded</span>"

configurator1.png

297 KB
Loading

configurator2.png

159 KB
Loading

configurator3.png

317 KB
Loading

configurator4.png

356 KB
Loading

configurator5.png

281 KB
Loading

configurator6.png

196 KB
Loading

js/appUpdater.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var appUpdater = appUpdater || {};
44

55
appUpdater.checkRelease = function (currVersion) {
66
var modalStart;
7-
$.get('https://api.github.com/repos/davidbuzz/no-longer-inav-configurator/releases', function (releaseData) {
7+
$.get('https://api.github.com/repos/davidbuzz/ardu-configurator/releases', function (releaseData) {
88
GUI.log('Loaded [configurator] release information from GitHub.');
99
//Git return sorted list, 0 - last release
1010

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"repository": {
2525
"type": "git",
26-
"url": "github.com/davidbuzz/no-longer-inav-configurator"
26+
"url": "github.com/davidbuzz/ardu-configurator"
2727
},
2828
"author": "davidbuzz",
2929
"license": "GPL-3.0",

0 commit comments

Comments
 (0)