Add a terrible and hacky implementation of scrolling and bump the project's version to 1.0.4.

This commit is contained in:
pixtaded 2025-01-12 04:03:34 +03:00
parent 5c55999771
commit a7ad8770c9
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ plugins {
} }
group = 'net.pixtaded' group = 'net.pixtaded'
version = '1.0.3' version = '1.0.4'
repositories { repositories {
mavenCentral() mavenCentral()

View File

@ -140,7 +140,7 @@ public class CrabClient implements Crab {
} }
private void clearScreen() { private void clearScreen() {
System.out.print("\033[H\033[2J"); System.out.print("\033[999999S\033[H\033[2J");
} }
} }