diff --git a/package.json b/package.json index d7439d8..b7068ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "evcc", - "version": "1.0.0", + "version": "1.0.1", "main": "node_modules/expo/AppEntry.js", "scripts": { "start": "expo start", diff --git a/screens/MainScreen.tsx b/screens/MainScreen.tsx index 8abafe3..cd9f2d6 100644 --- a/screens/MainScreen.tsx +++ b/screens/MainScreen.tsx @@ -10,6 +10,7 @@ import { Linking, ActivityIndicator, StyleSheet, Animated } from "react-native"; import { Text, Layout, Spinner, Button } from "@ui-kitten/components"; import { useAppContext } from "../components/AppContext"; import { useTranslation } from "react-i18next"; +import { USER_AGENT } from "../utils/constants"; function LoadingScreen() { return ; @@ -142,7 +143,7 @@ export default function MainScreen({ navigation }) { ref={webViewRef} overScrollMode="never" setBuiltInZoomControls={false} - applicationNameForUserAgent={"evcc/0.0.1"} + applicationNameForUserAgent={USER_AGENT} onError={onError} onHttpError={onHttpError} onLoad={onLoad} diff --git a/utils/constants.js b/utils/constants.js new file mode 100644 index 0000000..8899d98 --- /dev/null +++ b/utils/constants.js @@ -0,0 +1,3 @@ +import { version } from "../package.json"; + +export const USER_AGENT = `evcc/${version}`; diff --git a/utils/server.js b/utils/server.js index b30cad0..3062a4a 100644 --- a/utils/server.js +++ b/utils/server.js @@ -1,5 +1,6 @@ import axios, { AxiosError } from "axios"; import { t } from "i18next"; +import { USER_AGENT } from "./constants"; export function cleanServerUrl(url) { let result = url.trim(); @@ -14,7 +15,10 @@ export function cleanServerUrl(url) { export async function verifyEvccServer(url, authOptions) { try { - options = { timeout: 10000 }; + const options = { + timeout: 10000, + headers: { "User-Agent": USER_AGENT }, + }; if (authOptions) { const { username, password } = authOptions; options.auth = { username, password };