Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tth05 committed Oct 11, 2021
1 parent 2d612d8 commit ad91f51
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- Chunk grid tool support
- Live scripting support
draft: false
prerelease: false
- name: Upload jars to release
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Forge mod providing useful utilities when automating to the extreme.

- Adds a block which shows how often per second it is ticked
- Adds a minimap like chunk view, similar to CarpetClient
- Allows you to run java code on your server or client while in-game
- Allows you to view the decompiled classes of Blocks, Tile Entities and more while you're in-game.
- Allows you to search for method and field references in every loaded class (e.g. find every block that accelerates
tile entities)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'com.github.johnrengelman.shadow'

group = 'com.github.minecraft_ta'
version = '1.5.0'
version = '1.6.0'
archivesBaseName = 'TotalDebug'

sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class TotalDebug {

public static final String MOD_ID = "total_debug";
public static final String MOD_NAME = "TotalDebug";
public static final String VERSION = "1.5.0";
public static final String VERSION = "1.6.0";

@Mod.Instance(MOD_ID)
public static TotalDebug INSTANCE;
Expand Down

0 comments on commit ad91f51

Please sign in to comment.