Browse Source

Updated about links and version

keplyx 4 years ago
parent
commit
062ac9ac5d
4 changed files with 16 additions and 7 deletions
  1. 1
    1
      app.json
  2. 13
    6
      screens/About/AboutScreen.js
  3. 1
    0
      translations/en.json
  4. 1
    0
      translations/fr.json

+ 1
- 1
app.json View File

@@ -9,7 +9,7 @@
9 9
       "android",
10 10
       "web"
11 11
     ],
12
-    "version": "0.0.2",
12
+    "version": "0.0.3",
13 13
     "orientation": "portrait",
14 14
     "icon": "./assets/icon.png",
15 15
     "primaryColor": "#e42612",

+ 13
- 6
screens/About/AboutScreen.js View File

@@ -12,10 +12,11 @@ import CustomMaterialIcon from "../../components/CustomMaterialIcon";
12 12
 const links = {
13 13
     appstore: 'https://qwant.com',
14 14
     playstore: 'https://qwant.com',
15
-    gitlab: 'https://qwant.com',
16
-    bugs: 'https://qwant.com',
17
-    changelog: 'https://qwant.com',
18
-    license: 'https://qwant.com',
15
+    expo: 'https://expo.io/@amicaleinsat/application-amicale',
16
+    git: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale',
17
+    bugs: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/issues',
18
+    changelog: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale',
19
+    license: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale',
19 20
     mail: "mailto:arnaud.vergnet@netc.fr?subject=Application Amicale INSA Toulouse&body=",
20 21
     linkedin: 'https://www.linkedin.com/in/arnaud-vergnet-434ba5179/',
21 22
     facebook: 'https://www.facebook.com/arnaud.vergnet',
@@ -50,9 +51,15 @@ export default class AboutScreen extends React.Component<Props> {
50 51
             showChevron: true
51 52
         },
52 53
         {
53
-            onPressCallback: () => openWebLink(links.gitlab),
54
+            onPressCallback: () => openWebLink(links.expo),
55
+            icon: 'worker',
56
+            text: i18n.t('aboutScreen.expoBeta'),
57
+            showChevron: true
58
+        },
59
+        {
60
+            onPressCallback: () => openWebLink(links.git),
54 61
             icon: 'git',
55
-            text: 'Gitlab',
62
+            text: 'Git',
56 63
             showChevron: true
57 64
         },
58 65
         {

+ 1
- 0
translations/en.json View File

@@ -31,6 +31,7 @@
31 31
   "aboutScreen": {
32 32
     "appstore": "See on the Appstore",
33 33
     "playstore": "See on the Playstore",
34
+    "expoBeta": "Participate in the Beta!",
34 35
     "bugs": "Report Bugs",
35 36
     "changelog": "Changelog",
36 37
     "license": "License",

+ 1
- 0
translations/fr.json View File

@@ -31,6 +31,7 @@
31 31
   "aboutScreen": {
32 32
     "appstore": "Voir sur l'Appstore",
33 33
     "playstore": "Voir sur le Playstore",
34
+    "expoBeta": "Participer à la Beta !",
34 35
     "bugs": "Rapporter des Bugs",
35 36
     "changelog": "Historique des modifications",
36 37
     "license": "Licence",

Loading…
Cancel
Save