Skip to content

Commit

Permalink
#309 - (version/0.18.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
victorbalssa authored Jul 4, 2024
1 parent 10e96f0 commit a1a814e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
6 changes: 3 additions & 3 deletions app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default {
'ios',
'android',
],
version: '0.17.0',
version: '0.18.0',
orientation: 'portrait',
updates: {
enabled: true,
Expand Down Expand Up @@ -38,7 +38,7 @@ export default {
usesNonExemptEncryption: false,
},
bundleIdentifier: IS_DEV ? 'abacus.fireflyiii.ios.app.dev' : 'abacus.ios.app',
buildNumber: '0.17.0',
buildNumber: '0.18.0',
},
android: {
icon: './src/images/icon-abacus.png',
Expand All @@ -56,7 +56,7 @@ export default {
},
playStoreUrl: 'https://play.google.com/store/apps/details?id=abacus.fireflyiii.android.app',
package: IS_DEV ? 'abacus.fireflyiii.android.app.dev' : 'abacus.fireflyiii.android.app',
versionCode: 25,
versionCode: 26,
},
scheme: 'abacusfiiiapp',
githubUrl: 'https://github.com/victorbalssa/abacus',
Expand Down
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": "abacus",
"version": "0.17.0",
"version": "0.18.0",
"private": true,
"homepage": "https://github.com/victorbalssa/abacus",
"scripts": {
Expand Down
12 changes: 9 additions & 3 deletions src/components/Screens/HomeScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,10 @@ function Bills() {
refreshControl={(
<RefreshControl
refreshing={false}
onRefresh={() => dispatch.bills.getBills()}
onRefresh={() => Promise.all([
dispatch.bills.getBills(),
dispatch.firefly.getNetWorth(),
])}
/>
)}
>
Expand Down Expand Up @@ -379,11 +382,14 @@ function PiggyBanks() {
refreshControl={(
<RefreshControl
refreshing={false}
onRefresh={() => dispatch.piggybank.getPiggyBanks()}
onRefresh={() => Promise.all([
dispatch.piggybank.getPiggyBanks(),
dispatch.firefly.getNetWorth(),
])}
/>
)}
>
<AText fontSize={25} lineHeight={27} style={{ margin: 15 }}>
<AText fontSize={25} lineHeight={27} style={{ margin: 15 }} bold>
{translate('home_piggy_banks')}
</AText>
{piggyBanks.map((pb) => (
Expand Down

0 comments on commit a1a814e

Please sign in to comment.