add support for gif

This commit is contained in:
Phillip Thelen 2024-02-09 15:00:50 +01:00
parent 1950cc91cd
commit 52d7348151
6 changed files with 13 additions and 13 deletions

View file

@ -80,7 +80,7 @@
android:id="@+id/tvLikes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_margin="8dp"
android:clickable="false"
android:focusable="false"
android:gravity="center_vertical" />

View file

@ -2,8 +2,8 @@
<resources>
<color name="tavern.nolikes.background">#0A0A0A</color>
<color name="tavern.somelikes.background">#464646</color>
<color name="tavern.userliked.background">@color/text_green</color>
<color name="tavern.userliked.background">@color/green_50</color>
<color name="tavern.nolikes.foreground">@color/gray_400</color>
<color name="tavern.somelikes.foreground">@color/gray_700</color>
<color name="tavern.userliked.foreground">@color/gray_700</color>
</resources>
</resources>

View file

@ -359,7 +359,7 @@ open class Task : RealmObject, BaseMainObject, Parcelable, BaseTask {
// If the reminder is a todo, only schedule sole dueDate/time occurrence. Otherwise, schedule multiple occurrences in advance
if (this.type == TaskType.TODO) {
occurrencesList.add(this.dueDate?.toZonedDateTime()?.withHour(reminderTime.hour)?.withMinute(reminderTime.minute) ?: return null)
occurrencesList.add((remindersItem.getZonedDateTime() ?: this.dueDate?.toZonedDateTime())?.withHour(reminderTime.hour)?.withMinute(reminderTime.minute) ?: return null)
return occurrencesList
}
val now = ZonedDateTime.now().withZoneSameInstant(ZoneId.systemDefault())

View file

@ -184,6 +184,7 @@ object DataBindingUtils {
tempMap["Pet-Gryphatrice-Jubilant"] = "gif"
tempMap["stable_Pet-Gryphatrice-Jubilant"] = "gif"
tempMap["back_special_heroicAureole"] = "gif"
tempMap["Pet-HatchingPotion-Funghi"] = "gif"
FILEFORMAT_MAP = tempMap
val tempNameMap = mutableMapOf<String, String>()

View file

@ -1,8 +1,7 @@
New in 4.3.3:
- Reminders should show more reliably now
- Remaining Armoire equipment no longer counts unreleased items
- Better error handling when gifting
- Avatar widget now displays correctly
- Pets just got cuter! Tap a Pet or Mount to see them in an environment that changes each month.
- New Subscriber benefits: Buy one Armoire, get another free! Also, get a second chance at life once a day when you run out of HP!
- See answers to common Quest mechanic questions under your active Quest
New in 4.3.4:
To Do reminders should show more reliably
Added password reset option to the Account Reset and Account Delete screens
Group Plan invites will show in the notification center
Added the ability to report a Challenge for community violations
Various other bug fixes and improvements

View file

@ -1,2 +1,2 @@
NAME=4.3.4
CODE=6881
CODE=6901