Skip to content

Commit

Permalink
Release 1.8.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownShadow200 committed Jul 5, 2016
1 parent f2c9112 commit 31f8141
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
v 1.8.7.4
Added: /server backup table [name], for only backing up a particular table in the database
Added: /server backup lite, which backs up everything except undo and blockdb files
Added: Can use + before a skin name in /skin to retrieve skin from minecraft.net's skin server instead
Added: Can change colour and display name of bots with /color bot [name] and /nick bot [name]
Added: /ignore titles and /ignore nicks for chat
Added: Add /sphere circle which draws a circle
Fixed: /highlight not showing changes after the player has previously been undone
Fixed: Being unable to use spaces in team name
Fixed: Failing to backup one file in /server backup crashing the whole server
Fixed: /color not updating your own name tag colour
Fixed: rank/rankup item vanishing from economy after server restart
Fixed: Custom colours > 6 characters being truncated in database on mysql backend
Fixed: Being unable to do certain /os sub-commands when the perbuild is higher than your rank
Improved: Level sending optimised to be more responsive after /goto is first done
Improved: Help for /os cleaned up
Improved: Can use command aliases from IRC and console now
Improved: Show relative time in /seen in addition to absolute time
Improved: /centre places multiple blocks if axis length is even.
Removed: /setpass and /resetpass, they are now part of /pass with /pass set and /pass reset
Removed: /ozone, made it part of /zone with /zone map.

v 1.8.7.3
Added: Review queue shows to appropriate staff on joining
Added: Multiple commands in a single /mb block
Expand Down
2 changes: 1 addition & 1 deletion Commands/Information/CmdHelp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ static void PrintRanks(Player p) {
foreach (Group grp in Group.GroupList) {
if (grp.Permission >= LevelPermission.Nobody) continue; // Note that -1 means max undo. Undo anything and everything.
int count = grp.playerList.Count;
Player.Message(p, "{0} ({1}) %S- Cmd: {2}, Undo: {3}, Perm: {4}",
Player.Message(p, "{0} %S- Cmd: {2}, Undo: {3}, Perm: {4}",
grp.ColoredName, count, grp.maxBlocks,
grp.maxUndo == -1 ? "max" : grp.maxUndo.ToString(), (int)grp.Permission);
}
Expand Down
Binary file modified Uploads/MCGalaxy.exe
Binary file not shown.
Binary file modified Uploads/MCGalaxy_.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Uploads/current_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.7.3
1.8.7.4
2 changes: 1 addition & 1 deletion properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ permissions and limitations under the Licenses.
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("24d9085c-78ba-4f53-b69c-f2b52153683f")]

[assembly: AssemblyVersion("1.8.7.3")]
[assembly: AssemblyVersion("1.8.7.4")]

// Version information for an assembly consists of the following four values:
//
Expand Down

0 comments on commit 31f8141

Please sign in to comment.