Update references of Google Code to GitHub and update copyright year.

This commit is contained in:
Shadox Fix 2014-06-18 21:33:14 +02:00
parent afc4a37058
commit d3a55ccb79
4 changed files with 7 additions and 7 deletions

View File

@ -32,7 +32,7 @@ AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
wxBitmap(iDolphinLogo)); wxBitmap(iDolphinLogo));
const wxString Text = wxString::Format(_("Dolphin %s\n" const wxString Text = wxString::Format(_("Dolphin %s\n"
"Copyright (c) 2003-2013+ Dolphin Team\n" "Copyright (c) 2003-2014+ Dolphin Team\n"
"\n" "\n"
"Branch: %s\n" "Branch: %s\n"
"Revision: %s\n" "Revision: %s\n"
@ -43,7 +43,7 @@ AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
"Today Dolphin is an open source project with many\n" "Today Dolphin is an open source project with many\n"
"contributors, too many to list.\n" "contributors, too many to list.\n"
"If interested, just go check out the project page at\n" "If interested, just go check out the project page at\n"
"http://code.google.com/p/dolphin-emu/ .\n" "https://github.com/dolphin-emu/dolphin/ .\n"
"\n" "\n"
"Special thanks to Bushing, Costis, CrowTRobo,\n" "Special thanks to Bushing, Costis, CrowTRobo,\n"
"Marcan, Segher, Titanik, or9 and Hotquik for their\n" "Marcan, Segher, Titanik, or9 and Hotquik for their\n"

View File

@ -195,7 +195,7 @@ EVT_MENU(wxID_OPEN, CFrame::OnOpen)
EVT_MENU(wxID_EXIT, CFrame::OnQuit) EVT_MENU(wxID_EXIT, CFrame::OnQuit)
EVT_MENU(IDM_HELPWEBSITE, CFrame::OnHelp) EVT_MENU(IDM_HELPWEBSITE, CFrame::OnHelp)
EVT_MENU(IDM_HELPONLINEDOCS, CFrame::OnHelp) EVT_MENU(IDM_HELPONLINEDOCS, CFrame::OnHelp)
EVT_MENU(IDM_HELPGOOGLECODE, CFrame::OnHelp) EVT_MENU(IDM_HELPGITHUB, CFrame::OnHelp)
EVT_MENU(wxID_ABOUT, CFrame::OnHelp) EVT_MENU(wxID_ABOUT, CFrame::OnHelp)
EVT_MENU(wxID_REFRESH, CFrame::OnRefresh) EVT_MENU(wxID_REFRESH, CFrame::OnRefresh)
EVT_MENU(IDM_PLAY, CFrame::OnPlay) EVT_MENU(IDM_PLAY, CFrame::OnPlay)

View File

@ -351,7 +351,7 @@ void CFrame::CreateMenu()
// helpMenu->Append(wxID_HELP, _("&Help")); // helpMenu->Append(wxID_HELP, _("&Help"));
helpMenu->Append(IDM_HELPWEBSITE, _("Dolphin &Web Site")); helpMenu->Append(IDM_HELPWEBSITE, _("Dolphin &Web Site"));
helpMenu->Append(IDM_HELPONLINEDOCS, _("Online &Documentation")); helpMenu->Append(IDM_HELPONLINEDOCS, _("Online &Documentation"));
helpMenu->Append(IDM_HELPGOOGLECODE, _("Dolphin at &Google Code")); helpMenu->Append(IDM_HELPGITHUB, _("Dolphin at &GitHub"));
helpMenu->AppendSeparator(); helpMenu->AppendSeparator();
helpMenu->Append(wxID_ABOUT, _("&About...")); helpMenu->Append(wxID_ABOUT, _("&About..."));
m_MenuBar->Append(helpMenu, _("&Help")); m_MenuBar->Append(helpMenu, _("&Help"));
@ -1324,8 +1324,8 @@ void CFrame::OnHelp(wxCommandEvent& event)
case IDM_HELPONLINEDOCS: case IDM_HELPONLINEDOCS:
WxUtils::Launch("https://dolphin-emu.org/docs/guides/"); WxUtils::Launch("https://dolphin-emu.org/docs/guides/");
break; break;
case IDM_HELPGOOGLECODE: case IDM_HELPGITHUB:
WxUtils::Launch("https://code.google.com/p/dolphin-emu/"); WxUtils::Launch("https://github.com/dolphin-emu/dolphin/");
break; break;
} }
} }

View File

@ -118,7 +118,7 @@ enum
IDM_HELPWEBSITE, // Help menu IDM_HELPWEBSITE, // Help menu
IDM_HELPONLINEDOCS, IDM_HELPONLINEDOCS,
IDM_HELPGOOGLECODE, IDM_HELPGITHUB,
IDM_CONFIG_GFX_BACKEND, IDM_CONFIG_GFX_BACKEND,
IDM_CONFIG_DSP_EMULATOR, IDM_CONFIG_DSP_EMULATOR,