3 Commits

Author SHA1 Message Date
ksan 7a0bd3a8f1 Merge branch 'main' into dev
CI/CD / Backend Unit Tests (push) Successful in 2m9s
CI/CD / Deploy (push) Has been skipped
CI/CD / Mobile Release (push) Has been skipped
2026-07-30 16:34:07 +02:00
ksan 8007607e16 show app version from expo config on help page; bump to 1.0.6 2026-07-30 16:34:07 +02:00
ksan abc5f84bfc fixing issue with firebase on deploy 2026-06-10 18:38:36 +02:00
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
"expo": {
"name": "etfoglasi",
"slug": "etfoglasi",
"version": "1.0.0",
"version": "1.0.6",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "etfoglasi",
+4 -1
View File
@@ -5,11 +5,14 @@ import {
} from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
import { Ionicons } from "@expo/vector-icons";
import Constants from "expo-constants";
const CONTACT_EMAIL = "contact@ksan.dev";
//TODO make github page because yea
const GITHUB_URL = "https://git.ksan.dev/ksan";
const APP_VERSION = "1.0.0";
// Sourced from app.json's expo.version, which CI stamps on every mobile
// release (scripts/set-mobile-version.js), so this stays in sync automatically.
const APP_VERSION = Constants.expoConfig?.version ?? "unknown";
export default function HelpSupport({ onClose }: { onClose: () => void }) {
const dark = useColorScheme() === "dark";