From 3a9fe99c956e7db0d400221e185d140765fcd748 Mon Sep 17 00:00:00 2001 From: Valentin Radu Date: Mon, 13 May 2024 11:05:06 +0300 Subject: [PATCH] Version: 22621.3527.65.4 --- CHANGELOG.md | 6 ++++++ ExplorerPatcher-L10N | 2 +- ep_gui/resources/lang/ep_gui.en-US.rc | 4 ++-- ep_weather_host/ep_weather_host.c | 2 +- version.h | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d3d0d4..22f43bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,12 @@ Tested on OS builds 22621.3296, 22621.3447, 22621.3527, 22635.3566, 26058.1000, * All: Updated some patterns to work with 22635.3430+ (Beta) and recent 24H2 builds. (b51ef38) * This should fix the Windows 10 start menu crashing and Win+X not working on both aforementioned builds when symbols are not yet downloaded. + +##### 4 + +* Updates: Support for `ep_make`, a new script which builds ExplorerPatcher locally on your computer. Read more [here](https://github.com/valinet/ep_make). (80592f6) +* GUI: Reorganized "About" and "Uninstall" sections. (4794713) +* ep_weather: Fixed alignment. ## 22621.3296.64 diff --git a/ExplorerPatcher-L10N b/ExplorerPatcher-L10N index 515fd0d..6ac5172 160000 --- a/ExplorerPatcher-L10N +++ b/ExplorerPatcher-L10N @@ -1 +1 @@ -Subproject commit 515fd0d484eaa44ce2d5d08c276f66aaa6540ab3 +Subproject commit 6ac51728081b41238e030bcfee3947433f150c40 diff --git a/ep_gui/resources/lang/ep_gui.en-US.rc b/ep_gui/resources/lang/ep_gui.en-US.rc index 4a9ac38..6485b95 100644 --- a/ep_gui/resources/lang/ep_gui.en-US.rc +++ b/ep_gui/resources/lang/ep_gui.en-US.rc @@ -16,7 +16,7 @@ BEGIN IDS_UPDATES_DOWNLOADING_T "Downloading and installing updates…" IDS_UPDATES_SUCCESS_T "Update successful" IDS_UPDATES_DLFAILED_T "Update failed" - IDS_UPDATES_DLFAILED_B "The request was declined or an error has occured when attempting to install this update." + IDS_UPDATES_DLFAILED_B "The has cancelled the process or an error has occured when attempting to install this update." IDS_UPDATES_INSTALLEDVER "Installed version: %d.%d.%d.%d" IDS_UPDATES_PROMPT "Would you like to install an update for ExplorerPatcher?\n\nDownloaded from:\n%s" @@ -419,7 +419,7 @@ BEGIN IDS_ABOUT_WEBSITE "Visit web site" IDS_ABOUT_DONATE "Donate" IDS_ABOUT_FAQ "Frequently Asked Questions" - IDS_ABOUT_SETTINGS "Learn more managing these settings" + IDS_ABOUT_SETTINGS "Learn more about managing your settings" IDS_ABOUT_IMPORT "Import settings" IDS_ABOUT_EXPORT "Export current settings" IDS_ABOUT_EXPORT_SUCCESS "Settings have been exported successfully." diff --git a/ep_weather_host/ep_weather_host.c b/ep_weather_host/ep_weather_host.c index 53b6d01..ec0feee 100644 --- a/ep_weather_host/ep_weather_host.c +++ b/ep_weather_host/ep_weather_host.c @@ -429,7 +429,7 @@ HRESULT STDMETHODCALLTYPE _ep_Weather_ReboundBrowser(EPWeather* _this, LONG64 dw DWORD dwTextScaleFactor = epw_Weather_GetTextScaleFactor(_this); DWORD dwZoomFactor = epw_Weather_GetZoomFactor(_this); bounds.left = 0 - MulDiv(MulDiv(MulDiv(181, dpi, 96), dwTextScaleFactor, 100), dwZoomFactor, 100); - bounds.top = 0 - MulDiv(MulDiv(MulDiv(178, dpi, 96), dwTextScaleFactor, 100), dwZoomFactor, 100); + bounds.top = 0 - MulDiv(MulDiv(MulDiv(172, dpi, 96), dwTextScaleFactor, 100), dwZoomFactor, 100); bounds.right = MulDiv(MulDiv(MulDiv((!InterlockedAdd64(&_this->dwTextDir, 0) ? 1333 : 705), dpi, 96), dwTextScaleFactor, 100), dwZoomFactor, 100);// 5560; bounds.bottom = MulDiv(MulDiv(MulDiv(600, dpi, 96), dwTextScaleFactor, 100), dwZoomFactor, 100);// 15600; } diff --git a/version.h b/version.h index cde73d8..4b95d9d 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define VER_MAJOR 22621 #define VER_MINOR 3527 #define VER_BUILD_HI 65 -#define VER_BUILD_LO 3 +#define VER_BUILD_LO 4 #define VER_FLAGS VS_FF_PRERELEASE