From c7d509b61a9896c4265b65c57266b09dc70db437 Mon Sep 17 00:00:00 2001 From: harukin-expo-dev-env Date: Sun, 24 Aug 2025 11:18:36 +0000 Subject: [PATCH 1/3] =?UTF-8?q?LED=E3=81=AB=E9=80=9A=E9=81=8E=E5=88=97?= =?UTF-8?q?=E8=BB=8A=E3=81=A7=E3=81=82=E3=82=8B=E3=81=93=E3=81=A8=E3=82=92?= =?UTF-8?q?=E6=98=8E=E7=A4=BA=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB?= =?UTF-8?q?=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/発車時刻表/EachData.tsx | 1 + components/発車時刻表/LED_inside_Component/TrainName.tsx | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/components/発車時刻表/EachData.tsx b/components/発車時刻表/EachData.tsx index ab39362..4de1db2 100644 --- a/components/発車時刻表/EachData.tsx +++ b/components/発車時刻表/EachData.tsx @@ -209,6 +209,7 @@ export const EachData: FC = (props) => { trainIDSwitch={trainIDSwitch} trainID={d.train} type={train.type} + isThrew={d.isThrough} /> diff --git a/components/発車時刻表/LED_inside_Component/TrainName.tsx b/components/発車時刻表/LED_inside_Component/TrainName.tsx index 88e87e9..118c5a9 100644 --- a/components/発車時刻表/LED_inside_Component/TrainName.tsx +++ b/components/発車時刻表/LED_inside_Component/TrainName.tsx @@ -7,9 +7,10 @@ type Props = { trainIDSwitch: boolean; trainID: string; type: string; + isThrew: boolean; }; export const TrainName: FC = (props) => { - const { trainName, trainNumDistance, trainIDSwitch, trainID, type } = props; + const { trainName, trainNumDistance, trainIDSwitch, trainID, type, isThrew } = props; const { name, color } = getTrainType(type); const TrainNumber = trainNumDistance != undefined @@ -26,7 +27,7 @@ export const TrainName: FC = (props) => { fontWeight: "bold", }} > - {trainIDSwitch ? trainID : `${name} ${trainName}${TrainNumber}`} + {trainIDSwitch ? trainID : `${isThrew ? `★通過列車★` : `${name} ${trainName}${TrainNumber}`} `} ); From 391674ae427c5b1c77e4253698bdca789ce560db Mon Sep 17 00:00:00 2001 From: harukin-expo-dev-env Date: Sun, 24 Aug 2025 11:28:51 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=E9=80=9A=E7=B7=A8=E3=81=A7=E9=80=9A?= =?UTF-8?q?=E9=81=8E=E8=A1=A8=E7=A4=BA=E3=81=8C=E3=81=A7=E3=81=8D=E3=81=AA?= =?UTF-8?q?=E3=81=8F=E3=81=AA=E3=81=A3=E3=81=A6=E3=81=84=E3=81=9F=E3=83=90?= =?UTF-8?q?=E3=82=B0=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/ActionSheetComponents/EachTrainInfoCore.js | 1 + 1 file changed, 1 insertion(+) diff --git a/components/ActionSheetComponents/EachTrainInfoCore.js b/components/ActionSheetComponents/EachTrainInfoCore.js index 8cb31d9..710ceee 100644 --- a/components/ActionSheetComponents/EachTrainInfoCore.js +++ b/components/ActionSheetComponents/EachTrainInfoCore.js @@ -100,6 +100,7 @@ export const EachTrainInfoCore = ({ useEffect(() => { const stopStationList = trainData.map((i) => { const [station, se, time] = i.split(","); + if(se == "通編") setHaveThrough(true); return stationList.map((a) => a.filter((d) => d.StationName == station)); }); const allThroughStationList = stopStationList.map((i, index, array) => { From 087f6c882968bdef782bfe2aa0005a67fe436c7c Mon Sep 17 00:00:00 2001 From: harukin-expo-dev-env Date: Sun, 24 Aug 2025 11:29:29 +0000 Subject: [PATCH 3/3] 6.1.6.1 --- components/Settings/SettingTopPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Settings/SettingTopPage.js b/components/Settings/SettingTopPage.js index 3e66d79..d3a6f0b 100644 --- a/components/Settings/SettingTopPage.js +++ b/components/Settings/SettingTopPage.js @@ -17,7 +17,7 @@ import { SwitchArea } from "../atom/SwitchArea"; import { useNotification } from "../../stateBox/useNotifications"; import { SheetHeaderItem } from "@/components/atom/SheetHeaderItem"; -const versionCode = "6.1.6"; // Update this version code as needed +const versionCode = "6.1.6.1"; // Update this version code as needed export const SettingTopPage = ({ testNFC,