Skip to content

Commit

Permalink
Change URLs from SourceForge to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
aurhat committed Aug 19, 2017
1 parent 4ec90e5 commit 419f464
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/CslFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@ wxString CslFrame::CheckVersion(wxInputStream& input)
wxString::Format(_("A new %s version (%s)\n of Cube Server Lister is available.\n"),
type.c_str(), version.c_str()),
wxArtProvider::GetBitmap(wxART_INFORMATION ,wxART_CMN_DIALOG),
CSL_WEBADDR_STR);
wxString(CSL_WEBADDR_STR "/releases"));
dlg->Show();

return wxString::Format(_("New version %s"), version.c_str());
Expand All @@ -1226,7 +1226,7 @@ void CslFrame::InitProtocolInputs()

m_protocolInputCookies.push_back(
new CslProtocolInputCookie(CslProtocolInputCookie::VERSION_CHECK,
wxString(CSL_WEBADDR_STR wxT("/latest.txt")),
wxString(CSL_WEBSITE_STR wxT("/latest.txt")),
//wxString(wxT("http://localhost/latest.txt")),
wxFileName(),
wxString::Format(_("Checking for new %s version."), CSL_NAME_SHORT_STR),
Expand Down
4 changes: 3 additions & 1 deletion src/engine/CslVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@
#define CSL_DESCRIPTION_STR _("Tool to monitor cubeengine-based servers.")
#define CSL_COPYRIGHT_STR _(__CSL_DESCRIPTION_STR)

#define CSL_WEBADDR_STR wxT("http://cubelister.sourceforge.net")
//#define CSL_WEBADDR_STR wxT("http://cubelister.sourceforge.net")
#define CSL_WEBADDR_STR wxT("https://github.com/aurhat/cubelister")
#define CSL_WEBSITE_STR wxT("http://aurhat.github.io/cubelister")

#ifdef UNICODE
#if wxUSE_UNICODE_UTF8
Expand Down

0 comments on commit 419f464

Please sign in to comment.