From b4cebd52471831203e062c080dc2d030f5de62b3 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell <andrew@tridgell.net> Date: Tue, 23 Aug 2016 08:34:00 +1000 Subject: [PATCH] moved URLs to ardupilot github --- MAVProxy/modules/mavproxy_help.py | 4 ++-- README.md | 4 ++-- setup.py | 4 ++-- windows/mavproxy.iss | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/MAVProxy/modules/mavproxy_help.py b/MAVProxy/modules/mavproxy_help.py index 0d6493a..7d8364f 100644 --- a/MAVProxy/modules/mavproxy_help.py +++ b/MAVProxy/modules/mavproxy_help.py @@ -76,7 +76,7 @@ class HelpModule(mp_module.MPModule): if mp_util.has_wxpython: self.menu_added_console = False self.menu = MPMenuSubMenu('Help', - items=[MPMenuItem('MAVProxy website', 'MAVProxy website', '', handler=MPMenuOpenWeblink('http://dronecode.github.io/MAVProxy/')), + items=[MPMenuItem('MAVProxy website', 'MAVProxy website', '', handler=MPMenuOpenWeblink('http://ardupilot.github.io/MAVProxy/')), MPMenuItem('Check for Updates', 'Check for Updates', '', handler=MPMenuChildMessageDialog(title="Updates", message=self.newversion)), MPMenuItem('About', 'About', '', handler=MPMenuChildMessageDialog(title="About MAVProxy", message="MAVProxy Version " + self.version + "\nOS: " + self.host + "\nPython " + self.pythonversion + "\nWXPython " + self.wxVersion))]) @@ -102,7 +102,7 @@ class HelpModule(mp_module.MPModule): if args[0] == "about": print("MAVProxy Version " + self.version + "\nOS: " + self.host + "\nPython " + self.pythonversion) elif args[0] == "site": - print("See http://dronecode.github.io/MAVProxy/ for documentation") + print("See http://ardupilot.github.io/MAVProxy/ for documentation") else: self.print_usage() diff --git a/README.md b/README.md index fdbf614..acbd278 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ MAVProxy This is a MAVLink ground station written in python. -Please see http://Dronecode.github.io/MAVProxy/ for more information +Please see http://ardupilot.github.io/MAVProxy/ for more information This ground station was developed as part of the CanberraUAV OBC team entry @@ -12,4 +12,4 @@ License MAVProxy is released under the GNU General Public License v3 or later -[](https://gitter.im/Dronecode/MAVProxy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[](https://gitter.im/ArduPilot/MAVProxy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) diff --git a/setup.py b/setup.py index 5eb06d8..44753ff 100644 --- a/setup.py +++ b/setup.py @@ -30,9 +30,9 @@ control modules. MAVProxy is extensible via a modules system - see the modules subdirectory for some example modules. MAVProxy was developed by CanberraUAV for use in the 2012 Outback Challenge, and includes a module for the CanberraUAV search and rescue system. See -http://Dronecode.github.io/MAVProxy/ for more information +http://ardupilot.github.io/MAVProxy/ for more information on how to use MAVProxy.''', - url='https://github.com/Dronecode/MAVProxy', + url='https://github.com/ArduPilot/MAVProxy', author='Andrew Tridgell', author_email='andrew@tridgell.net', classifiers=[ diff --git a/windows/mavproxy.iss b/windows/mavproxy.iss index c23592a..3e928f5 100644 --- a/windows/mavproxy.iss +++ b/windows/mavproxy.iss @@ -6,7 +6,7 @@ ; Note MyAppVersion is defined in MAVProxyWinBuild.bat ; #define MyAppVersion {code:GetVersion} #define MyAppPublisher "Andrew Tridgell" -#define MyAppURL "http://Dronecode.github.io/MAVProxy" +#define MyAppURL "http://ardupilot.github.io/MAVProxy" #define MyAppExeName "mavproxy.exe" [Setup] @@ -50,7 +50,7 @@ Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" Name: "{group}\MAVExplorer"; Filename: "{app}\MAVExplorer.exe" Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon Name: "{group}\{cm:UninstallProgram, {#MyAppName}}"; Filename: "{uninstallexe}" -Name: "{group}\Documentation"; Filename: "http://Dronecode.github.io/MAVProxy/" +Name: "{group}\Documentation"; Filename: "http://ardupilot.github.io/MAVProxy/" [Run] Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent -- GitLab