Skip to content

Commit

Permalink
Release 0.1.3 (#348)
Browse files Browse the repository at this point in the history
* bump iOS version

* bump Android version

* iOS build

* fix collectibles icon

* bump versionCode on android

* fix empty balance

* update package-lock.json

* bump iOS
  • Loading branch information
Bruno Barbieri authored Jan 23, 2019
1 parent 85548b3 commit 996bb37
Show file tree
Hide file tree
Showing 7 changed files with 109 additions and 100 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ android {
applicationId "io.metamask"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 3
versionName "0.1.2"
versionCode 4
versionName "0.1.3"
multiDexEnabled true
testBuildType System.getProperty('testBuildType', 'debug')
missingDimensionStrategy "minReactNative", "minReactNative46"
Expand Down
2 changes: 1 addition & 1 deletion app/components/Collectibles/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { ScrollView, RefreshControl, FlatList, TouchableOpacity, StyleSheet, Text, View } from 'react-native';
import Icon from 'react-native-vector-icons/Feather';
import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
import { colors, fontStyles } from '../../styles/common';
import { strings } from '../../../locales/i18n';
import CollectibleElement from '../CollectibleElement';
Expand Down
2 changes: 1 addition & 1 deletion app/components/Tokens/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default class Tokens extends PureComponent {
item.balance ||
(item.address in tokenBalances
? renderFromTokenMinimalUnit(tokenBalances[item.address], item.decimals)
: undefined);
: 0);
const balanceFiat = item.balanceFiat || balanceToFiat(balance, conversionRate, exchangeRate, currentCurrency);
item = { ...item, ...{ logo, balance, balanceFiat } };

Expand Down
Binary file modified ios/MetaMask.app.dSYM.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions ios/MetaMask.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1818,7 +1818,7 @@
CODE_SIGN_ENTITLEMENTS = MetaMask/MetaMask.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 7;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = 48XVW22RCG;
FRAMEWORK_SEARCH_PATHS = (
Expand Down Expand Up @@ -1876,7 +1876,7 @@
CODE_SIGN_ENTITLEMENTS = MetaMask/MetaMask.entitlements;
CODE_SIGN_IDENTITY = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 7;
DEVELOPMENT_TEAM = 48XVW22RCG;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down
6 changes: 3 additions & 3 deletions ios/MetaMask/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.1.2</string>
<string>0.1.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -32,7 +32,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>5</string>
<string>7</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
Expand Down Expand Up @@ -67,7 +67,7 @@
<key>NSFaceIDUsageDescription</key>
<string>$(PRODUCT_NAME) needs to authenticate</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string/>
<string></string>
<key>UIAppFonts</key>
<array>
<string>Entypo.ttf</string>
Expand Down
191 changes: 100 additions & 91 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 996bb37

Please sign in to comment.