2 Commits

Author SHA1 Message Date
1729ea3319 更新 ColorNameEnum注释 2026-08-11 19:19:31 +08:00
7bb822db9f 更新 README/INFO 2026-08-11 01:11:34 +08:00
3 changed files with 19 additions and 1 deletions

3
.gitignore vendored
View File

@@ -42,4 +42,5 @@ build/
/target
/.idea
/.mvn
/build_release
/build_release
/upload/

16
INFO.md Normal file
View File

@@ -0,0 +1,16 @@
1.3-SNAPSHOT
此版本包含:
1. 压缩/解压 (`compress`)
2. 终端彩色输出 (`echo`)
2.1 预定义颜色打印 — `ColorPrintln`
2.2 自定义颜色打印 — `ColorHexPrintln`
2.3 Minecraft 风格多色打印 — `ColorPrintlnPlus`
3. 随机生成器 (`random`)
4. 硬件标识生成器 (`hwid`)
5. 版本信息 (`version`)
6. 运行时信息 (`runtime`)
6.1 获取运行时临时目录
6.2 新建临时目录
6.3 获取临时目录
6.4 获取当前运行的JAR文件路径

View File

@@ -1,5 +1,6 @@
package top.gtb520.java.gnu.java.utils.library.utils.print;
// 颜色名称枚举
public enum ColorNameEnum {
RED, GREEN, YELLOW, BLUE, PURPLE, CYAN;
}