Skip to content
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.

Commit

Permalink
Merge branch 'release/1.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitletondor committed Jun 5, 2018
2 parents 9f04bef + 5a3a4cb commit 04e83d3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ android {
applicationId "com.benoitletondor.beermeup"
minSdkVersion 21
targetSdkVersion 27
versionCode 3
versionName "1.0.2"
versionCode 4
versionName "1.0.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
Expand Down
4 changes: 2 additions & 2 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ DEPENDENCIES:
- firebase_auth (from `Pods/.symlinks/plugins/firebase_auth/ios`)
- firebase_core (from `Pods/.symlinks/plugins/firebase_core/ios`)
- firebase_remote_config (from `Pods/.symlinks/plugins/firebase_remote_config/ios`)
- Flutter (from `Pods/.symlinks/flutter/ios-release`)
- Flutter (from `Pods/.symlinks/flutter/ios`)
- flutter_custom_tabs (from `Pods/.symlinks/plugins/flutter_custom_tabs/ios`)
- flutter_facebook_login (from `Pods/.symlinks/plugins/flutter_facebook_login/ios`)
- google_sign_in (from `Pods/.symlinks/plugins/google_sign_in/ios`)
Expand Down Expand Up @@ -199,7 +199,7 @@ EXTERNAL SOURCES:
firebase_remote_config:
:path: Pods/.symlinks/plugins/firebase_remote_config/ios
Flutter:
:path: Pods/.symlinks/flutter/ios-release
:path: Pods/.symlinks/flutter/ios
flutter_custom_tabs:
:path: Pods/.symlinks/plugins/flutter_custom_tabs/ios
flutter_facebook_login:
Expand Down
2 changes: 1 addition & 1 deletion ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
"${BUILT_PRODUCTS_DIR}/BoringSSL/openssl.framework",
"${BUILT_PRODUCTS_DIR}/FBSDKCoreKit/FBSDKCoreKit.framework",
"${BUILT_PRODUCTS_DIR}/FBSDKLoginKit/FBSDKLoginKit.framework",
"${PODS_ROOT}/.symlinks/flutter/ios-release/Flutter.framework",
"${PODS_ROOT}/.symlinks/flutter/ios/Flutter.framework",
"${BUILT_PRODUCTS_DIR}/GTMOAuth2/GTMOAuth2.framework",
"${BUILT_PRODUCTS_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework",
"${BUILT_PRODUCTS_DIR}/GoogleToolboxForMac/GoogleToolboxForMac.framework",
Expand Down
4 changes: 2 additions & 2 deletions ios/Runner/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>1.0.3</string>
<string>1.0.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -31,7 +31,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>4</string>
<string>5</string>
<key>FacebookAppID</key>
<string>204596980298393</string>
<key>FacebookDisplayName</key>
Expand Down
2 changes: 1 addition & 1 deletion lib/page/home/profile/model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ class ProfileData {

return ProfileData(
checkInsData.length >= 2,
checkIns.length >= 2,
checkIns.length > 0,
totalPoints > 0,
favouriteBeer,
favouriteCategory,
Expand Down
2 changes: 1 addition & 1 deletion lib/page/home/profile/profilepage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class _ProfilePageState extends ViewState<ProfilePage, ProfileViewModel, Profile
return snapshot.data.join(
(loading) => _buildLoadingWidget(),
(empty) => _buildEmptyWidget(empty.hasAlreadyCheckedIn),
(loadNoAllTime) => _buildLoadWidget(loadNoAllTime.profileData),
(loadNoAllTime) => _buildEmptyWidget(true),
(loadNoWeek) => _buildLoadWidget(loadNoWeek.profileData),
(load) => _buildLoadWidget(load.profileData),
(error) => _buildErrorWidget(error: error.error),
Expand Down

0 comments on commit 04e83d3

Please sign in to comment.