mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Core - Fix plugins without a version in their plugin.json always being considered incompatible
This commit is contained in:
parent
a48e0d2d90
commit
fb59443f9a
@ -10,7 +10,7 @@ namespace Artemis.Core;
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
||||||
{
|
{
|
||||||
private Version? _api;
|
private Version? _api = new(1, 0, 0);
|
||||||
private string? _author;
|
private string? _author;
|
||||||
private bool _autoEnableFeatures = true;
|
private bool _autoEnableFeatures = true;
|
||||||
private string? _description;
|
private string? _description;
|
||||||
@ -38,7 +38,7 @@ public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
|||||||
/// The plugins GUID
|
/// The plugins GUID
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonRequired]
|
[JsonRequired]
|
||||||
[JsonInclude]
|
[JsonInclude]
|
||||||
public Guid Guid
|
public Guid Guid
|
||||||
{
|
{
|
||||||
get => _guid;
|
get => _guid;
|
||||||
@ -49,7 +49,7 @@ public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
|||||||
/// The name of the plugin
|
/// The name of the plugin
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonRequired]
|
[JsonRequired]
|
||||||
[JsonInclude]
|
[JsonInclude]
|
||||||
public string Name
|
public string Name
|
||||||
{
|
{
|
||||||
get => _name;
|
get => _name;
|
||||||
@ -91,7 +91,7 @@ public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
|||||||
get => _repository;
|
get => _repository;
|
||||||
set => SetAndNotify(ref _repository, value);
|
set => SetAndNotify(ref _repository, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the help page of this plugin
|
/// Gets or sets the help page of this plugin
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -100,7 +100,7 @@ public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
|||||||
get => _helpPage;
|
get => _helpPage;
|
||||||
set => SetAndNotify(ref _helpPage, value);
|
set => SetAndNotify(ref _helpPage, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the help page of this plugin
|
/// Gets or sets the help page of this plugin
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -109,7 +109,7 @@ public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
|||||||
get => _license;
|
get => _license;
|
||||||
set => SetAndNotify(ref _license, value);
|
set => SetAndNotify(ref _license, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the author of this plugin
|
/// Gets or sets the author of this plugin
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -133,7 +133,7 @@ public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
|||||||
/// The version of the plugin
|
/// The version of the plugin
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonRequired]
|
[JsonRequired]
|
||||||
[JsonInclude]
|
[JsonInclude]
|
||||||
public string Version
|
public string Version
|
||||||
{
|
{
|
||||||
get => _version;
|
get => _version;
|
||||||
@ -144,7 +144,7 @@ public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
|||||||
/// The main entry DLL, should contain a class implementing Plugin
|
/// The main entry DLL, should contain a class implementing Plugin
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonRequired]
|
[JsonRequired]
|
||||||
[JsonInclude]
|
[JsonInclude]
|
||||||
public string Main
|
public string Main
|
||||||
{
|
{
|
||||||
get => _main;
|
get => _main;
|
||||||
@ -164,7 +164,7 @@ public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a boolean indicating whether this plugin requires elevated admin privileges
|
/// Gets a boolean indicating whether this plugin requires elevated admin privileges
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonInclude]
|
[JsonInclude]
|
||||||
public bool RequiresAdmin
|
public bool RequiresAdmin
|
||||||
{
|
{
|
||||||
get => _requiresAdmin;
|
get => _requiresAdmin;
|
||||||
@ -183,7 +183,7 @@ public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets
|
/// Gets
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonInclude]
|
[JsonInclude]
|
||||||
public PluginPlatform? Platforms
|
public PluginPlatform? Platforms
|
||||||
{
|
{
|
||||||
get => _platforms;
|
get => _platforms;
|
||||||
@ -193,7 +193,7 @@ public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the API version the plugin was built for
|
/// Gets the API version the plugin was built for
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonInclude]
|
[JsonInclude]
|
||||||
public Version? Api
|
public Version? Api
|
||||||
{
|
{
|
||||||
get => _api;
|
get => _api;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user