Skip to content

Commit

Permalink
Merge branch 'mc-1.14.x' into mc-1.15.x
Browse files Browse the repository at this point in the history
  • Loading branch information
SquidDev committed Jun 21, 2020
2 parents 48edcde + 029374e commit 1efabcc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Mod properties
mod_version=1.89.0
mod_version=1.89.1

# Minecraft properties (update mods.toml when changing)
mc_version=1.15.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ private static void renderTerminal( Matrix4f matrix, ClientMonitor monitor, floa
}

ByteBuffer monitorBuffer = tboContents;
monitorBuffer.position( 0 );
monitorBuffer.clear();
for( int y = 0; y < height; y++ )
{
TextBuffer text = terminal.getLine( y ), textColour = terminal.getTextColourLine( y ), background = terminal.getBackgroundColourLine( y );
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# New features in CC: Tweaked 1.89.1

* Fix crashes when rendering monitors of varying sizes.

# New features in CC: Tweaked 1.89.0

* Compress monitor data, reducing network traffic by a significant amount.
Expand Down
11 changes: 2 additions & 9 deletions src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
New features in CC: Tweaked 1.89.0
New features in CC: Tweaked 1.89.1

* Compress monitor data, reducing network traffic by a significant amount.
* Allow limiting the bandwidth monitor updates use.
* Several optimisations to monitor rendering (@Lignum).
* Expose block and item tags to turtle.inspect and turtle.getItemDetail.

And several bug fixes:
* Fix settings.load failing on defined settings.
* Fix name of the `ejectDisk` peripheral method.
* Fix crashes when rendering monitors of varying sizes.

Type "help changelog" to see the full version history.

0 comments on commit 1efabcc

Please sign in to comment.