Skip to content

Commit 99717fc

Browse files
committed
Release v1.1.5
1 parent a48cfaf commit 99717fc

File tree

6 files changed

+37
-6
lines changed

6 files changed

+37
-6
lines changed

ReadMe.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,23 @@ Release v1.1.4
312312
* 改进:显示客户端应用程序版本
313313
* 修复:每周刷新一次客户端公网 IP
314314

315+
**2025.08.08**
316+
317+
发布版本 v1.1.5:
318+
319+
此版本重点提升了远程控制体验(尤其是多屏支持和鼠标/全屏行为)、增强了集成性与权限管理,并解决了若干关键性 Bug。
320+
321+
* 新功能:新增以管理员身份运行客户端程序的功能
322+
* 新功能:将 frp 客户端集成至主程序中
323+
* 改进:显示非活跃锁定客户端的状态
324+
* 清理:移除旧版本历史记录
325+
* 修复:#176 #177 桌面控制功能异常的问题
326+
* 改进:在当前显示器上进入全屏模式
327+
* 修复:窗口中显示正确的鼠标光标状态
328+
* 改进:支持多屏桌面监控
329+
* 修复:虚拟桌面控制支持多显示器
330+
* 修复:按下 F1 键时避免自动打开网页
331+
315332

316333
---
317334

ReadMe_EN.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,23 @@ Release v1.1.4
322322
* Improve: Showing the client application version
323323
* fix: Refresh client public IP every one week
324324

325+
**2025.08.08**
326+
327+
Release v1.1.5
328+
329+
This version focuses on improving the remote control experience (especially multi-monitor support and UI behavior), enhancing integration and permission handling, and resolving several critical bugs.
330+
331+
* Feature: Add run client program as admin feature
332+
* Feature: Integrate frp client with master program
333+
* Improve: Showing inactive locked client status
334+
* Clean up: Remove old history releases
335+
* fix: #176 #177 Desktop control does not work properly
336+
* Improve: Enter full screen on the current monitor
337+
* fix: Showing the correct cursor status on window
338+
* Improve: Support multiple screen desktop monitoring
339+
* fix: Virtual desktop control support multiple monitor
340+
* fix: Avoid opening w web page when press F1
341+
325342

326343
---
327344

Releases/v1.1.5/Yama.exe

21.2 MB
Binary file not shown.

client/Script.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ IDR_WAVE WAVE "Res\\msg.wav"
8888
//
8989

9090
VS_VERSION_INFO VERSIONINFO
91-
FILEVERSION 1,0,1,4
91+
FILEVERSION 1,0,1,5
9292
PRODUCTVERSION 1,0,0,1
9393
FILEFLAGSMASK 0x3fL
9494
#ifdef _DEBUG
@@ -106,7 +106,7 @@ BEGIN
106106
BEGIN
107107
VALUE "CompanyName", "FUCK THE UNIVERSE"
108108
VALUE "FileDescription", "A GHOST"
109-
VALUE "FileVersion", "1.0.1.4"
109+
VALUE "FileVersion", "1.0.1.5"
110110
VALUE "InternalName", "ServerDll.dll"
111111
VALUE "LegalCopyright", "Copyright (C) 2019-2025"
112112
VALUE "OriginalFilename", "ServerDll.dll"

server/2015Remote/2015Remote.rc

0 Bytes
Binary file not shown.

server/2015Remote/2015RemoteDlg.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,6 @@ LRESULT CMy2015RemoteDlg::OnPasswordCheck(WPARAM wParam, LPARAM lParam) {
12491249
THIS_APP->UpdateMaxConnection(m_nMaxConnection);
12501250
int tm = THIS_CFG.GetInt("settings", "Notify", 10);
12511251
THIS_CFG.SetInt("settings", "Notify", tm - 1);
1252-
MessageBox("请向管理员申请口令。", "提示", MB_ICONWARNING);
12531252
}
12541253
else {
12551254
m_superPass = dlg.m_str.GetString();
@@ -1610,9 +1609,7 @@ bool CMy2015RemoteDlg::CheckValid(int trail) {
16101609
const Validation *verify = GetValidation();
16111610
std::string masterHash = GetMasterHash();
16121611
if (masterHash != GetPwdHash() && !verify->IsValid()) {
1613-
MessageBox("此程序已经失效,请联系管理员处理!", "提示", MB_ICONWARNING);
1614-
OnMainExit();
1615-
ExitProcess(-1);
1612+
return false;
16161613
}
16171614

16181615
auto settings = "settings", pwdKey = "Password";

0 commit comments

Comments
 (0)