Skip to content

Commit

Permalink
v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
carloscpda committed Mar 22, 2018
1 parent 60f86f5 commit c81aa3a
Show file tree
Hide file tree
Showing 12 changed files with 32 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 "io.thinger.app"
minSdkVersion 16
targetSdkVersion 23
versionCode 4
versionName "0.2.2"
versionCode 5
versionName "0.2.3"
ndk {
abiFilters "armeabi-v7a", "x86"
}
Expand Down
4 changes: 2 additions & 2 deletions ios/thingerio/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.2.2</string>
<string>0.2.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>4</string>
<string>5</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thingerio",
"version": "0.2.2",
"version": "0.2.3",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
Expand Down
2 changes: 1 addition & 1 deletion src/components/cards/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const styles = StyleSheet.create({
shadowOffset: { width: 1, height: 2 },
shadowColor: "black",
shadowOpacity: 0.4,
shadowRadius: 3,
shadowRadius: 3
},
body: {
padding: PADDING
Expand Down
9 changes: 6 additions & 3 deletions src/components/lists/OutputItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import React from "react";
import ItemList from "./ItemList";
import { StyleSheet } from "react-native";
import {COLOR_TEXT_INACTIVE} from "../../constants/ThingerColors";
import { COLOR_TEXT_INACTIVE } from "../../constants/ThingerColors";
import PText from "../texts/P";

type Props = {
Expand All @@ -16,14 +16,17 @@ export default class OutputItem extends React.Component<Props> {
const { name, value } = this.props;

return (
<ItemList name={name} value={<PText style={styles.value}>{value}</PText>} />
<ItemList
name={name}
value={<PText style={styles.value}>{value}</PText>}
/>
);
}
}

const styles = StyleSheet.create({
value: {
textAlign: "right",
color: COLOR_TEXT_INACTIVE,
color: COLOR_TEXT_INACTIVE
}
});
6 changes: 5 additions & 1 deletion src/components/lists/TextInputItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ import React from "react";
import ItemList from "./ItemList";
import { StyleSheet, TextInput } from "react-native";
import { FONT_SIZE_P } from "../../constants/ThingerStyles";
import {COLOR_TEXT_INPUT, COLOR_TEXT_PLACEHOLDER, DARK_BLUE} from "../../constants/ThingerColors";
import {
COLOR_TEXT_INPUT,
COLOR_TEXT_PLACEHOLDER,
DARK_BLUE
} from "../../constants/ThingerColors";

type Props = {
name: string,
Expand Down
9 changes: 7 additions & 2 deletions src/components/navigation/TabBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,14 @@ export default class TabBar extends React.Component<Props> {
<Icon
name={icon}
size={20}
style={{ color: COLOR_TAB_BAR_INACTIVE, paddingBottom: 3 }}
style={{
color: COLOR_TAB_BAR_INACTIVE,
paddingBottom: 3
}}
/>,
<Text style={{ color: COLOR_TAB_BAR_INACTIVE }}>{title}</Text>
<Text style={{ color: COLOR_TAB_BAR_INACTIVE }}>
{title}
</Text>
]}
</TouchableOpacity>
);
Expand Down
5 changes: 4 additions & 1 deletion src/components/resources/InputAttribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ import React from "react";
import { StyleSheet, Switch, TextInput } from "react-native";
import AttributeView from "./Attribute";
import type { Attribute } from "../../types/Attribute";
import {COLOR_TEXT, COLOR_TEXT_PLACEHOLDER} from "../../constants/ThingerColors";
import {
COLOR_TEXT,
COLOR_TEXT_PLACEHOLDER
} from "../../constants/ThingerColors";

type Props = {
id: string,
Expand Down
2 changes: 1 addition & 1 deletion src/components/resources/OutputAttribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ export default class OutputAttribute extends React.Component<Props> {
</AttributeView>
);
}
}
}
2 changes: 1 addition & 1 deletion src/components/texts/H1.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import React from "react";
import { FONT_SIZE_H1, FONT_WEIGHT_H1 } from "../../constants/ThingerStyles";
import { Text } from "react-native";
import {COLOR_TEXT} from "../../constants/ThingerColors";
import { COLOR_TEXT } from "../../constants/ThingerColors";

type Props = React$ElementProps<typeof Text>;

Expand Down
2 changes: 1 addition & 1 deletion src/components/texts/H2.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import React from "react";
import { FONT_SIZE_H2 } from "../../constants/ThingerStyles";
import { Text } from "react-native";
import {COLOR_TEXT} from "../../constants/ThingerColors";
import { COLOR_TEXT } from "../../constants/ThingerColors";

type Props = React$ElementProps<typeof Text>;

Expand Down
2 changes: 1 addition & 1 deletion src/components/texts/P.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import React from "react";
import { Text } from "react-native";
import { FONT_SIZE_P } from "../../constants/ThingerStyles";
import {COLOR_TEXT} from "../../constants/ThingerColors";
import { COLOR_TEXT } from "../../constants/ThingerColors";

type Props = React$ElementProps<typeof Text>;

Expand Down

0 comments on commit c81aa3a

Please sign in to comment.