Skip to content

Commit

Permalink
Version 0.2.0 with ChangeLog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Rainyaphthyl committed Oct 23, 2023
1 parent 075f1fb commit 554ce47
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 20 deletions.
31 changes: 14 additions & 17 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ This is a **pre-release** version.

### Mod Versions

- Current version: `0.1.6`
- Previous version: `0.1.5`
- Previous annotated version: `0.1.4`
- Current version: `0.2.0`
- Previous version: `0.1.6`
- Previous annotated version: `0.1.6`
- Previous release version: `null`

## Abstract
Expand All @@ -21,23 +21,20 @@ This is a **pre-release** version.

### Description

- Chunk Loading Captor captures chunk populating and saving.
- Chunk event messages can be filtered according to a list of rules.
- Savestate Logger.
- Logger of invalid End Cities.
- A new option, fixing an Optifine bug about players joining the world.
- New Tab of Configs:
- Visual

### New Configs

1. Meters
1. Chunk Message Filter List
2. Chunk Message Filter Switch
3. Savestate Logger
4. Invalid End City Logger
2. Fixes
1. Optifine Joining Game Fix
3. Generic
1. Optifine Joining Game Debug
1. Meters:
1. Projectile Aim Indicator
2. Tweaks:
1. Projectile Aim Adjust Sensitivity
3. Actions:
1. Projectile Aim Indicator
4. Visual:
1. Projectile Center Color
2. Projectile Range Color

## Modified Features

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ modId=potato_tech_kit
modName=Potato Tech Kit
# lowercase, without hyphens
modPureName=potteckit
modVersion=undefined-post-0.1.6
modVersion=0.2.0

malilibVersion=0.54.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class Configs {
@Config(types = Type.TOGGLE, domains = Domain.METER)
public static final HotkeyedBooleanConfig projectileAimIndicator = new HotkeyedBooleanConfig("projectile_aim_indicator", false, "", "projectile_aim_indicator", "projectile_aim_indicator");
@Config(types = Type.HOTKEY, domains = Domain.ACTION)
public static final HotkeyConfig projectileAimTrigger = new HotkeyConfig("projectile_aim_indicator", "G", KeyBindSettings.INGAME_MODIFIER);
public static final HotkeyConfig projectileAimTrigger = new HotkeyConfig("projectile_aim_indicator", "", KeyBindSettings.INGAME_MODIFIER);
@Config(types = Type.NUMBER, domains = Domain.VISUAL)
public static final DualColorConfig projectileCenterColor = new DualColorConfig("arrow_color_center", "0xFF3CFF", "0x3CFFFF", "arrow_color_center").setFirstColorHoverInfoKey("potteckit.label.arrow_color.hit").setSecondColorHoverInfoKey("potteckit.label.arrow_color.miss");
@Config(types = Type.NUMBER, domains = Domain.VISUAL)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import org.apache.logging.log4j.Logger;

public class Reference {
public static final String VERSION = "undefined-post-0.1.6";
public static final String VERSION = "0.2.0";
public static final ModVersion versionObj = ModVersion.getVersion(VERSION);
public static final String NAME = "PotatoTechKit";
public static final String SHORT_NAME = "potteckit";
Expand Down

0 comments on commit 554ce47

Please sign in to comment.