1
0
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:
Robert 2024-02-28 23:27:31 +01:00
parent a48e0d2d90
commit fb59443f9a

View File

@ -10,7 +10,7 @@ namespace Artemis.Core;
/// </summary>
public class PluginInfo : CorePropertyChanged, IPrerequisitesSubject
{
private Version? _api;
private Version? _api = new(1, 0, 0);
private string? _author;
private bool _autoEnableFeatures = true;
private string? _description;