Skip to content

Commit

Permalink
moved URLs to ardupilot github
Browse files Browse the repository at this point in the history
  • Loading branch information
tridge committed Aug 22, 2016
1 parent f3e3995 commit b4cebd5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions MAVProxy/modules/mavproxy_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, mpstate):
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))])

Expand All @@ -102,7 +102,7 @@ def cmd_help(self, args):
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()

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -12,4 +12,4 @@ License

MAVProxy is released under the GNU General Public License v3 or later

[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Dronecode/MAVProxy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ArduPilot/MAVProxy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ def package_files(directory):
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=[
Expand Down
4 changes: 2 additions & 2 deletions windows/mavproxy.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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

0 comments on commit b4cebd5

Please sign in to comment.