Merge tag '9.5'

pull/1004/head
Alex Baker 4 years ago
commit 08a7170c73

@ -1,11 +1,12 @@
Change Log Change Log
--- ---
======= =======
### 9.5 (2020-06-01) ### 9.5 (2020-06-03)
* Drag and drop to change subtasks in all list types * Drag and drop to change subtasks in all list types
* Drag and drop to reprioritize or reschedule tasks while sorting by due date * Drag and drop to reprioritize or reschedule tasks while sorting by due date
or priority or priority
* Bug fixes
* Update translations * Update translations
* Basque - @osoitz * Basque - @osoitz
* Czech - Radek Řehořek * Czech - Radek Řehořek

@ -42,7 +42,7 @@ android {
defaultConfig { defaultConfig {
testApplicationId = "org.tasks.test" testApplicationId = "org.tasks.test"
applicationId = "org.tasks" applicationId = "org.tasks"
versionCode = 90500 versionCode = 90501
versionName = "9.5" versionName = "9.5"
targetSdkVersion(Versions.targetSdk) targetSdkVersion(Versions.targetSdk)
minSdkVersion(Versions.minSdk) minSdkVersion(Versions.minSdk)

@ -247,7 +247,9 @@ public class TaskViewHolder extends RecyclerView.ViewHolder {
dueDate.setTextColor(textColorSecondary); dueDate.setTextColor(textColorSecondary);
} }
String dateValue; String dateValue;
if (sortMode == SortHelper.SORT_DUE && task.sortGroup != null && newDateTime(task.sortGroup).startOfDay().equals(newDateTime(task.getDueDate()).startOfDay())) { if (sortMode == SortHelper.SORT_DUE
&& task.sortGroup != null
&& !preferences.getBoolean(R.string.p_disable_subtasks, false)) {
dateValue = dateValue =
task.hasDueTime() ? getTimeString(context, newDateTime(task.getDueDate())) : null; task.hasDueTime() ? getTimeString(context, newDateTime(task.getDueDate())) : null;
} else { } else {

@ -3,6 +3,6 @@
<string-array name="changelog"> <string-array name="changelog">
<item>Drag and drop to change subtasks in all list types</item> <item>Drag and drop to change subtasks in all list types</item>
<item>Drag and drop to reprioritize or reschedule tasks while sorting by due date or priority</item> <item>Drag and drop to reprioritize or reschedule tasks while sorting by due date or priority</item>
<item>Update translations</item> <item>Bug fixes and translation updates</item>
</string-array> </string-array>
</resources> </resources>

@ -1,4 +1,5 @@
* Drag and drop to change subtasks in all list types * Drag and drop to change subtasks in all list types
* Drag and drop to reprioritize or reschedule tasks while sorting by due date * Drag and drop to reprioritize or reschedule tasks while sorting by due date
or priority or priority
* Bug fixes
* Update translations * Update translations
Loading…
Cancel
Save