mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
DROID-3250 Protocol | Enhancement | MW 0.39.0-rc4 (#2003)
This commit is contained in:
parent
121657a8b6
commit
3b65a11d15
4 changed files with 10 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
[versions]
|
||||
middlewareVersion = "v0.39.0-rc1"
|
||||
middlewareVersion = "v0.39.0-rc04"
|
||||
kotlinVersion = '2.0.21'
|
||||
kspVersion = "2.0.21-1.0.25"
|
||||
|
||||
|
|
|
@ -86,6 +86,7 @@ import com.anytypeio.anytype.presentation.spaces.SpaceGradientProvider
|
|||
import com.anytypeio.anytype.presentation.spaces.SpaceIconView
|
||||
import com.anytypeio.anytype.presentation.util.DefaultCoroutineTestRule
|
||||
import com.anytypeio.anytype.presentation.util.Dispatcher
|
||||
import com.anytypeio.anytype.presentation.vault.ExitToVaultDelegate
|
||||
import com.anytypeio.anytype.presentation.widgets.BundledWidgetSourceIds
|
||||
import com.anytypeio.anytype.presentation.widgets.CollapsedWidgetStateHolder
|
||||
import com.anytypeio.anytype.presentation.widgets.DropDownMenuAction
|
||||
|
@ -268,6 +269,9 @@ class HomeScreenViewModelTest {
|
|||
@Mock
|
||||
lateinit var getSpaceInviteLink: GetSpaceInviteLink
|
||||
|
||||
@Mock
|
||||
lateinit var exitToVaultDelegate: ExitToVaultDelegate
|
||||
|
||||
lateinit var userPermissionProvider: UserPermissionProvider
|
||||
|
||||
private val objectPayloadDispatcher = Dispatcher.Default<Payload>()
|
||||
|
@ -3060,7 +3064,8 @@ class HomeScreenViewModelTest {
|
|||
),
|
||||
featureToggles = featureToggles,
|
||||
fieldParser = fieldParser,
|
||||
spaceInviteResolver = spaceInviteResolver
|
||||
spaceInviteResolver = spaceInviteResolver,
|
||||
exitToVaultDelegate = exitToVaultDelegate
|
||||
)
|
||||
|
||||
companion object {
|
||||
|
|
|
@ -2628,6 +2628,8 @@ message Rpc {
|
|||
bool isJson = 7;
|
||||
// for migration
|
||||
bool includeArchived = 9;
|
||||
// for integrations like raycast and web publishing
|
||||
bool noProgress = 11;
|
||||
}
|
||||
|
||||
message Response {
|
||||
|
|
|
@ -390,6 +390,7 @@ message Block {
|
|||
TimeFormat timeFormat = 6;
|
||||
DateFormat dateFormat = 7;
|
||||
FormulaType formula = 8;
|
||||
Block.Align align = 9;
|
||||
|
||||
enum DateFormat {
|
||||
MonthAbbrBeforeDay = 0; // Jul 30, 2020
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue