瀏覽代碼

Add decommissioning lesspass database blog post in mobile app

tags/mobile-v9.7.5
Guillaume Vincent 1 年之前
父節點
當前提交
7e3c0019c7
共有 5 個文件被更改,包括 28 次插入12 次删除
  1. +2
    -2
      mobile/android/app/build.gradle
  2. +2
    -2
      mobile/ios/LessPass.xcodeproj/project.pbxproj
  3. +1
    -1
      mobile/package.json
  4. +22
    -6
      mobile/src/auth/SignInScreen.js
  5. +1
    -1
      mobile/src/version.json

+ 2
- 2
mobile/android/app/build.gradle 查看文件

@@ -147,8 +147,8 @@ android {
applicationId "com.lesspass.android"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 9007004
versionName "9.7.4"
versionCode 9007005
versionName "9.7.5"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()

if (isNewArchitectureEnabled()) {


+ 2
- 2
mobile/ios/LessPass.xcodeproj/project.pbxproj 查看文件

@@ -529,7 +529,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 9.7.4;
MARKETING_VERSION = 9.7.5;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
@@ -557,7 +557,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 9.7.4;
MARKETING_VERSION = 9.7.5;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",


+ 1
- 1
mobile/package.json 查看文件

@@ -1,6 +1,6 @@
{
"name": "lesspass-mobile",
"version": "9.7.4",
"version": "9.7.5",
"description": "LessPass mobile application",
"license": "(MPL-2.0 OR GPL-3.0)",
"author": "Guillaume Vincent <guillaume@oslab.fr>",


+ 22
- 6
mobile/src/auth/SignInScreen.js 查看文件

@@ -7,6 +7,8 @@ import {
Platform,
TouchableWithoutFeedback,
Keyboard,
View,
Linking,
} from "react-native";
import { Text, Button, Title, useTheme } from "react-native-paper";
import MasterPassword from "../password/MasterPassword";
@@ -81,12 +83,26 @@ export default function SignInScreen() {
>
Sign In
</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>
</TouchableWithoutFeedback>
</KeyboardAvoidingView>


+ 1
- 1
mobile/src/version.json 查看文件

@@ -1,3 +1,3 @@
{
"version": "9.7.4"
"version": "9.7.5"
}

Loading…
取消
儲存