Browse Source

Passed application to v1.0.0 to publish on appstore, changed name to Campus

keplyx 4 years ago
parent
commit
f76628313f
5 changed files with 6 additions and 19 deletions
  1. 2
    2
      app.json
  2. 1
    1
      screens/About/AboutScreen.js
  3. 1
    14
      screens/DebugScreen.js
  4. 1
    1
      translations/en.json
  5. 1
    1
      translations/fr.json

+ 2
- 2
app.json View File

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "expo": {
3
-    "name": "CAMPUS - Amicale INSAT",
3
+    "name": "Campus",
4 4
     "description": "Application mobile compatible Android et iOS pour l'Amicale INSA Toulouse. Grâce à cette application, vous avez facilement accès aux news du campus, aux emplois du temps, à l'état de la laverie, et bien d'autres services ! Ceci est une version Beta, Toutes les fonctionnalités ne sont pas encore implémentées, et il est possible de rencontrer quelques bugs.",
5 5
     "slug": "application-amicale",
6 6
     "privacy": "public",
@@ -10,7 +10,7 @@
10 10
       "android",
11 11
       "web"
12 12
     ],
13
-    "version": "0.0.16",
13
+    "version": "1.0.0",
14 14
     "orientation": "portrait",
15 15
     "primaryColor": "#be1522",
16 16
     "icon": "./assets/android.icon.png",

+ 1
- 1
screens/About/AboutScreen.js View File

@@ -210,7 +210,7 @@ export default class AboutScreen extends React.Component<Props, State> {
210 210
                             <Left>
211 211
                                 <Thumbnail square source={require('../../assets/icon.png')}/>
212 212
                                 <Body>
213
-                                    <H1>CAMPUS - Amicale INSAT</H1>
213
+                                    <H1>{appJson.expo.name}</H1>
214 214
                                     <Text note>
215 215
                                         v.{appJson.expo.version}
216 216
                                     </Text>

+ 1
- 14
screens/DebugScreen.js View File

@@ -61,24 +61,11 @@ export default class DebugScreen extends React.Component<Props> {
61 61
         );
62 62
     }
63 63
 
64
-    getRightButton() {
65
-        return (
66
-            <Touchable
67
-                style={{padding: 6}}
68
-                onPress={() => this.props.navigation.navigate('AboutScreen')}>
69
-                <CustomMaterialIcon
70
-                    color={Platform.OS === 'ios' ? ThemeManager.getCurrentThemeVariables().brandPrimary : "#fff"}
71
-                    icon="information"/>
72
-            </Touchable>
73
-        );
74
-    }
75
-
76 64
     render() {
77 65
         const nav = this.props.navigation;
78 66
         return (
79 67
             <Container>
80
-                <CustomHeader navigation={nav} title={i18n.t('screens.debug')} hasBackButton={true}
81
-                              rightButton={this.getRightButton()}/>
68
+                <CustomHeader navigation={nav} title={i18n.t('screens.debug')} hasBackButton={true}/>
82 69
                 <Content padder>
83 70
                     <Card>
84 71
                         <CardItem header>

+ 1
- 1
translations/en.json View File

@@ -31,7 +31,7 @@
31 31
       "text": "Lookup your timetable on CAMPUS"
32 32
     },
33 33
     "slide6": {
34
-      "title": "Still in development",
34
+      "title": "More to come...",
35 35
       "text": "New features are coming soon, do not hesitate to give us feedback to improve the app"
36 36
     }
37 37
   },

+ 1
- 1
translations/fr.json View File

@@ -31,7 +31,7 @@
31 31
       "text": "Consultez votre emploi du temps sur CAMPUS"
32 32
     },
33 33
     "slide6": {
34
-      "title": "Toujours en développement",
34
+      "title": "Plus à venir...",
35 35
       "text": "D'autres fonctionnalités arrivent bientôt, n'hésitez pas à nous donner votre avis pour améliorer l'appli"
36 36
     }
37 37
   },

Loading…
Cancel
Save