remote fetch

This commit is contained in:
downthecrop 2025-09-17 22:24:48 -07:00
parent 973149e859
commit 905393d2be
5 changed files with 257 additions and 14 deletions

View file

@ -0,0 +1,15 @@
package KondoKit.components.ReflectiveEditorComponents
/**
* Data class representing a plugin with its installation status and update information
*/
data class PluginStatus(
val name: String,
val installedVersion: String?,
val remoteVersion: String?,
val description: String?,
val author: String?,
val gitLabPlugin: GitLabPlugin?,
val isInstalled: Boolean,
val needsUpdate: Boolean
)