diff --git a/README.md b/README.md
index d16b43e..d6d2579 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ libraries for audio decoding and wxWidgets for the GUI.
Spek is available on *BSD, GNU/Linux, Windows and Mac OS X.
-Find out more about Spek on its website:
+Find out more about Spek on its website:
## Spek 0.8.2 - Released 2013-02-24
diff --git a/dist/debian/control b/dist/debian/control
index dfeb0cd..21644f9 100644
--- a/dist/debian/control
+++ b/dist/debian/control
@@ -12,7 +12,7 @@ Build-Depends: debhelper (>= 9),
libwxgtk2.8-dev,
wx-common
Standards-Version: 3.9.4
-Homepage: http://spek-project.org/
+Homepage: http://spek.cc/
Vcs-Git: git://github.com/alexkay/spek.git
Vcs-Browser: https://github.com/alexkay/spek
diff --git a/dist/debian/copyright b/dist/debian/copyright
index b8c8c41..e8426be 100644
--- a/dist/debian/copyright
+++ b/dist/debian/copyright
@@ -4,7 +4,7 @@ This work was packaged for Debian by:
It was downloaded from:
- http://spek-project.org/
+ http://spek.cc/
Upstream Author:
diff --git a/dist/freebsd/pkg-descr b/dist/freebsd/pkg-descr
index 171bde0..34a80bb 100644
--- a/dist/freebsd/pkg-descr
+++ b/dist/freebsd/pkg-descr
@@ -1,4 +1,4 @@
Spek helps to analyse your audio files by showing their spectrogram.
Spek supports all popular lossy and lossless audio file formats.
-WWW: http://spek-project.org/
+WWW: http://spek.cc/
diff --git a/dist/win/spek.wxs.in b/dist/win/spek.wxs.in
index b8f7696..fbdb0cb 100644
--- a/dist/win/spek.wxs.in
+++ b/dist/win/spek.wxs.in
@@ -9,7 +9,7 @@
-
+
diff --git a/src/spek-window.cc b/src/spek-window.cc
index a49953d..ee8e262 100644
--- a/src/spek-window.cc
+++ b/src/spek-window.cc
@@ -311,7 +311,7 @@ void SpekWindow::on_preferences(wxCommandEvent&)
void SpekWindow::on_help(wxCommandEvent&)
{
wxLaunchDefaultBrowser(
- wxString::Format(wxT("http://spek-project.org/man-%s.html"), wxT(PACKAGE_VERSION))
+ wxString::Format(wxT("http://spek.cc/man-%s.html"), wxT(PACKAGE_VERSION))
);
}
@@ -337,7 +337,7 @@ void SpekWindow::on_about(wxCommandEvent&)
info.SetCopyright(_("Copyright (c) 2010-2013 Alexander Kojevnikov and contributors"));
info.SetDescription(this->description);
#ifdef OS_UNIX
- info.SetWebSite(wxT("http://spek-project.org/"), _("Spek Website"));
+ info.SetWebSite(wxT("http://spek.cc/"), _("Spek Website"));
info.SetIcon(wxArtProvider::GetIcon(wxT("spek"), wxART_OTHER, wxSize(128, 128)));
#endif
wxAboutBox(info);
@@ -351,7 +351,7 @@ void SpekWindow::on_notify(wxCommandEvent&)
void SpekWindow::on_visit(wxCommandEvent&)
{
- wxLaunchDefaultBrowser(wxT("http://spek-project.org"));
+ wxLaunchDefaultBrowser(wxT("http://spek.cc"));
}
void SpekWindow::on_close(wxCommandEvent& event)
@@ -387,7 +387,7 @@ static void * check_version(void *p)
// Get the version number.
wxString version;
wxHTTP http;
- if (http.Connect(wxT("spek-project.org"))) {
+ if (http.Connect(wxT("spek.cc"))) {
wxInputStream *stream = http.GetInputStream(wxT("/version"));
if (stream) {
wxStringOutputStream out(&version);
diff --git a/web/index.html b/web/index.html
index c6f51b8..7d68ea2 100644
--- a/web/index.html
+++ b/web/index.html
@@ -39,7 +39,7 @@
diff --git a/web/man-0.8.0.html b/web/man-0.8.0.html
index 66b786d..ff9a382 100644
--- a/web/man-0.8.0.html
+++ b/web/man-0.8.0.html
@@ -73,7 +73,7 @@
DISTRIBUTION
The latest version of Spek may be downloaded from
- http://spek-project.org.
+ http://spek.cc.
diff --git a/web/man-0.8.1.html b/web/man-0.8.1.html
index 2798f13..b7b4093 100644
--- a/web/man-0.8.1.html
+++ b/web/man-0.8.1.html
@@ -73,7 +73,7 @@
DISTRIBUTION
The latest version of Spek may be downloaded from
- http://spek-project.org.
+ http://spek.cc.
diff --git a/web/man-0.8.2.html b/web/man-0.8.2.html
index de7351d..506bb92 100644
--- a/web/man-0.8.2.html
+++ b/web/man-0.8.2.html
@@ -73,7 +73,7 @@
DISTRIBUTION
The latest version of Spek may be downloaded from
- http://spek-project.org.
+ http://spek.cc.
diff --git a/web/nginx.conf b/web/nginx.conf
index 5766094..8b2e55e 100644
--- a/web/nginx.conf
+++ b/web/nginx.conf
@@ -1,16 +1,16 @@
server {
listen 80;
- server_name www.spek-project.org;
- rewrite ^ http://spek-project.org$request_uri?;
+ server_name www.spek.cc .spek-project.org;
+ rewrite ^ http://spek.cc$request_uri? permanent;
}
server {
listen 80;
- server_name spek-project.org;
+ server_name spek.cc;
root /home/alexander/spek/static;
location / {
access_log off;
expires 1d;
}
-}
\ No newline at end of file
+}