Updated icons and fixed about links

This commit is contained in:
keplyx 2019-08-24 19:17:21 +02:00
parent 3ba3d332f8
commit c8bab93868
8 changed files with 10 additions and 12 deletions

View file

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 161 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View file

@ -11,13 +11,13 @@ import CustomMaterialIcon from "../../components/CustomMaterialIcon";
const links = { const links = {
appstore: 'https://qwant.com', 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', expo: 'https://expo.io/@amicaleinsat/application-amicale',
git: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/README.md', 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', 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', 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', 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/', linkedin: 'https://www.linkedin.com/in/arnaud-vergnet-434ba5179/',
facebook: 'https://www.facebook.com/arnaud.vergnet', facebook: 'https://www.facebook.com/arnaud.vergnet',
react: 'https://facebook.github.io/react-native/', react: 'https://facebook.github.io/react-native/',

View file

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