From ebdec28693c02b8e8b9753776bbab675816163c0 Mon Sep 17 00:00:00 2001 From: harukin-OneMix4 Date: Sat, 27 Jan 2024 00:52:21 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=E6=8F=90=E4=BE=9B=E8=A1=A8=E7=A4=BA?= =?UTF-8?q?=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ActionSheetComponents/EachTrainInfo.js | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/components/ActionSheetComponents/EachTrainInfo.js b/components/ActionSheetComponents/EachTrainInfo.js index bb20849..a13ff5d 100644 --- a/components/ActionSheetComponents/EachTrainInfo.js +++ b/components/ActionSheetComponents/EachTrainInfo.js @@ -610,6 +610,33 @@ export const EachTrainInfo = (props) => { {trainData.map((i, index) => { const [station, se, time] = i.split(","); + if(se == "提"){ + return ( + Linking.openURL(time)} + key={station} + > + + + {station} + + + 提供元 + + + + + + ); + } const Stations = stationList.map((a) => a.filter((d) => d.StationName == station) ); From 19e9fd8fd8eaf906220eb5a7e280b82452528fa4 Mon Sep 17 00:00:00 2001 From: harukin-OneMix4 Date: Sat, 27 Jan 2024 00:52:52 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=E8=87=A8=E6=99=82=E5=88=97=E8=BB=8A?= =?UTF-8?q?=E8=A1=A8=E7=A4=BA=E3=82=92=E8=BF=BD=E5=8A=A0(=E4=BB=AE)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/getTrainType.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/getTrainType.js b/lib/getTrainType.js index 2f19ea3..dce1c42 100644 --- a/lib/getTrainType.js +++ b/lib/getTrainType.js @@ -6,6 +6,8 @@ export const getTrainType = (nameString) => { return { color: "red", name: "特急", data: "express" }; case "NightLTDEXP": return { color: "red", name: "寝台特急", data: "express" }; + case "SPCL": + return { color: "blue", name: "臨時", data: "normal" }; case "Normal": return { color: "white", name: "普通列車", data: "normal" }; default: From 431c4c9c0b426250adefbb42db7893233fabb55b Mon Sep 17 00:00:00 2001 From: harukin-OneMix4 Date: Sat, 27 Jan 2024 00:54:18 +0900 Subject: [PATCH 3/3] 4.6.4 --- components/settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/settings.js b/components/settings.js index f06cd59..e9f3c5d 100644 --- a/components/settings.js +++ b/components/settings.js @@ -165,7 +165,7 @@ export default function Setting(props) { textAlignVertical: "center", }} > - 内部バージョン: 4.6.3.1 + 内部バージョン: 4.6.4