Skip to content

Commit

Permalink
RIP download servers :(
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
  • Loading branch information
itdelatrisu committed Mar 23, 2017
1 parent f685be1 commit 8fe59a9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 2 additions & 0 deletions src/itdelatrisu/opsu/downloads/servers/BloodcatServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@

/**
* Download server: http://bloodcat.com/osu/
* <p>
* <i>This server uses captchas as of March 2017.</i>
*/
public class BloodcatServer extends DownloadServer {
/** Server name. */
Expand Down
2 changes: 2 additions & 0 deletions src/itdelatrisu/opsu/downloads/servers/HexideServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@

/**
* Download server: https://osu.hexide.com/
* <p>
* <i>This server is offline as of March 2017.</i>
*/
public class HexideServer extends DownloadServer {
/** Server name. */
Expand Down
2 changes: 2 additions & 0 deletions src/itdelatrisu/opsu/downloads/servers/YaSOnlineServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@

/**
* Download server: http://osu.yas-online.net/
* <p>
* <i>This server no longer hosts downloads as of March 2017.</i>
*/
public class YaSOnlineServer extends DownloadServer {
/** Server name. */
Expand Down
8 changes: 1 addition & 7 deletions src/itdelatrisu/opsu/states/DownloadsMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,9 @@
import itdelatrisu.opsu.downloads.Download;
import itdelatrisu.opsu.downloads.DownloadList;
import itdelatrisu.opsu.downloads.DownloadNode;
import itdelatrisu.opsu.downloads.servers.BloodcatServer;
import itdelatrisu.opsu.downloads.servers.DownloadServer;
import itdelatrisu.opsu.downloads.servers.HexideServer;
import itdelatrisu.opsu.downloads.servers.MengSkyServer;
import itdelatrisu.opsu.downloads.servers.MnetworkServer;
import itdelatrisu.opsu.downloads.servers.YaSOnlineServer;
import itdelatrisu.opsu.options.Options;
import itdelatrisu.opsu.ui.Colors;
import itdelatrisu.opsu.ui.DropdownMenu;
Expand Down Expand Up @@ -82,11 +79,8 @@ public class DownloadsMenu extends BasicGameState {

/** Available beatmap download servers. */
private static final DownloadServer[] SERVERS = {
new BloodcatServer(),
new MengSkyServer(),
new YaSOnlineServer(),
new MnetworkServer(),
new HexideServer()
new MnetworkServer()
};

/** The current list of search results. */
Expand Down

2 comments on commit 8fe59a9

@tpenguinltg
Copy link
Contributor

@tpenguinltg tpenguinltg commented on 8fe59a9 Mar 24, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This might be just you. I still seem to be getting data from them.

EDIT: Never mind, I didn't try actually downloading a beatmap.

@itdelatrisu
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, and maybe the site owners haven't noticed yet either because it's only their download hosts that are down. :(

Oh well, as long as MengSky doesn't go down... D:

Please # to comment.