Merge old and new search panels

This commit is contained in:
downthecrop 2025-10-12 19:33:25 -07:00
parent 2d1e2806ec
commit 8ac1bad46f
9 changed files with 352 additions and 336 deletions

View file

@ -0,0 +1,30 @@
package KondoKit.pluginmanager
data class GitLabPlugin(
val id: String,
val path: String,
val pluginProperties: PluginProperties?,
val pluginError: String?
)
data class PluginProperties(
val author: String,
val version: String,
val description: String
)
/**
* Data class representing a plugin with its installation status and update information
*/
data class PluginInfoWithStatus(
val name: String,
val installedVersion: String?,
val remoteVersion: String?,
val description: String?,
val author: String?,
val gitLabPlugin: GitLabPlugin?,
val isInstalled: Boolean,
val needsUpdate: Boolean,
val isDownloading: Boolean = false,
val downloadProgress: Int = 0
)