Skip to content

Commit

Permalink
Release/1.2.0 (#52)
Browse files Browse the repository at this point in the history
* ADD: first iteration of the onboarding screen

* UPDATE: bump version to 1.2.0

* ADD: help translate, report bug buttons

* ADD: Add skip to next reminder button and badges to the review details

* ADD: show empty questions and options
  • Loading branch information
Kyonru authored Feb 23, 2021
1 parent 09e1087 commit 023e493
Show file tree
Hide file tree
Showing 41 changed files with 698 additions and 48 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ android {
applicationId "com.kyonru.justareviewapp"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 4
versionName "1.1.0"
versionCode 5
versionName "1.2.0"
testBuildType System.getProperty('testBuildType', 'debug')
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
multiDexEnabled true
Expand Down
16 changes: 8 additions & 8 deletions fastlane/report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,42 +5,42 @@



<testcase classname="fastlane.lanes" name="0: load_json" time="0.000542">
<testcase classname="fastlane.lanes" name="0: load_json" time="0.000523">

</testcase>


<testcase classname="fastlane.lanes" name="1: Switch to inc_ver_ios lane" time="0.000378">
<testcase classname="fastlane.lanes" name="1: Switch to inc_ver_ios lane" time="0.000347">

</testcase>


<testcase classname="fastlane.lanes" name="2: load_json" time="0.000691">
<testcase classname="fastlane.lanes" name="2: load_json" time="0.000411">

</testcase>


<testcase classname="fastlane.lanes" name="3: increment_build_number" time="4.431835">
<testcase classname="fastlane.lanes" name="3: increment_build_number" time="6.540669">

</testcase>


<testcase classname="fastlane.lanes" name="4: increment_version_number" time="0.936872">
<testcase classname="fastlane.lanes" name="4: increment_version_number" time="0.742627">

</testcase>


<testcase classname="fastlane.lanes" name="5: Switch to inc_ver_and lane" time="0.00022">
<testcase classname="fastlane.lanes" name="5: Switch to inc_ver_and lane" time="0.000219">

</testcase>


<testcase classname="fastlane.lanes" name="6: increment_version_code" time="0.029299">
<testcase classname="fastlane.lanes" name="6: increment_version_code" time="0.005075">

</testcase>


<testcase classname="fastlane.lanes" name="7: increment_version_name" time="0.021973">
<testcase classname="fastlane.lanes" name="7: increment_version_name" time="0.00529">

</testcase>

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @format
*/

import 'react-native-gesture-handler';
import { AppRegistry } from 'react-native';
import App from 'src';
import { name as appName } from './app.json';
Expand Down
4 changes: 2 additions & 2 deletions ios/justAReviewApp-tvOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>4</string>
<string>5</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
Expand Down
4 changes: 2 additions & 2 deletions ios/justAReviewApp-tvOSTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>4</string>
<string>5</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions ios/justAReviewApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = justAReviewApp/justAReviewApp.entitlements;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
DEAD_CODE_STRIPPING = YES;
INFOPLIST_FILE = justAReviewApp/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
Expand Down Expand Up @@ -805,7 +805,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = justAReviewApp/justAReviewApp.entitlements;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
INFOPLIST_FILE = justAReviewApp/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
Expand Down
4 changes: 2 additions & 2 deletions ios/justAReviewApp/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.1.0</string>
<string>1.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>4</string>
<string>5</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
Expand Down
4 changes: 2 additions & 2 deletions ios/justAReviewAppTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>4</string>
<string>5</string>
</dict>
</plist>
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "justAReviewApp",
"version": "1.1.0",
"version": "1.2.0",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand Down Expand Up @@ -57,6 +57,7 @@
"react-native-paper": "^4.3.1",
"react-native-push-notification": "^6.1.3",
"react-native-reanimated": "^1.13.1",
"react-native-redash": "^16.0.8",
"react-native-safe-area-context": "^3.1.8",
"react-native-screens": "^2.13.0",
"react-native-svg": "^12.1.0",
Expand Down
2 changes: 2 additions & 0 deletions src/@types/external.modules.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ declare module '@env' {
export const PAY_URL: string;
export const GITHUB_URL: string;
export const SENTRY: string;
export const TRANSLATIONS_URL: string;
export const BUG_REPORTING_URL: string;
}
21 changes: 21 additions & 0 deletions src/@types/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,25 @@ export enum LanguageSource {
saturday = 'saturday',
sunday = 'sunday',
item = 'item',
showOnboarding = 'showOnboarding',
onboardingTitle1 = 'onboardingTitle1',
onboardingTitle2 = 'onboardingTitle2',
onboardingTitle3 = 'onboardingTitle3',
onboardingTitle4 = 'onboardingTitle4',
onboardingTitle5 = 'onboardingTitle5',
onboardingDescription1 = 'onboardingDescription1',
onboardingDescription2 = 'onboardingDescription2',
onboardingDescription3 = 'onboardingDescription3',
onboardingDescription4 = 'onboardingDescription4',
onboardingDescription5 = 'onboardingDescription5',
next = 'next',
close = 'close',
skip = 'skip',
helpTranslate = 'helpTranslate',
reportBug = 'reportBug',
nextReminder = 'nextReminder',
skipToNextDate = 'skipToNextDate',
seeLogs = 'seeLogs',
showHidden = 'showHidden',
hideHidden = 'hideHidden',
}
2 changes: 1 addition & 1 deletion src/components/screen-container/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function ScreenContainer(props: Props) {
const { containerStyle, children, containerProps } = props;
return (
<>
<StatusBar barStyle="default" backgroundColor={colors.brown} />
<StatusBar barStyle="default" backgroundColor={colors.lightBrown} />
<SafeAreaView style={styles.container}>
<View
{...containerProps}
Expand Down
30 changes: 30 additions & 0 deletions src/containers/onboarding/constants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { LanguageSource } from 'src/@types/services';
import resources from 'src/resources';

export const onBoardingSteps = [
{
title: LanguageSource.onboardingTitle1,
description: LanguageSource.onboardingDescription1,
image: resources.images.onBoarding.illustration1,
},
{
title: LanguageSource.onboardingTitle2,
description: LanguageSource.onboardingDescription2,
image: resources.images.onBoarding.illustration2,
},
{
title: LanguageSource.onboardingTitle3,
description: LanguageSource.onboardingDescription3,
image: resources.images.onBoarding.illustration3,
},
{
title: LanguageSource.onboardingTitle4,
description: LanguageSource.onboardingDescription4,
image: resources.images.onBoarding.illustration4,
},
{
title: LanguageSource.onboardingTitle5,
description: LanguageSource.onboardingDescription5,
image: resources.images.onBoarding.illustration5,
},
];
Loading

0 comments on commit 023e493

Please sign in to comment.