Guillaume Vincent 3 роки тому
джерело
коміт
c2e2b601a9
9 змінених файлів з 28 додано та 26 видалено
  1. +2
    -2
      mobile/ios/LessPass.xcodeproj/project.pbxproj
  2. +1
    -1
      mobile/package.json
  3. +3
    -3
      mobile/src/auth/SignInScreen.js
  4. +3
    -3
      mobile/src/auth/SignUpScreen.js
  5. +12
    -10
      mobile/src/help/HelpScreen.js
  6. +3
    -2
      mobile/src/password/PasswordGeneratorScreen.js
  7. +2
    -2
      mobile/src/settings/SettingsScreen.js
  8. +1
    -2
      mobile/src/ui/Styles.js
  9. +1
    -1
      mobile/src/version.json

+ 2
- 2
mobile/ios/LessPass.xcodeproj/project.pbxproj Переглянути файл

@@ -355,7 +355,7 @@
);
INFOPLIST_FILE = LessPass/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 9.5.0;
MARKETING_VERSION = 9.5.1;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
@@ -384,7 +384,7 @@
DEVELOPMENT_TEAM = 5Y4MF2AT83;
INFOPLIST_FILE = LessPass/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 9.5.0;
MARKETING_VERSION = 9.5.1;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",


+ 1
- 1
mobile/package.json Переглянути файл

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


+ 3
- 3
mobile/src/auth/SignInScreen.js Переглянути файл

@@ -3,7 +3,7 @@ import { connect } from "react-redux";
import { isEmpty } from "lodash";
import {
KeyboardAvoidingView,
View,
ScrollView,
Platform,
TouchableWithoutFeedback,
Keyboard,
@@ -36,7 +36,7 @@ export class SignInScreen extends Component {
style={Styles.container}
>
<TouchableWithoutFeedback onPress={Keyboard.dismiss}>
<View style={Styles.innerContainer}>
<ScrollView contentContainerStyle={Styles.innerContainer}>
<Title>Connect to Lesspass Database</Title>
<TextInput
mode="outlined"
@@ -90,7 +90,7 @@ export class SignInScreen extends Component {
>
Sign Up
</Button>
</View>
</ScrollView>
</TouchableWithoutFeedback>
</KeyboardAvoidingView>
);


+ 3
- 3
mobile/src/auth/SignUpScreen.js Переглянути файл

@@ -2,7 +2,7 @@ import React, { Component } from "react";
import { connect } from "react-redux";
import {
KeyboardAvoidingView,
View,
ScrollView,
Platform,
TouchableWithoutFeedback,
Keyboard,
@@ -37,7 +37,7 @@ export class SignUpScreen extends Component {
style={Styles.container}
>
<TouchableWithoutFeedback onPress={Keyboard.dismiss}>
<View style={Styles.innerContainer}>
<ScrollView contentContainerStyle={Styles.innerContainer}>
<Title style={Styles.title}>Create an account</Title>
<TextInput
mode="outlined"
@@ -87,7 +87,7 @@ export class SignUpScreen extends Component {
>
Sign In
</Button>
</View>
</ScrollView>
</TouchableWithoutFeedback>
</KeyboardAvoidingView>
);


+ 12
- 10
mobile/src/help/HelpScreen.js Переглянути файл

@@ -1,11 +1,11 @@
import React from "react";
import { ScrollView, Image, Linking } from "react-native";
import { ScrollView, Image, Linking, View } from "react-native";
import { Title, Subheading, Paragraph, Button } from "react-native-paper";
import Styles from "../ui/Styles";

export default function HelpScreen() {
return (
<ScrollView style={Styles.innerContainer}>
<ScrollView contentContainerStyle={Styles.innerContainer}>
<Title style={Styles.title}>Help</Title>
<Subheading>How does it work?</Subheading>
<Paragraph style={{ marginBottom: 20 }}>
@@ -26,13 +26,16 @@ export default function HelpScreen() {
series of displayed emoticons).
</Paragraph>
<Subheading>Options</Subheading>
<Image
source={require("./options.png")}
style={{
width: 360,
height: 102,
}}
/>
<View>
<Image
source={require("./options.png")}
style={{
width: null,
resizeMode: "contain",
height: 100,
}}
/>
</View>
<Paragraph style={{ marginBottom: 20 }}>
Sometimes sites have specific password rules. For instance, some banks
only accept passwords made of digits. LessPass lets you set parameters
@@ -77,7 +80,6 @@ export default function HelpScreen() {
}}
style={{
marginTop: 10,
marginBottom: 60,
}}
>
send us an email


+ 3
- 2
mobile/src/password/PasswordGeneratorScreen.js Переглянути файл

@@ -1,5 +1,6 @@
import React, { useEffect, useState } from "react";
import {
ScrollView,
View,
TouchableWithoutFeedback,
KeyboardAvoidingView,
@@ -92,7 +93,7 @@ export default function PasswordGeneratorScreen() {
style={Styles.container}
>
<TouchableWithoutFeedback onPress={Keyboard.dismiss}>
<View style={Styles.innerContainer}>
<ScrollView contentContainerStyle={Styles.innerContainer}>
<TextInput
mode="outlined"
label="Site"
@@ -260,7 +261,7 @@ export default function PasswordGeneratorScreen() {
</Text>
</View>
)}
</View>
</ScrollView>
</TouchableWithoutFeedback>
<Snackbar
visible={copied}


+ 2
- 2
mobile/src/settings/SettingsScreen.js Переглянути файл

@@ -45,8 +45,8 @@ export class SettingsScreen extends Component {
defaultCounter,
} = settings;
return (
<ScrollView style={Styles.container}>
<View style={Styles.innerContainer}>
<ScrollView>
<View style={{ padding: 15 }}>
<Title>Settings</Title>
</View>
<List.Section title="LESSPASS DATABASE">


+ 1
- 2
mobile/src/ui/Styles.js Переглянути файл

@@ -7,8 +7,7 @@ export default StyleSheet.create({
innerContainer: {
paddingHorizontal: 15,
paddingTop: 15,
marginBottom: 20,
flex: 1,
paddingBottom: 20,
},
title: {
marginBottom: 10,


+ 1
- 1
mobile/src/version.json Переглянути файл

@@ -1,3 +1,3 @@
{
"version": "9.5.0"
"version": "9.5.1"
}

Завантаження…
Відмінити
Зберегти