ver.6.1 release

This commit is contained in:
harukin-expo-dev-env 2025-07-08 16:43:31 +00:00
parent 54fba616b5
commit b512efd3ec
4 changed files with 5 additions and 3 deletions

View File

@ -21,6 +21,7 @@ export const CarouselBox = ({
listIndex, listIndex,
navigate, navigate,
stationListMode, stationListMode,
isSearchMode
}) => { }) => {
const carouselRef = useRef<ICarouselInstance>(null); const carouselRef = useRef<ICarouselInstance>(null);
const { height, width } = useWindowDimensions(); const { height, width } = useWindowDimensions();
@ -103,7 +104,7 @@ export const CarouselBox = ({
}} }}
> >
<Text style={{ color: "#0099CC", fontSize: 20 }}> <Text style={{ color: "#0099CC", fontSize: 20 }}>
{stationListMode == "position" {!!isSearchMode ? "路線検索モードです。上に並んでいる路線を選んでみましょう!" :stationListMode == "position"
? "現在地の近くに駅がありません。" ? "現在地の近くに駅がありません。"
: "お気に入りリストがありません。お気に入りの駅を追加しよう!"} : "お気に入りリストがありません。お気に入りの駅を追加しよう!"}
</Text> </Text>

View File

@ -17,7 +17,7 @@ import { SwitchArea } from "../atom/SwitchArea";
import { useNotification } from "../../stateBox/useNotifications"; import { useNotification } from "../../stateBox/useNotifications";
import { SheetHeaderItem } from "@/components/atom/SheetHeaderItem"; import { SheetHeaderItem } from "@/components/atom/SheetHeaderItem";
const versionCode = "6.0.2"; const versionCode = "6.1.0"; // Update this version code as needed
export const SettingTopPage = ({ export const SettingTopPage = ({
testNFC, testNFC,

View File

@ -1 +1 @@
export const news = "2025-03-06"; export const news = "2025-07-09";

View File

@ -387,6 +387,7 @@ export default function Menu(props) {
listIndex, listIndex,
navigate, navigate,
stationListMode, stationListMode,
isSearchMode
}} }}
/> />
{listUpStation[listIndex] && ( {listUpStation[listIndex] && (