remote downloading

This commit is contained in:
downthecrop 2025-09-18 20:08:53 -07:00
parent 905393d2be
commit dc70d4406e
3 changed files with 836 additions and 26 deletions

View file

@ -11,5 +11,7 @@ data class PluginStatus(
val author: String?,
val gitLabPlugin: GitLabPlugin?,
val isInstalled: Boolean,
val needsUpdate: Boolean
val needsUpdate: Boolean,
val isDownloading: Boolean = false,
val downloadProgress: Int = 0
)