Add last download into to database

This commit is contained in:
Mbucari 2023-03-02 15:09:10 -07:00
parent 52a863c62a
commit bd7e45ca3c
9 changed files with 518 additions and 32 deletions

View file

@ -20,6 +20,8 @@ namespace LibationFileManager
public static bool IsWindows { get; } = OperatingSystem.IsWindows();
public static bool IsLinux { get; } = OperatingSystem.IsLinux();
public static bool IsMacOs { get; } = OperatingSystem.IsMacOS();
public static Version LibationVersion { get; private set; }
public static void SetLibationVersion(Version version) => LibationVersion = version;
public static OS OS { get; }
= IsLinux ? OS.Linux