Skip to content

Commit

Permalink
📢 发布了 v3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
WangHaonie committed Apr 20, 2024
1 parent 1944d73 commit 478a921
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CEETimerCSharpWinForms/CEETimerCSharpWinForms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<DefineConstants>
</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
Expand Down
4 changes: 2 additions & 2 deletions CEETimerCSharpWinForms/Modules/LaunchManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ public class LaunchManager
{
public static bool IsAdmin { get; private set; }

public const string AppVersion = "3.0.1";
public const string AppVersionText = $"版本 v{AppVersion} x64 (2024/04/07)";
public const string AppVersion = "3.0.2";
public const string AppVersionText = $"版本 v{AppVersion} x64 (2024/04/20)";
public const string InfoMsg = "提示 - 高考倒计时";
public const string WarnMsg = "警告 - 高考倒计时";
public const string ErrMsg = "错误 - 高考倒计时";
Expand Down
4 changes: 2 additions & 2 deletions NSIS/Setup.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ launch:

!include "MUI2.nsh"
!define PRODUCT_NAME "高考倒计时"
!define PRODUCT_VERSION "v3.0.1"
!define SETUP_FILENAME_NO_V "3.0.1"
!define SETUP_FILENAME_NO_V "3.0.2"
!define PRODUCT_VERSION "v${SETUP_FILENAME_NO_V}"
!define PRODUCT_PUBLISHER "WangHaonie"
!define PRODUCT_WEB_SITE "https://github.com/WangHaonie/CEETimerCSharpWinForms"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ CEETimerCSharpWinForms,适用于 Windows 系统的高考倒计时,支持自
## 主要功能
+ ✅ 自定义考试名称;
+ ✅ 自定义考试开始、结束日期和时间;
+ ✅ 自定义显示的位置,默认左上角 (也可以拖动,不过需手动开启);
+ ✅ 自定义显示的位置,默认左上角 (可设置);
+ ✅ 设置是否顶置显示,默认开启 (会被其他后来出现的同样具有顶置属性的窗口遮挡);
+ ✅ 更改倒计时字体和大小;
+ ✅ 更改倒计时文字、背景颜色;
+ ✅ 可设置是否只显示天数等 (设置>显示);
## 其他功能
+ ✅ 可以拖动,不过需手动开启;
+ ✅ 防止多开,同时也防止被关闭 (但可以结束进程);
+ ✅ 设置开机启动;
+ ✅ 自身内存优化 (需手动开启);
Expand All @@ -25,7 +26,7 @@ CEETimerCSharpWinForms,适用于 Windows 系统的高考倒计时,支持自
+ ✅ 检查更新功能,用户确认后可自动下载并安装;
+ ✅ 同步网络时钟,确保系统时间准确无误 (因涉及到修改系统设置,使用此功能可能会弹出 UAC 对话框,请手动点击允许);
## 运行截图
> v3.0.1,Windows 11,1920x1080,125% 缩放
> v3.0.2,Windows 11,1920x1080,125% 缩放
![主窗口](./Screenshot.jpg)
## 食用方法
Expand All @@ -42,7 +43,7 @@ CEETimerCSharpWinForms,适用于 Windows 系统的高考倒计时,支持自
+ 后续若实现该功能,可以使用组合键 Win+Tab 打开任务视图,右键本程序窗口,勾选 "在所有桌面上显示此窗口" 或 "在所有桌面上显示此应用的窗口" 即可,后者需在打开本程序2个或多个窗口后方可勾选
## 设置界面介绍
### 基本
+ **考试名称**:输入考试名称,2~15字
+ **考试名称**:输入考试名称,2~10字
+ **考试开始/结束日期和时间**:在控件的数字上左键点击,可使用左右键切换要设置的字段,上下键选择具体数值。也可以点击控件右侧的日历小图标弹出日历进行选择,具体时间需手动输入
+ **开机时自动启动倒计时**:可设置是否开机启动
+ **在需要时自动优化内存**:由于 C# 程序普遍存在内存占用问题,勾选后会每5分钟检测内存占用,当超过9MB才会触发清理
Expand All @@ -65,7 +66,7 @@ CEETimerCSharpWinForms,适用于 Windows 系统的高考倒计时,支持自
+ **同步网络时钟**:一键同步网络时钟,需要管理员权限,同时会将系统默认网络时钟服务器设置为 ntp1.aliyun.com (国内的),并且还会将 Windows Time 服务设置为自动启动
+ **重启倒计时**:一键重新启动倒计时,由于本程序采用的 WinForms 框架在更改了屏幕缩放后并不会自动调整而使得窗口文字显示模糊,故可以重新启动程序确保文字清晰
## 开发环境
Windows 11 Pro x64 (22635.3430),Visual Studio 2022 (17.9.5),C# (12.0),WinForms,.NET Framework 4.7.2
Windows 11 Pro x64 (22635.3500),Visual Studio 2022 (17.9.6),C# (12.0),WinForms,.NET Framework 4.7.2
## 开源许可证
CEETimerCSharpWinForms is licensed under the GNU General Public License v3.0 (GPL-3.0)
## 打赏作者
Expand Down
Binary file modified Screenshot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 478a921

Please sign in to comment.