Skip to content

Commit

Permalink
feat: release 2.2.1 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
gajjartejas committed Jul 6, 2024
1 parent 48cbe6c commit 148b694
Show file tree
Hide file tree
Showing 6 changed files with 16 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 @@ -100,8 +100,8 @@ android {
applicationId "com.tejasgajjar.miuiadshelper"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 23
versionName "2.2"
versionCode 24
versionName "2.2.1"
missingDimensionStrategy "store", "play"
}

Expand Down
2 changes: 1 addition & 1 deletion app/components/AppManager/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const AppManager = ({ children }: Props) => {
await initConnection();
const purchases = await getAvailablePurchases();
if (purchases && purchases.length > 0) {
setPurchased(!__DEV__); //For testing
setPurchased(true);
}
})();
}, [setPurchased]);
Expand Down
4 changes: 4 additions & 0 deletions app/config/app-theme-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export const PaperThemeDefault = {

white: '#ffffff',
black: '#000000',

text: '#000000',
},
};

Expand Down Expand Up @@ -65,5 +67,7 @@ export const PaperThemeDark = {

white: '#ffffff',
black: '#000000',

text: '#FFFFFF',
},
};
6 changes: 3 additions & 3 deletions app/screens/Home/AdsDetail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,12 @@ const AdsDetails = ({ route, navigation }: Props) => {
</View>
<View style={styles.parallexContainerView}>
<Text style={[styles.adsDetailDescText, { color: colors.text }]}>{t('ads_detail_desc')}</Text>
<Text style={[styles.detailText, { color: `${colors.text}60` }]}>{item.detail}</Text>
<Text style={[styles.detailText, { color: `${colors.text}88` }]}>{item.detail}</Text>
<Text style={[styles.stepsText, { color: colors.text }]}>{t('ads_detail_steps')}</Text>
<ParsedText
parse={[{ pattern: regex, style: styles.bold, renderText: renderText }]}
parse={[{ pattern: regex, style: [styles.bold, { color: `${colors.text}` }], renderText: renderText }]}
childrenProps={{ allowFontScaling: false }}
style={[styles.stepsDescText, { color: `${colors.text}60` }]}>
style={[styles.stepsDescText, { color: `${colors.text}88` }]}>
{item.steps}
</ParsedText>
{item.adsSettingPaths && !item.hideButton && (
Expand Down
10 changes: 4 additions & 6 deletions app/screens/Home/AdsDetail/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,23 @@ const styles = StyleSheet.create({
},
adsDetailDescText: {
marginHorizontal: 20,
fontSize: 30,
fontSize: 28,
marginTop: 20,
fontWeight: 'bold',
},
detailText: {
marginHorizontal: 20,
fontSize: 18,
fontSize: 16,
fontWeight: '400',
marginTop: 4,
},
stepsText: {
marginHorizontal: 20,
fontSize: 30,
fontWeight: 'bold',
fontSize: 28,
marginTop: 20,
},
stepsDescText: {
marginHorizontal: 20,
fontSize: 18,
fontSize: 16,
fontWeight: '400',
marginTop: 4,
},
Expand Down
4 changes: 2 additions & 2 deletions ios/MIUIAdsHelper.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.2;
MARKETING_VERSION = 2.2.1;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand All @@ -615,7 +615,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.2;
MARKETING_VERSION = 2.2.1;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down

0 comments on commit 148b694

Please sign in to comment.