Skip to content

Commit c6a85b0

Browse files
committed
[ui] fix wrong colour for disabled text in dark mode
* Closes #2764. * Also fix signature not being properly applied to MinGW GitHub Actions ALPHA builds.
1 parent e571996 commit c6a85b0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/mingw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
100100
shell: cmd
101101
run: |
102-
signtool sign /v /f sign.pfx /fd SHA256 /tr http://timestamp.digicert.com /td SHA256 rufus_${{ matrix.TARGET_PLATFORM }}.exe
102+
signtool sign /v /f sign.pfx /fd SHA256 /tr http://timestamp.digicert.com /td SHA256 ${{ matrix.exe }}
103103
del sign.pfx
104104
105105
- name: Display SHA-256

src/rufus.rc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
3333
IDD_DIALOG DIALOGEX 12, 12, 232, 326
3434
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
3535
EXSTYLE WS_EX_ACCEPTFILES
36-
CAPTION "Rufus 4.10.2264"
36+
CAPTION "Rufus 4.10.2265"
3737
FONT 9, "Segoe UI Symbol", 400, 0, 0x0
3838
BEGIN
3939
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
@@ -407,8 +407,8 @@ END
407407
//
408408

409409
VS_VERSION_INFO VERSIONINFO
410-
FILEVERSION 4,10,2264,0
411-
PRODUCTVERSION 4,10,2264,0
410+
FILEVERSION 4,10,2265,0
411+
PRODUCTVERSION 4,10,2265,0
412412
FILEFLAGSMASK 0x3fL
413413
#ifdef _DEBUG
414414
FILEFLAGS 0x1L
@@ -426,13 +426,13 @@ BEGIN
426426
VALUE "Comments", "https://rufus.ie"
427427
VALUE "CompanyName", "Akeo Consulting"
428428
VALUE "FileDescription", "Rufus"
429-
VALUE "FileVersion", "4.10.2264"
429+
VALUE "FileVersion", "4.10.2265"
430430
VALUE "InternalName", "Rufus"
431431
VALUE "LegalCopyright", "� 2011-2025 Pete Batard (GPL v3)"
432432
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
433433
VALUE "OriginalFilename", "rufus-4.10.exe"
434434
VALUE "ProductName", "Rufus"
435-
VALUE "ProductVersion", "4.10.2264"
435+
VALUE "ProductVersion", "4.10.2265"
436436
END
437437
END
438438
BLOCK "VarFileInfo"

src/ui.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
// Dark Mode Colors
4040
#define DARKMODE_TOOLBAR_ICON_COLOR RGB(0xFF, 0xD7, 0x00)
4141
#define DARKMODE_NORMAL_TEXT_COLOR RGB(0xE0, 0xE0, 0xE0)
42-
#define DARKMODE_DISABLED_TEXT_COLOR RGB(0xE0, 0xE0, 0xE0)
42+
#define DARKMODE_DISABLED_TEXT_COLOR RGB(0x80, 0x80, 0x80)
4343
#define DARKMODE_NORMAL_DIALOG_BACKGROUND_COLOR RGB(0x20, 0x20, 0x20)
4444
#define DARKMODE_NORMAL_CONTROL_BACKGROUND_COLOR RGB(0x38, 0x38, 0x38)
4545
#define DARKMODE_HOT_CONTROL_BACKGROUND_COLOR RGB(0x45, 0x45, 0x45)

0 commit comments

Comments
 (0)