mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
finalize 3.2
This commit is contained in:
parent
1fc7f605d8
commit
5a87a6a5cc
8 changed files with 14 additions and 8 deletions
|
|
@ -150,7 +150,7 @@ android {
|
|||
buildConfigField "String", "TESTING_LEVEL", "\"production\""
|
||||
resConfigs "en", "bg", "de", "en-rGB", "es", "fr", "hr-rHR", "in", "it", "iw", "ja", "ko", "lt", "nl", "pl", "pt-rBR", "pt-rPT", "ru", "tr", "zh", "zh-rTW"
|
||||
|
||||
versionCode 2813
|
||||
versionCode 2820
|
||||
versionName "3.2"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
</fragment>
|
||||
<fragment
|
||||
android:id="@+id/noPartyFragment"
|
||||
android:name="com.habitrpg.android.habitica.ui.fragments.social.NoPartyFragmentFragment"
|
||||
android:name="com.habitrpg.android.habitica.ui.fragments.social.party.NoPartyFragmentFragment"
|
||||
android:label="@string/sidebar_party">
|
||||
</fragment>
|
||||
<fragment
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@
|
|||
<string name="quest_accept">Accept</string>
|
||||
<string name="quest_reject">Reject</string>
|
||||
<string name="quest_begin">Begin Quest</string>
|
||||
<string name="quest_cancel">Cancel Invitation</string>
|
||||
<string name="quest_cancel">Cancel</string>
|
||||
<string name="quest_abort">Abort Quest</string>
|
||||
<string name="version_info">Version %1$s (%2$d)</string>
|
||||
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ import com.habitrpg.android.habitica.ui.fragments.social.guilds.GuildDetailFragm
|
|||
import com.habitrpg.android.habitica.ui.fragments.social.guilds.GuildFragment;
|
||||
import com.habitrpg.android.habitica.ui.fragments.social.InboxMessageListFragment;
|
||||
import com.habitrpg.android.habitica.ui.fragments.social.InboxOverviewFragment;
|
||||
import com.habitrpg.android.habitica.ui.fragments.social.NoPartyFragmentFragment;
|
||||
import com.habitrpg.android.habitica.ui.fragments.social.party.NoPartyFragmentFragment;
|
||||
import com.habitrpg.android.habitica.ui.fragments.social.guilds.GuildListFragment;
|
||||
import com.habitrpg.android.habitica.ui.fragments.social.QuestDetailFragment;
|
||||
import com.habitrpg.android.habitica.ui.fragments.social.TavernDetailFragment;
|
||||
|
|
|
|||
|
|
@ -192,6 +192,8 @@ class NavigationDrawerFragment : DialogFragment() {
|
|||
getItemWithIdentifier(SIDEBAR_TEAMS)?.isVisible = it.size != 0
|
||||
adapter.setTeams(it)
|
||||
}, RxErrorHandler.handleEmptyError()))
|
||||
} else {
|
||||
getItemWithIdentifier(SIDEBAR_TEAMS)?.isVisible = false
|
||||
}
|
||||
|
||||
subscriptions?.add(userRepository.getUser().subscribe({
|
||||
|
|
|
|||
|
|
@ -112,11 +112,15 @@ class QuestDetailFragment : BaseMainFragment<FragmentQuestDetailBinding>() {
|
|||
} else if (showLeaderButtons()) {
|
||||
binding?.questParticipantResponseWrapper?.visibility = View.GONE
|
||||
binding?.questLeaderResponseWrapper?.visibility = View.VISIBLE
|
||||
binding?.questCancelButton?.visibility = View.VISIBLE
|
||||
if (isQuestActive) {
|
||||
binding?.questCancelButton?.visibility = View.GONE
|
||||
if (userId != party?.quest?.leader) {
|
||||
binding?.questLeaveButton?.visibility = View.VISIBLE
|
||||
} else {
|
||||
binding?.questLeaveButton?.visibility = View.GONE
|
||||
}
|
||||
binding?.questBeginButton?.visibility = View.GONE
|
||||
} else {
|
||||
binding?.questCancelButton?.visibility = View.VISIBLE
|
||||
binding?.questBeginButton?.visibility = View.VISIBLE
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package com.habitrpg.android.habitica.ui.fragments.social
|
||||
package com.habitrpg.android.habitica.ui.fragments.social.party
|
||||
|
||||
import android.app.Activity
|
||||
import android.content.ClipData
|
||||
|
|
@ -1 +1 @@
|
|||
This update is full of bug fixes and quality of life upgrades. You can now use the Fortify Potion! If your tasks are getting out of hand and you’re overwhelmed with red, just get a Fortify Potion from the Market and it will reset all tasks to a neutral value. You’ll now receive an in-app message when you’ve won a Challenge and won Challenges will be listed in your Achievements. We’ve also improved the flow for hatching Pets, receiving Pet Achievements, starting Quests, and creating Challenges.
|
||||
In this update we've cleaned up Guilds and Challenges to look better than ever. Check them out and maybe find something new! Starting or leaving a Quest will update the Party view right away. Snowballs will actually transform your party members now. Certain notifications work better, bringing you to the right place and no longer crashing the app in some cases. Subscriber Mystery Boxes have a fancy new view when opening as well. Check these out and lots of other fixes by downloading the update!
|
||||
|
|
|
|||
Loading…
Reference in a new issue