mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
feat(config): implement excluded modules validation (#1460)
* feat(config): implement excluded modules validation * feat: hide excluded configs from metadata * refactor: save local metadata from WantConfig * refactor: delete metadata from deleted nodes * fix: always request metadata for admin routes * feat: show node firmware when metadata is available * refactor: rename filter function * feat: add `ServiceAction` request metadata
This commit is contained in:
parent
bdefbc3ce2
commit
60e7e18116
28 changed files with 1164 additions and 358 deletions
|
|
@ -21,7 +21,6 @@ import androidx.annotation.StringRes
|
|||
import com.geeksville.mesh.MeshProtos.Routing
|
||||
import com.geeksville.mesh.MessageStatus
|
||||
import com.geeksville.mesh.R
|
||||
import com.geeksville.mesh.database.entity.NodeEntity
|
||||
import com.geeksville.mesh.database.entity.Reaction
|
||||
|
||||
@Suppress("CyclomaticComplexMethod")
|
||||
|
|
@ -49,7 +48,7 @@ fun getStringResFrom(routingError: Int): Int = when (routingError) {
|
|||
data class Message(
|
||||
val uuid: Long,
|
||||
val receivedTime: Long,
|
||||
val node: NodeEntity,
|
||||
val node: Node,
|
||||
val text: String,
|
||||
val time: String,
|
||||
val read: Boolean,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue