Skip to content

Commit

Permalink
Different blinks for G-mode on/off
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Troll committed Feb 20, 2023
1 parent fa68ef3 commit b8153da
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Install/Install.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -557,15 +557,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:AlienFX Tools"
"ProductCode" = "8:{1F98D3C3-150C-42FA-83F8-58D08968318F}"
"PackageCode" = "8:{90CA3901-D758-404D-8F5E-2AC660D9E2B8}"
"ProductCode" = "8:{2AE69F38-2DB2-44F2-9A47-D1EB35BB76CD}"
"PackageCode" = "8:{63EF70EC-2FDD-4300-AD9A-6289AE51A7F0}"
"UpgradeCode" = "8:{EFC2D182-AE5E-4585-92D3-0759F77F59AA}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:FALSE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:8.1.3"
"ProductVersion" = "8:8.1.100"
"Manufacturer" = "8:T-Troll"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:https://github.com/T-Troll/alienfx-tools/discussions"
Expand Down
8 changes: 4 additions & 4 deletions LightFX/LightFX.rc
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 8,1,0,3
PRODUCTVERSION 8,1,0,3
FILEVERSION 8,1,1,0
PRODUCTVERSION 8,1,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -78,12 +78,12 @@ BEGIN
BLOCK "040004b0"
BEGIN
VALUE "FileDescription", "LightFX emulator"
VALUE "FileVersion", "8.1.0.3"
VALUE "FileVersion", "8.1.1.0"
VALUE "InternalName", "LightFX.dll"
VALUE "LegalCopyright", "Copyright (C) 2021"
VALUE "OriginalFilename", "LightFX.dll"
VALUE "ProductName", "AlienFX Tools"
VALUE "ProductVersion", "8.1.0.3"
VALUE "ProductVersion", "8.1.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion alienfan-tools/alienfan-gui/alienfan-gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ LRESULT CALLBACK FanDialog(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam
case 6: // G-key for Dell G-series power switch
mon->SetCurrentGmode(!fan_conf->lastProf->gmode);
ComboBox_SetCurSel(power_list, fan_conf->lastProf->gmode ? mon->acpi->powers.size() : fan_conf->lastProf->powerStage);
BlinkNumLock(3);
BlinkNumLock(2 + fan_conf->lastProf->gmode);
break;
}
} break;
Expand Down
Binary file modified alienfan-tools/alienfan-gui/alienfan-gui.rc
Binary file not shown.
2 changes: 1 addition & 1 deletion alienfx-cli/alienfx-cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ vector<AlienFX_SDK::Afx_action> ParseActions(vector<ARG>* args, int startPos) {

int main(int argc, char* argv[])
{
printf("alienfx-cli v8.1.0.1\n");
printf("alienfx-cli v8.1.1\n");
if (argc < 2)
{
printUsage();
Expand Down
2 changes: 1 addition & 1 deletion alienfx-gui/alienfx-gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ BOOL CALLBACK MainDialog(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
mon->SetCurrentGmode(!fan_conf->lastProf->gmode);
if (tabSel == TAB_FANS)
OnSelChanged(tab_list);
BlinkNumLock(3);
BlinkNumLock(2 + fan_conf->lastProf->gmode);
}
break;
default: return false;
Expand Down
Binary file modified alienfx-gui/alienfx-gui.rc
Binary file not shown.
Binary file modified alienfx-mon/alienfx-mon.rc
Binary file not shown.

0 comments on commit b8153da

Please sign in to comment.