diff --git a/ReadMe.txt b/ReadMe.txt index e0a2ae7..7919b25 100644 --- a/ReadMe.txt +++ b/ReadMe.txt @@ -147,3 +147,9 @@ 3、修复语音监听对话框显示已收到数据不更新状态的问题。 4、发现"发送本地语音"会导致主控端容易崩溃的问题,现象类似于操作远程桌面时的随机崩溃。 + +5、设置视频监控对话框为可调整大小,为其设置图标。 + +2019.1.26 + +发布V1.0.0.3。 diff --git a/client/ClientDll.vcxproj b/client/ClientDll.vcxproj index 5a2a76c..f4f28ab 100644 --- a/client/ClientDll.vcxproj +++ b/client/ClientDll.vcxproj @@ -137,6 +137,7 @@ + diff --git a/client/ClientDll.vcxproj.filters b/client/ClientDll.vcxproj.filters index 4563459..ae6eeab 100644 --- a/client/ClientDll.vcxproj.filters +++ b/client/ClientDll.vcxproj.filters @@ -175,5 +175,8 @@ 资源文件 + + 资源文件 + \ No newline at end of file diff --git a/client/Script.rc b/client/Script.rc index b1bb981..3afa1ee 100644 --- a/client/Script.rc +++ b/client/Script.rc @@ -87,7 +87,7 @@ IDR_WAVE WAVE "Res\\msg.wav" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,0,2 + FILEVERSION 1,0,0,3 PRODUCTVERSION 1,0,0,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG @@ -105,7 +105,7 @@ BEGIN BEGIN VALUE "CompanyName", "FUCK THE UNIVERSE" VALUE "FileDescription", "A GHOST" - VALUE "FileVersion", "1.0.0.2" + VALUE "FileVersion", "1.0.0.3" VALUE "InternalName", "ServerDl.dll" VALUE "LegalCopyright", "Copyright (C) 2019-2025" VALUE "OriginalFilename", "ServerDl.dll" diff --git a/server/2015Remote/2015Remote.rc b/server/2015Remote/2015Remote.rc index 87fde9a..04f38f0 100644 Binary files a/server/2015Remote/2015Remote.rc and b/server/2015Remote/2015Remote.rc differ diff --git a/server/2015Remote/2015Remote.vcxproj b/server/2015Remote/2015Remote.vcxproj index da5391e..bb4618b 100644 --- a/server/2015Remote/2015Remote.vcxproj +++ b/server/2015Remote/2015Remote.vcxproj @@ -196,6 +196,7 @@ + diff --git a/server/2015Remote/2015Remote.vcxproj.filters b/server/2015Remote/2015Remote.vcxproj.filters index ac72857..e5b9bc8 100644 --- a/server/2015Remote/2015Remote.vcxproj.filters +++ b/server/2015Remote/2015Remote.vcxproj.filters @@ -305,5 +305,8 @@ 资源文件 + + 资源文件 + \ No newline at end of file diff --git a/server/2015Remote/VideoDlg.cpp b/server/2015Remote/VideoDlg.cpp index 45f29a6..b5c71aa 100644 --- a/server/2015Remote/VideoDlg.cpp +++ b/server/2015Remote/VideoDlg.cpp @@ -219,8 +219,11 @@ BOOL CVideoDlg::OnInitDialog() m_iocpServer->OnClientPreSending(m_ContextObject, &bToken, sizeof(BYTE)); } - return TRUE; // return TRUE unless you set the focus to a control - // 쳣: OCX ҳӦ FALSE + m_hIcon = LoadIcon(AfxGetInstanceHandle(), MAKEINTRESOURCE(IDI_ICON_CAMERA)); + SetIcon(m_hIcon, TRUE); + SetIcon(m_hIcon, FALSE); + + return TRUE; } void CVideoDlg::OnClose() diff --git a/server/2015Remote/VideoDlg.h b/server/2015Remote/VideoDlg.h index 9fc740c..d3190cb 100644 --- a/server/2015Remote/VideoDlg.h +++ b/server/2015Remote/VideoDlg.h @@ -160,6 +160,7 @@ class CVideoCodec class CVideoDlg : public CDialog { DECLARE_DYNAMIC(CVideoDlg) + HICON m_hIcon; public: CVideoDlg(CWnd* pParent = NULL, IOCPServer* IOCPServer = NULL, CONTEXT_OBJECT *ContextObject = NULL); // ׼캯 diff --git a/server/2015Remote/resource.h b/server/2015Remote/resource.h index 9a3e0ab..89cd1c6 100644 Binary files a/server/2015Remote/resource.h and b/server/2015Remote/resource.h differ