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;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user