@@ -147,8 +147,8 @@ android { | |||||
applicationId "com.lesspass.android" | applicationId "com.lesspass.android" | ||||
minSdkVersion rootProject.ext.minSdkVersion | minSdkVersion rootProject.ext.minSdkVersion | ||||
targetSdkVersion rootProject.ext.targetSdkVersion | targetSdkVersion rootProject.ext.targetSdkVersion | ||||
versionCode 9007004 | |||||
versionName "9.7.4" | |||||
versionCode 9007005 | |||||
versionName "9.7.5" | |||||
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() | buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() | ||||
if (isNewArchitectureEnabled()) { | if (isNewArchitectureEnabled()) { | ||||
@@ -529,7 +529,7 @@ | |||||
"$(inherited)", | "$(inherited)", | ||||
"@executable_path/Frameworks", | "@executable_path/Frameworks", | ||||
); | ); | ||||
MARKETING_VERSION = 9.7.4; | |||||
MARKETING_VERSION = 9.7.5; | |||||
OTHER_LDFLAGS = ( | OTHER_LDFLAGS = ( | ||||
"$(inherited)", | "$(inherited)", | ||||
"-ObjC", | "-ObjC", | ||||
@@ -557,7 +557,7 @@ | |||||
"$(inherited)", | "$(inherited)", | ||||
"@executable_path/Frameworks", | "@executable_path/Frameworks", | ||||
); | ); | ||||
MARKETING_VERSION = 9.7.4; | |||||
MARKETING_VERSION = 9.7.5; | |||||
OTHER_LDFLAGS = ( | OTHER_LDFLAGS = ( | ||||
"$(inherited)", | "$(inherited)", | ||||
"-ObjC", | "-ObjC", | ||||
@@ -1,6 +1,6 @@ | |||||
{ | { | ||||
"name": "lesspass-mobile", | "name": "lesspass-mobile", | ||||
"version": "9.7.4", | |||||
"version": "9.7.5", | |||||
"description": "LessPass mobile application", | "description": "LessPass mobile application", | ||||
"license": "(MPL-2.0 OR GPL-3.0)", | "license": "(MPL-2.0 OR GPL-3.0)", | ||||
"author": "Guillaume Vincent <guillaume@oslab.fr>", | "author": "Guillaume Vincent <guillaume@oslab.fr>", | ||||
@@ -7,6 +7,8 @@ import { | |||||
Platform, | Platform, | ||||
TouchableWithoutFeedback, | TouchableWithoutFeedback, | ||||
Keyboard, | Keyboard, | ||||
View, | |||||
Linking, | |||||
} from "react-native"; | } from "react-native"; | ||||
import { Text, Button, Title, useTheme } from "react-native-paper"; | import { Text, Button, Title, useTheme } from "react-native-paper"; | ||||
import MasterPassword from "../password/MasterPassword"; | import MasterPassword from "../password/MasterPassword"; | ||||
@@ -81,12 +83,26 @@ export default function SignInScreen() { | |||||
> | > | ||||
Sign In | Sign In | ||||
</Button> | </Button> | ||||
<Button | |||||
mode="text" | |||||
onPress={() => navigation.navigate(routes.SIGN_UP)} | |||||
> | |||||
Don't have an account? Sign Up | |||||
</Button> | |||||
<View> | |||||
<Text style={{ color: theme.colors.error }}> | |||||
LessPass Database server will be turned off on March 1th, 2023. | |||||
You can export your passwords using the web extension, the CLI or | |||||
the web site. | |||||
</Text> | |||||
<Button | |||||
mode="text" | |||||
onPress={() => { | |||||
Linking.openURL( | |||||
"https://blog.lesspass.com/2022-12-29/decommissioning-lesspass-database" | |||||
); | |||||
}} | |||||
style={{ | |||||
marginTop: 10, | |||||
}} | |||||
> | |||||
See announcement | |||||
</Button> | |||||
</View> | |||||
</ScrollView> | </ScrollView> | ||||
</TouchableWithoutFeedback> | </TouchableWithoutFeedback> | ||||
</KeyboardAvoidingView> | </KeyboardAvoidingView> | ||||
@@ -1,3 +1,3 @@ | |||||
{ | { | ||||
"version": "9.7.4" | |||||
"version": "9.7.5" | |||||
} | } |