Skip to content

Commit

Permalink
v1.1.2 update
Browse files Browse the repository at this point in the history
  • Loading branch information
Hgnim committed Nov 27, 2024
1 parent 1800dc8 commit e866164
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions EasyUpdateFromGithub/UpdateFromGithub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,23 @@ public class CheckUpdateValue
/// <summary>
/// 是否包含更新
/// </summary>
public bool haveUpdate;
public bool HaveUpdate => haveUpdate;
internal bool haveUpdate;
/// <summary>
/// 新版本的字符串
/// </summary>
public string newVersionStr;
public string NewVersionStr=>newVersionStr;
internal string newVersionStr;
/// <summary>
/// 发布时间
/// </summary>
public string publishedTime;
public string PublishedTime=>publishedTime;
internal string publishedTime;
/// <summary>
/// 该发布页所有文件的下载次数
/// </summary>
public int downloadCount=-1;
public int DownloadCount => downloadCount;
internal int downloadCount=-1;
}
/// <summary>
/// 根据RepositoryURL检查当前程序是否有可用的更新和获取其它信息
Expand Down

0 comments on commit e866164

Please sign in to comment.