File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
owncloudApp/src/main/java/com/owncloud/android Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ ownCloud admins and users.
4141## Summary
4242
4343* Change - Migrate tests to the new kotlinx-coroutines-test API: [ #4710 ] ( https://github.com/owncloud/android/issues/4710 )
44+ * Change - Increase rating dialog delay: [ #4744 ] ( https://github.com/owncloud/android/pull/4744 )
4445* Enhancement - Show members of a space: [ #4612 ] ( https://github.com/owncloud/android/issues/4612 )
4546* Enhancement - Set emoji as space image: [ #4707 ] ( https://github.com/owncloud/android/issues/4707 )
4647
@@ -54,6 +55,13 @@ ownCloud admins and users.
5455 https://github.com/owncloud/android/issues/4710
5556 https://github.com/owncloud/android/pull/4722
5657
58+ * Change - Increase rating dialog delay: [ #4744 ] ( https://github.com/owncloud/android/pull/4744 )
59+
60+ The time before the rating dialog appears has been increased to 7 days, in order
61+ to make it less intrusive for the user.
62+
63+ https://github.com/owncloud/android/pull/4744
64+
5765* Enhancement - Show members of a space: [ #4612 ] ( https://github.com/owncloud/android/issues/4612 )
5866
5967 A new option to view all members of a space has been added to the bottom sheet,
Original file line number Diff line number Diff line change 1+ Change: Increase rating dialog delay
2+
3+ The time before the rating dialog appears has been increased to 7 days, in order to make it less intrusive for the user.
4+
5+ https://github.com/owncloud/android/pull/4744
Original file line number Diff line number Diff line change 2929public class AppRater {
3030 private static final String DIALOG_RATE_ME_TAG = "DIALOG_RATE_ME" ;
3131
32- private final static int DAYS_UNTIL_PROMPT = 2 ;
32+ private final static int DAYS_UNTIL_PROMPT = 7 ;
3333 private final static int LAUNCHES_UNTIL_PROMPT = 2 ;
34- private final static int DAYS_UNTIL_NEUTRAL_CLICK = 1 ;
34+ private final static int DAYS_UNTIL_NEUTRAL_CLICK = 7 ;
3535
3636 public static final String APP_RATER_PREF_TITLE = "app_rater" ;
3737 public static final String APP_RATER_PREF_DONT_SHOW = "don't_show_again" ;
You can’t perform that action at this time.
0 commit comments