Skip to content

Commit

Permalink
Fix commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
micahlt committed Mar 20, 2024
1 parent d535a63 commit 868c972
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 14 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ android {
applicationId "com.micahlindley.offsides"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 22
versionName "0.5.5"
versionCode 23
versionName "0.5.6"
}
signingConfigs {
debug {
Expand Down
Binary file modified android/app/release/app-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions android/app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 22,
"versionName": "0.5.5",
"versionCode": 23,
"versionName": "0.5.6",
"outputFile": "app-release.apk"
}
],
Expand Down
2 changes: 1 addition & 1 deletion docs/latest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"latestVersion": "0.5.5"
"latestVersion": "0.5.6"
}
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "offsides",
"version": "0.5.5",
"version": "0.5.6",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand Down
1 change: 1 addition & 0 deletions src/components/Comment.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ function Comment({ comment, nav }) {
mode: 'comment',
postID: comment.parent_post_id,
replyID: comment.id,
groupID: comment.group.id,
})
}>
Reply
Expand Down
12 changes: 6 additions & 6 deletions src/screens/MyProfileScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function MyProfileScreen({ navigation }) {
joined {timesago(updates.user.created_at)}
</Text>
</View>
<View style={{ flexDirection: 'row', gap: 10, flexWrap: 'wrap' }}>
<View style={{ flexDirection: 'row', gap: 10 }}>
<Card style={{ flexGrow: 1 }}>
<Card.Title
title="Followers"
Expand All @@ -109,18 +109,18 @@ function MyProfileScreen({ navigation }) {
</Card>
<Card style={{ flexGrow: 1 }}>
<Card.Title
title="Yakarma"
title="Post Karma"
titleVariant="labelLarge"
titleStyle={{ minHeight: 10 }}
/>
<Card.Content>
<Text variant="titleLarge" style={s.stat}>
{updates.karma?.groups[0]?.yakarma}
{updates.karma.post}
</Text>
</Card.Content>
</Card>
</View>
<View style={{ flexDirection: 'row', gap: 10, flexWrap: 'wrap' }}>
<View style={{ flexDirection: 'row', gap: 10 }}>
<Card style={{ flexGrow: 1 }}>
<Card.Title
title="Groups"
Expand All @@ -135,13 +135,13 @@ function MyProfileScreen({ navigation }) {
</Card>
<Card style={{ flexGrow: 1 }}>
<Card.Title
title="Post Karma"
title="Comment Karma"
titleVariant="labelLarge"
titleStyle={{ minHeight: 10 }}
/>
<Card.Content>
<Text variant="titleLarge" style={s.stat}>
{updates.karma.post}
{updates.karma.comment}
</Text>
</Card.Content>
</Card>
Expand Down

0 comments on commit 868c972

Please sign in to comment.