Skip to content

Commit

Permalink
Merge pull request #24 from TriPSs/feature/shows-recommendations
Browse files Browse the repository at this point in the history
Feature/shows recommendations
  • Loading branch information
TriPSs authored Dec 11, 2018
2 parents 13ca5c8 + 27b670a commit 898ef1e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ android {
applicationId "com.popcorn"
minSdkVersion 16
targetSdkVersion 26
versionCode 13
versionName "v0.10.0"
versionCode 14
versionName "v0.11.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export default class Episode extends React.Component {
title : PropTypes.string.isRequired,
images : PropTypes.object.isRequired,
torrents : PropTypes.object.isRequired,
number : PropTypes.number.isRequired,
summary : PropTypes.string,
hasTorrents: PropTypes.bool,
}
Expand Down Expand Up @@ -86,7 +87,7 @@ export default class Episode extends React.Component {
}

render() {
const { hasTorrents, title, summary, images, hasAired } = this.props
const { hasTorrents, title, summary, number, images, hasAired } = this.props
const { showPlaceholder } = this.props

return (
Expand Down Expand Up @@ -127,7 +128,7 @@ export default class Episode extends React.Component {
</BaseButton>

<Typography style={styles.title}>
{title}
{`${number}. ${title}`}
</Typography>
</View>

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": "popcorn-native",
"version": "0.10.0",
"version": "0.11.0",
"private": true,
"scripts": {
"prebuild": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle",
Expand Down

0 comments on commit 898ef1e

Please sign in to comment.