1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2026-01-07 11:03:55 +00:00

1. Updated Windows Installer

a. Attached Connection Details Dialog
   b. Added translation support
   c. Added HighDPI support
   d. Replaced default image, with scaled PNG
   e. Added Custom Image support
2. Updated win-userconsent to use High Quality Bicubic, instead of Bicubic
This commit is contained in:
Bryan Roe
2022-01-20 10:00:54 -08:00
parent d196e33381
commit fae6b34159
8 changed files with 147 additions and 75 deletions

Binary file not shown.

View File

@@ -118,6 +118,7 @@ BEGIN
LTEXT "Click the buttons below to install or uninstall this remote management software. When installed, this software runs in the background allowing this computer to be managed and controlled by a remote administrator.",IDC_STATIC_LEFTTEXT,7,7,171,63
LTEXT "Static",IDC_STATIC_LINE,7,128,294,1
PUSHBUTTON "Connection Details...",IDC_DETAILSBUTTON,7,111,97,14
CONTROL "",IDC_IMAGE,"Static",SS_BITMAP | SS_CENTERIMAGE | SS_REALSIZEIMAGE | WS_TABSTOP,185,20,103,95
END
IDD_DETAILSDIALOG DIALOGEX 0, 0, 311, 102

View File

@@ -552,7 +552,6 @@
</ResourceCompile>
</ItemGroup>
<ItemGroup>
<Image Include="mc.bmp" />
<Image Include="MeshService.ico" />
</ItemGroup>
<ItemGroup>

View File

@@ -30,9 +30,6 @@
<Image Include="MeshService.ico">
<Filter>Resource Files</Filter>
</Image>
<Image Include="mc.bmp">
<Filter>Resource Files</Filter>
</Image>
</ItemGroup>
<ItemGroup>
<ClCompile Include="firewall.cpp" />

File diff suppressed because one or more lines are too long

View File

@@ -29,6 +29,7 @@
#define IDC_TAB2 1021
#define IDC_TABS 1021
#define IDC_STATIC_LEFTTEXT 1022
#define IDC_IMAGE 1023
#define IDC_STATIC_LINE 1024
#define IDC_DETAILSBUTTON 1031

File diff suppressed because one or more lines are too long

View File

@@ -16,8 +16,8 @@ limitations under the License.
*/
const HALFTONE = 4;
const SmoothingModeAntiAlias = 4;
const InterpolationModeBicubic = 5;
const SmoothingModeAntiAlias = 5;
const InterpolationModeBicubic = 8;
const WM_SETFONT = 0x0030;
const WM_CTLCOLORSTATIC = 0x0138;