- Added Custom timer font feature, the guide video is here
- Fixed not working problem on 1.14.4
- Added 0 / 1 timer decimal option
- Added timer text outline option
- Support 20w14∞ version
Notice! 1.18.1 / 1.16.5 / 20w14∞ version is no longer update after this version for versions management. (without bug fix update, I mean no more add features in these versions) Because these are versions that aren't in high demand and I think no more BIG update anymore.
Also, Thanks for Verification to SRC and SRC Managers! Happy speedrun!
- Edited
- Fixed color slider bug in 1.14-1.15 on 2.12.1
- Removed fabric life cycle API (unuse)
- Reworked timer display options
- Added 'timer show in options screen' option
- Some retime bugs fixed.
- Added version info in log files
- Renamed a log files name
- Block using with GhostRunner (cause by the bugs, I'll fix it later... maybe)
Added Timer Customize, and some bug fixed.
Added an Options API.
register option :
public static final SpeedRunOptions.OptionArgument<TimerPosition> TIMER_POS = new SpeedRunOptions.OptionArgument<>(new Identifier(SpeedRunIGT.MOD_ID, "timerpos"), TimerPosition.SAMPLE_ENUM) {
@Override
public TimerPosition valueFromString(String string) {
return TimerPosition.valueOf(string);
}
@Override
public String valueToString(TimerPosition value) {
return value.name();
}
}.register();
get/set option :
SpeedRunOptions.getOption(SpeedRunOptions.TIMER_POS);
SpeedRunOptions.setOption(SpeedRunOptions.TIMER_POS, TimerPosition.SAMPLE_ENUM);