From bc873852c20d82fb3630a3bb54d1dfdfb805acfd Mon Sep 17 00:00:00 2001 From: ZhanGSKen Date: Tue, 6 May 2025 18:32:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=97=B6=E9=97=B4=E6=88=B3?= =?UTF-8?q?=E5=A4=8D=E5=88=B6=E6=A0=BC=E5=BC=8F=E8=AE=BE=E7=BD=AE=E6=9C=AA?= =?UTF-8?q?=E4=BF=9D=E5=AD=98=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- timestamp/build.properties | 4 ++-- .../cc/winboll/studio/timestamp/models/AppConfigsModel.java | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/timestamp/build.properties b/timestamp/build.properties index aa67c49..ae210e1 100644 --- a/timestamp/build.properties +++ b/timestamp/build.properties @@ -1,8 +1,8 @@ #Created by .winboll/winboll_app_build.gradle -#Tue May 06 18:01:46 HKT 2025 +#Tue May 06 10:30:35 GMT 2025 stageCount=4 libraryProject= baseVersion=15.0 publishVersion=15.0.3 -buildCount=0 +buildCount=1 baseBetaVersion=15.0.4 diff --git a/timestamp/src/main/java/cc/winboll/studio/timestamp/models/AppConfigsModel.java b/timestamp/src/main/java/cc/winboll/studio/timestamp/models/AppConfigsModel.java index 8b87647..5d23cfc 100644 --- a/timestamp/src/main/java/cc/winboll/studio/timestamp/models/AppConfigsModel.java +++ b/timestamp/src/main/java/cc/winboll/studio/timestamp/models/AppConfigsModel.java @@ -63,6 +63,7 @@ public class AppConfigsModel extends BaseBean { super.writeThisToJsonWriter(jsonWriter); jsonWriter.name("isEnableService").value(isEnableService()); jsonWriter.name("timeStampFormatString").value(getTimeStampFormatString()); + jsonWriter.name("timeStampCopyFormatString").value(getTimeStampCopyFormatString()); } @Override @@ -72,6 +73,8 @@ public class AppConfigsModel extends BaseBean { setIsEnableService(jsonReader.nextBoolean()); } else if (name.equals("timeStampFormatString")) { setTimeStampFormatString(jsonReader.nextString()); + } else if (name.equals("timeStampCopyFormatString")) { + setTimeStampCopyFormatString(jsonReader.nextString()); } else { return false; }