Skip to content

Commit

Permalink
Release 1.8.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownShadow200 committed Apr 19, 2016
1 parent 038b5da commit 8c4f6b6
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 20 deletions.
35 changes: 35 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
v 1.8.5.0
- More work on zombie survival.
- /mark works properly when you are outside the map.
- /clones uses proper casing of names, and shows which ones are banned.
- /os env - can also change maxfog and cloudsheight
- Modularise block data and block physics internally. (Not yet configurable)
- /tree should not overwrite existing blocks.
- Made various messages more consistent.
- Fixed /restore not copying custom blocks.
- /texture now warns if url is > 64 characters, and also if you use a non-existent scope.
- Fixed /os map guns throwing a NullReferenceException.
- Optimised /rs rainbow to send block updates more efficiently.
- Optimised block physics to use packed Int32 instead of strings, and \replace
- classes with structs. (Less pressure on GC)
- Fixed /queue not working from console.
- Allow providing a reason for /tempbans.
- Fix being unable to use some commands while hidden.
- /undo and /redo now behave like fCraft when not given arguments. (undo/redo last drawop)
- Fix /fly not working when your X or Z coordinate is 0.
- Added /showqueue command for zombie survival.
- /help for a command now shows its additional permissions (if any)
- Added /skin to allow changing skins of players and bots.
- Rewritten gui to be nicer. (Much thanks to UclCommander)
- Initial implementation of ExtPlayerList, so players are grouped separately from bots.
- Command aliases are now less hardcoded, add fCraft aliases.
- Show command aliases in their respective /help command.
- Fix /unflood reloading the map 8 times.
- 'seed' for flatgrass map type specifies the grass level.
- Don't call ScrollToEnd() twice, makes gui slightly more responsive.
- Can show rank prefixes in chat.
- Add /eat command.
- Optimise map generation to be slightly faster.
- Fix /env preset not showing changes for all players.
- Show player's title in less places to reduce visual clutter.

v 1.8.4.0
- Fixed /resetpass not working at all.
- Show a warning to outdated ClassicalSharp clients, suggesting they update.
Expand Down
24 changes: 6 additions & 18 deletions Network/IBeat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,31 +19,19 @@ namespace MCGalaxy
{
public interface IBeat
{
/// <summary>
/// Gets or sets the URL.
/// </summary>
/// <value>
/// The URL.
/// </value>
/// <summary> Gets or sets the URL. </summary>
/// <value> The URL. </value>
string URL {get; }

/// <summary>
/// Prepares this instance.
/// </summary>
/// <summary> Prepares this instance. </summary>
/// <returns></returns>
string Prepare();

/// <summary>
/// Gets a value indicating whether this <see cref="IBeat"/> is persistance.
/// </summary>
/// <value>
/// <c>true</c> if persistance; otherwise, <c>false</c>.
/// </value>
/// <summary> Gets a value indicating whether this <see cref="IBeat"/> is persistance. </summary>
/// <value> <c>true</c> if persistance; otherwise, <c>false</c>. </value>
bool Persistance {get; }

/// <summary>
/// Called when a response is recieved.
/// </summary>
/// <summary> Called when a response is recieved. </summary>
/// <param name="resonse">The resonse.</param>
void OnResponse(string resonse);
}
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.4.0
1.8.5.0
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.4.0")]
[assembly: AssemblyVersion("1.8.5.0")]

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

0 comments on commit 8c4f6b6

Please sign in to comment.