diff --git a/README.MD b/README.MD index 0ec1956..9b7e6bb 100644 --- a/README.MD +++ b/README.MD @@ -51,7 +51,7 @@ maven { ``` # Packs-Dependencys ## minecraft-SLP -- lastUpdateTime 2025-07-09 23:11:05 +- lastUpdateTime(UTC/GMT+08:00) 2025-07-09 23:11:05 - lastVersion 1.0.1 ### maven (pom.xml) ```xml @@ -70,7 +70,7 @@ implementation 'com.mingliqiye:minecraft-SLP:1.0.1' implementation("com.mingliqiye:minecraft-SLP:1.0.1") ``` ## network-endpoint -- lastUpdateTime 2025-07-09 23:00:05 +- lastUpdateTime(UTC/GMT+08:00) 2025-07-09 23:00:05 - lastVersion 1.0.3 ### maven (pom.xml) ```xml @@ -89,7 +89,7 @@ implementation 'com.mingliqiye:network-endpoint:1.0.3' implementation("com.mingliqiye:network-endpoint:1.0.3") ``` ## socket-utilts -- lastUpdateTime 2025-07-05 22:50:19 +- lastUpdateTime(UTC/GMT+08:00) 2025-07-05 22:50:19 - lastVersion 1.0.6 ### maven (pom.xml) ```xml @@ -108,7 +108,7 @@ implementation 'com.mingliqiye:socket-utilts:1.0.6' implementation("com.mingliqiye:socket-utilts:1.0.6") ``` ## string-utilts -- lastUpdateTime 2025-07-05 14:53:52 +- lastUpdateTime(UTC/GMT+08:00) 2025-07-05 14:53:52 - lastVersion 1.0.4 ### maven (pom.xml) ```xml @@ -127,7 +127,7 @@ implementation 'com.mingliqiye:string-utilts:1.0.4' implementation("com.mingliqiye:string-utilts:1.0.4") ``` ## tcp-proxy -- lastUpdateTime 2025-07-05 23:30:53 +- lastUpdateTime(UTC/GMT+08:00) 2025-07-05 23:30:53 - lastVersion 0.1 ### maven (pom.xml) ```xml diff --git a/update/update.py b/update/update.py index 7fa789a..885159e 100644 --- a/update/update.py +++ b/update/update.py @@ -128,7 +128,7 @@ if __name__ == '__main__': for metadata in getdatas(): readme += f"## {metadata.artifactId}\n" - readme += f"- lastUpdateTime {metadata.versioning.lastUpdated}\n" + readme += f"- lastUpdateTime(UTC/GMT+08:00) {metadata.versioning.lastUpdated}\n" readme += f"- lastVersion {metadata.versioning.latest}\n" dep = Dependency.of(metadata) readme += f"### maven (pom.xml)\n"