Skip to content

Commit

Permalink
Bump version to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
krlvm committed Jun 6, 2022
1 parent f23dc70 commit a5ab218
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion AccentColorizer/SysColorsModifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ void ModifySysColors(COLORREF accentColor) {
};
DWORD aNewColors[size];

COLORREF color = RGB(GetRValue(accentColor), GetGValue(accentColor), GetBValue(accentColor));
for (int i = 0; i < size; i++)
{
aNewColors[i] = accentColor;
aNewColors[i] = color;
}

SetSysColors(size, aElements, aNewColors);
Expand Down
10 changes: 5 additions & 5 deletions AccentColorizer/VersionInfo.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,1,2,0
PRODUCTVERSION 1,1,2,0
FILEVERSION 1,1,3,0
PRODUCTVERSION 1,1,3,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,13 +68,13 @@ BEGIN
BLOCK "040004b0"
BEGIN
VALUE "CompanyName", "krlvm"
VALUE "FileDescription", "Colorize Windows with an accent color"
VALUE "FileVersion", "1.1.2.0"
VALUE "FileDescription", "AccentColorizer"
VALUE "FileVersion", "1.1.3.0"
VALUE "InternalName", "AccentColorizer.exe"
VALUE "LegalCopyright", "Copyright krlvm (C) 2021-2022"
VALUE "OriginalFilename", "AccentColorizer.exe"
VALUE "ProductName", "AccentColorizer"
VALUE "ProductVersion", "1.1.2.0"
VALUE "ProductVersion", "1.1.3.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit a5ab218

Please sign in to comment.