Skip to content

Commit

Permalink
Transfer repository to ClassiCube organisation
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownShadow200 committed Feb 20, 2024
1 parent 3a7390d commit 134da6f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion GUI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static void DetectBuggyCursors() {
// ..
// However, some X11 video drivers will cause XQueryBestCursor to return width/height 0,
// which will then cause the subsequent 'new Bitmap(width, height)' in XplatUIX11.DefineCursor to fail
// See https://github.com/UnknownShadow200/MCGalaxy/issues/658 for more details
// See https://github.com/ClassiCube/MCGalaxy/issues/658 for more details
try {
Cursor c = Cursors.SizeNWSE;
} catch (ArgumentException ex) {
Expand Down
2 changes: 1 addition & 1 deletion MCGalaxy/Generator/Classic/ClassicGenerator.Utils.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2014-2017 ClassicalSharp | Licensed under BSD-3
// Based on: https://github.com/UnknownShadow200/ClassiCube/wiki/Minecraft-Classic-map-generation-algorithm
// Based on: https://github.com/ClassiCube/ClassiCube/wiki/Minecraft-Classic-map-generation-algorithm
using System;
using System.Collections.Generic;
using MCGalaxy;
Expand Down
2 changes: 1 addition & 1 deletion MCGalaxy/Generator/Classic/ClassicGenerator.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2014-2017 ClassicalSharp | Licensed under BSD-3
// Based on: https://github.com/UnknownShadow200/ClassiCube/wiki/Minecraft-Classic-map-generation-algorithm
// Based on: https://github.com/ClassiCube/ClassiCube/wiki/Minecraft-Classic-map-generation-algorithm
using System;
using System.Collections.Generic;
using MCGalaxy;
Expand Down
2 changes: 1 addition & 1 deletion MCGalaxy/Generator/Classic/Noise.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Source from http://mrl.nyu.edu/~perlin/noise/
// Optimised form as we can always treat Z as being = 0.
// Octave and combined noise based on:
// https://github.com/UnknownShadow200/ClassiCube/wiki/Minecraft-Classic-map-generation-algorithm
// https://github.com/ClassiCube/ClassiCube/wiki/Minecraft-Classic-map-generation-algorithm
using System;

namespace MCGalaxy.Generator.Classic
Expand Down
2 changes: 1 addition & 1 deletion MCGalaxy/Generator/Foliage/ClassicTree.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2014-2017 ClassicalSharp | Licensed under BSD-3
// Based on: https://github.com/UnknownShadow200/ClassiCube/wiki/Minecraft-Classic-map-generation-algorithm
// Based on: https://github.com/ClassiCube/ClassiCube/wiki/Minecraft-Classic-map-generation-algorithm
using System;
using MCGalaxy.Generator.Classic;

Expand Down
6 changes: 3 additions & 3 deletions MCGalaxy/Server/Maintenance/Updater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ namespace MCGalaxy
/// <summary> Checks for and applies software updates. </summary>
public static class Updater
{
public static string SourceURL = "https://github.com/UnknownShadow200/MCGalaxy";
public const string BaseURL = "https://raw.githubusercontent.com/UnknownShadow200/MCGalaxy/master/";
public const string UploadsURL = "https://github.com/UnknownShadow200/MCGalaxy/tree/master/Uploads";
public static string SourceURL = "https://github.com/ClassiCube/MCGalaxy";
public const string BaseURL = "https://raw.githubusercontent.com/ClassiCube/MCGalaxy/master/";
public const string UploadsURL = "https://github.com/ClassiCube/MCGalaxy/tree/master/Uploads";

const string CurrentVersionURL = BaseURL + "Uploads/current_version.txt";
#if MCG_STANDALONE
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ MCGalaxy is a fully featured and customisable **ClassiCube Server Software** bas

**Setup**
-----------------
Download the latest MCGalaxy release [from here](https://github.com/UnknownShadow200/MCGalaxy/releases)
Download the latest MCGalaxy release [from here](https://github.com/ClassiCube/MCGalaxy/releases)
* Windows: You need to install .NET framework 4.0. Windows 8/10/11 already have this included.
* macOS: You need to install the [Mono framework](https://www.mono-project.com).
* Linux: You need to install the [Mono framework](https://www.mono-project.com). (or just `apt install mono-complete` if on Ubuntu)
Expand Down Expand Up @@ -95,10 +95,10 @@ See LICENSE for MCGalaxy license, and license.txt for code used from other softw
Docker support
-----------------
Some **unofficial** dockerfiles for running MCGalaxy in Docker:
* [using Mono](https://github.com/UnknownShadow200/MCGalaxy/pull/577/files)
* [using .NET core](https://github.com/UnknownShadow200/MCGalaxy/pull/629/files)
* [using Mono](https://github.com/ClassiCube/MCGalaxy/pull/577/files)
* [using .NET core](https://github.com/ClassiCube/MCGalaxy/pull/629/files)

Documentation
-----------------
* [General documentation](https://github.com/UnknownShadow200/MCGalaxy/wiki)
* [General documentation](https://github.com/ClassiCube/MCGalaxy/wiki)
* [API documentation](https://github.com/ClassiCube/MCGalaxy-API-Documentation)

0 comments on commit 134da6f

Please sign in to comment.