Skip to content

Commit

Permalink
hide animal pet from mainnet.
Browse files Browse the repository at this point in the history
  • Loading branch information
leoaion committed Apr 8, 2019
1 parent a954fbf commit e3ab10e
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ android {
applicationId "com.chaion.makkii"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 7
versionName "0.1.0"
versionCode 8
versionName "0.1.1"
ndk {
abiFilters "armeabi-v7a", "x86"
}
Expand Down
2 changes: 1 addition & 1 deletion components/signed/dapps/launch.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Launch extends HomeComponent{
return (
<View style={{...defaultStyles.shadow,borderRadius:10, backgroundColor: 'white',flex:1,width:width-20, marginBottom:fixedHeight(156)+10,
paddingVertical:20, paddingHorizontal:10,alignItems:'center',justifyContent:'center'}}>
<Image source={require('../../../assets/under-construction.png')} style={{width:40,height:40, tintColor: 'gray'}} resizeMode={'contain'}/>
<Image source={require('../../../assets/under-construction.png')} style={{width:80,height:80, tintColor: 'gray'}} resizeMode={'contain'}/>
<Text style={{color:'gray', textAlign: 'center', marginTop:20}}>{strings('dapp.unavailable_hint')}</Text>
</View>
)
Expand Down
2 changes: 1 addition & 1 deletion components/signed/setting/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class Home extends HomeComponent {
title={strings('logout')}
onClick={() => {
popCustom.show(
'',
strings('alert_title_warning'),
strings('setting.confirm_logout'),
[
{text: strings('cancel_button'), onPress:()=>{}},
Expand Down
20 changes: 10 additions & 10 deletions data.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ dapps.mastery.push({
type:'dapp.type_game',
screenShot: require('./assets/apps/app1/app1_screenshot.png')
});
dapps.mainnet.push({
name: 'Pet Roulette',
logo: require('./assets/apps/app1/app1_logo.png'),
description: '\tWhen 7 bets have been placed - an animal will be randomly selected and a payout will occur.Winners who guessed correctly will split the amount in the AION pool! If no winner, total AION pool will rollover',
// uri: 'http://192.168.50.83:8082'
uri: 'https://www.chaion.net/DApp1/',
author: 'KimCodeashian',
type:'dapp.type_game',
screenShot: require('./assets/apps/app1/app1_screenshot.png')
});
// dapps.mainnet.push({
// name: 'Pet Roulette',
// logo: require('./assets/apps/app1/app1_logo.png'),
// description: '\tWhen 7 bets have been placed - an animal will be randomly selected and a payout will occur.Winners who guessed correctly will split the amount in the AION pool! If no winner, total AION pool will rollover',
// // uri: 'http://192.168.50.83:8082'
// uri: 'https://www.chaion.net/DApp1/',
// author: 'KimCodeashian',
// type:'dapp.type_game',
// screenShot: require('./assets/apps/app1/app1_screenshot.png')
// });

export default data = {
dapps,
Expand Down
2 changes: 1 addition & 1 deletion locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
"author_label": "By",
"type_label": "Type",
"type_game": "Game",
"unavailable_hint": "DApp is unavailable in current Aion network. Please change it in settings."
"unavailable_hint": "DApps are coming soon!"
},
"dapp_send": {
"error_not_set_default": "Please set your default account"
Expand Down
2 changes: 1 addition & 1 deletion locales/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
"author_label": "作者",
"type_label": "类别",
"type_game": "游戏",
"unavailable_hint": "DApp在當前Aion网络中不可用,请在设置中更改网络"
"unavailable_hint": "应用正在路上,敬请期待!"
},
"dapp_send": {
"error_not_set_default": "请先设置一个默认账户。"
Expand Down
2 changes: 1 addition & 1 deletion reducers/setting.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import DeviceInfo from 'react-native-device-info';

const init = {
lang: 'auto',
version: '0.1.0',
version: '0.1.1',
theme: 'white',
default_account_name: 'Aion Account',
login_session_timeout: '30',
Expand Down

0 comments on commit e3ab10e

Please sign in to comment.