Skip to content

Commit

Permalink
bumped to 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jayrambhia committed Oct 14, 2018
1 parent 3c69be5 commit 6dfd5c4
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Flutter Changelog

# 0.3.6

- In-app purchase card's purchase status fixed
- Movie rating expiry time added (2 weeks)
- Privacy policy added in the app
- Support added for My Anime List

# 0.3.5

- Bottom navigation integrated
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<img src="https://github.com/jayrambhia/MovieRatings/blob/master/screenshots/cover.png" width="480px"/>
</p>

You can get the latest Playstore version here on [Playstore](https://play.google.com/store/apps/details?id=com.fenchtose.flutter&referrer=utm_source%3Dgithub) - or download directly - [0.3.5](https://github.com/jayrambhia/MovieRatings/releases/download/v0.3.5/flutter_v0.3.5.apk)
You can get the latest Playstore version here on [Playstore](https://play.google.com/store/apps/details?id=com.fenchtose.flutter&referrer=utm_source%3Dgithub) - or download directly - [0.3.6](https://github.com/jayrambhia/MovieRatings/releases/download/v0.3.6/flutter_v0.3.6.apk)

## Screenshots of master

Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ properties.load(project.rootProject.file('local.properties').newDataInputStream(

ext.versionMajor = 0
ext.versionMinor = 3
ext.versionPatch = 5
ext.versionPatch = 6

android {
compileSdkVersion 27
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class InAppPurchaseCard : CardView {
var bought: Boolean = false
set(value) {
field = value
// cta.show(!field)
cta.show(!field)
thanksView.show(field)
subtitle.show(!field)
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/playstore/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<string name="donate_page_title">Support Flutter</string>
<string name="donate_page_persuasion_message">Did you know that Flutter has shown you ratings of over %d titles?</string>
<string name="donate_page_content">Flutter is free for all and contains no ads. If you liked the app and wish to support it, please buy any of the following in-app purchases.\n\nThese purchases do not unlock any features.</string>
<string name="donate_already_purchased_text">You have purchased this for %1s. Thanks for your support!\n\nWould you like to purchase it again?</string>
<string name="donate_already_purchased_text">You have purchased this for %1s. Thanks for your support!</string>
<string name="donate_dialog_title">You\'re the best!</string>
<string name="donate_dialog_message">Thanks for buying an in-app package and supporting the developers and the app.</string>
</resources>

0 comments on commit 6dfd5c4

Please sign in to comment.