Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ ownCloud admins and users.
## Summary

* Change - Migrate tests to the new kotlinx-coroutines-test API: [#4710](https://github.com/owncloud/android/issues/4710)
* Change - Increase rating dialog delay: [#4744](https://github.com/owncloud/android/pull/4744)
* Enhancement - Show members of a space: [#4612](https://github.com/owncloud/android/issues/4612)
* Enhancement - Set emoji as space image: [#4707](https://github.com/owncloud/android/issues/4707)

Expand All @@ -54,6 +55,13 @@ ownCloud admins and users.
https://github.com/owncloud/android/issues/4710
https://github.com/owncloud/android/pull/4722

* Change - Increase rating dialog delay: [#4744](https://github.com/owncloud/android/pull/4744)

The time before the rating dialog appears has been increased to 7 days, in order
to make it less intrusive for the user.

https://github.com/owncloud/android/pull/4744

* Enhancement - Show members of a space: [#4612](https://github.com/owncloud/android/issues/4612)

A new option to view all members of a space has been added to the bottom sheet,
Expand Down
5 changes: 5 additions & 0 deletions changelog/unreleased/4744
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Change: Increase rating dialog delay

The time before the rating dialog appears has been increased to 7 days, in order to make it less intrusive for the user.

https://github.com/owncloud/android/pull/4744
4 changes: 2 additions & 2 deletions owncloudApp/src/main/java/com/owncloud/android/AppRater.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
public class AppRater {
private static final String DIALOG_RATE_ME_TAG = "DIALOG_RATE_ME";

private final static int DAYS_UNTIL_PROMPT = 2;
private final static int DAYS_UNTIL_PROMPT = 7;
private final static int LAUNCHES_UNTIL_PROMPT = 2;
private final static int DAYS_UNTIL_NEUTRAL_CLICK = 1;
private final static int DAYS_UNTIL_NEUTRAL_CLICK = 7;

public static final String APP_RATER_PREF_TITLE = "app_rater";
public static final String APP_RATER_PREF_DONT_SHOW = "don't_show_again";
Expand Down
Loading