Updated icons and fixed about links

Esse commit está contido em:
keplyx 2019-08-24 19:17:21 +02:00
commit c8bab93868
8 arquivos alterados com 10 adições e 12 exclusões

Ver arquivo

@ -10,7 +10,7 @@
"android",
"web"
],
"version": "0.0.13",
"version": "0.0.14",
"orientation": "portrait",
"primaryColor": "#be1522",
"icon": "./assets/android.icon.png",
@ -36,7 +36,7 @@
},
"android": {
"package": "fr.amicaleinsat.application",
"versionCode": 1,
"versionCode": 2,
"icon": "./assets/android.icon.png",
"adaptiveIcon": {
"foregroundImage": "./assets/android.adaptive-icon.png",

Arquivo binário não exibido.

Antes

Largura:  |  Altura:  |  Tamanho: 70 KiB

Depois

Largura:  |  Altura:  |  Tamanho: 35 KiB

Arquivo binário não exibido.

Antes

Largura:  |  Altura:  |  Tamanho: 161 KiB

Depois

Largura:  |  Altura:  |  Tamanho: 26 KiB

Arquivo binário não exibido.

Antes

Largura:  |  Altura:  |  Tamanho: 56 KiB

Depois

Largura:  |  Altura:  |  Tamanho: 9,5 KiB

Arquivo binário não exibido.

Antes

Largura:  |  Altura:  |  Tamanho: 56 KiB

Depois

Largura:  |  Altura:  |  Tamanho: 9,5 KiB

Arquivo binário não exibido.

Antes

Largura:  |  Altura:  |  Tamanho: 50 KiB

Depois

Largura:  |  Altura:  |  Tamanho: 34 KiB

Ver arquivo

@ -11,13 +11,13 @@ import CustomMaterialIcon from "../../components/CustomMaterialIcon";
const links = {
appstore: 'https://qwant.com',
playstore: 'https://qwant.com',
playstore: 'https://play.google.com/store/apps/details?id=fr.amicaleinsat.application',
expo: 'https://expo.io/@amicaleinsat/application-amicale',
git: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/README.md',
bugs: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/issues',
changelog: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/Changelog.md',
license: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/LICENSE',
mail: "mailto:arnaud.vergnet@netc.fr?subject=Application Amicale INSA Toulouse&body=",
mail: "mailto:vergnet@etud.insa-toulouse.fr?subject=Application Amicale INSA Toulouse&body=",
linkedin: 'https://www.linkedin.com/in/arnaud-vergnet-434ba5179/',
facebook: 'https://www.facebook.com/arnaud.vergnet',
react: 'https://facebook.github.io/react-native/',

Ver arquivo

@ -3,10 +3,10 @@
import * as React from 'react';
import {Button, H3, Text} from 'native-base';
import i18n from "i18n-js";
import {Platform, View} from "react-native";
import {View} from "react-native";
import CustomMaterialIcon from "../components/CustomMaterialIcon";
import ThemeManager from "../utils/ThemeManager";
import {Linking, Notifications} from "expo";
import {Linking} from "expo";
import BaseContainer from "../components/BaseContainer";
type Props = {
@ -63,12 +63,10 @@ export default class PlanningScreen extends React.Component<Props> {
}}>
{i18n.t('planningScreen.wipSubtitle')}
</Text>
{Platform.OS === 'android' ?
<Button block style={{marginTop: 20, marginRight: 10, marginLeft: 10}}
onPress={() => openWebLink('https://expo.io/@amicaleinsat/application-amicale')}>
<Text>Try the beta</Text>
</Button>
: <View/>}
<Button block style={{marginTop: 20, marginRight: 10, marginLeft: 10}}
onPress={() => openWebLink('https://www.facebook.com/groups/2054302624595234/')}>
<Text>Clubs et Evenements</Text>
</Button>
</View>
</BaseContainer>
);