Skip to content

Commit

Permalink
Minor bugfix wrt command line parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
JPersson77 committed Jan 30, 2022
1 parent ab0f2ce commit 9b6cf19
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions LGTV Companion Service/Service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1135,14 +1135,14 @@ void IPCThread(void)
Log(w);
device.SystemEvent(SYSTEM_EVENT_FORCESETHDMI, 2);
}
else if (param1 == APP_CMDLINE_SETHDMI1 && (id == param || name == param))
else if (param1 == APP_CMDLINE_SETHDMI3 && (id == param || name == param))
{
string w = "IPC, set HDMI input 3:";
w += param;
Log(w);
device.SystemEvent(SYSTEM_EVENT_FORCESETHDMI, 3);
}
else if (param1 == APP_CMDLINE_SETHDMI1 && (id == param || name == param))
else if (param1 == APP_CMDLINE_SETHDMI4 && (id == param || name == param))
{
string w = "IPC, set HDMI input 4:";
w += param;
Expand Down
2 changes: 1 addition & 1 deletion LGTV Companion Service/Service.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@


#define APPNAME L"LGTV Companion"
#define APPVERSION L"1.6.0"
#define APPVERSION L"1.6.1"
#define SVCNAME L"LGTVsvc"
#define SVCDISPLAYNAME L"LGTV Companion Service"
#define SERVICE_PORT "3000"
Expand Down
2 changes: 1 addition & 1 deletion LGTV Companion Setup/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<?define LGTV Companion Service_TargetDir=$(var.LGTV Companion Service.TargetDir)?><?define LGTV Companion UI_TargetDir=$(var.LGTV Companion UI.TargetDir)?>
<Product Id="83D49BD6-9C2C-4BD3-9743-A21FE45E6EC8" Name="LGTV Companion" Language="1033" Version="1.6.0" Manufacturer="J Persson" UpgradeCode="0BA17E5B-11CE-491D-B1A1-05DD2D9F610A">
<Product Id="F2ADDE70-F609-4E0D-81F6-CEDF06CAEFBD" Name="LGTV Companion" Language="1033" Version="1.6.1" Manufacturer="J Persson" UpgradeCode="0BA17E5B-11CE-491D-B1A1-05DD2D9F610A">
<Package Id="*" InstallerVersion="301" Compressed="yes" InstallScope="perMachine" Platform='x64' Description="LGTV Companion installer" InstallPrivileges="elevated" AdminImage="yes"/>
<Media Id="1" Cabinet="LGTVapp.cab" EmbedCab="yes" />

Expand Down
2 changes: 1 addition & 1 deletion LGTV Companion UI/LGTV Companion UI.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

#define APPNAME_SHORT L"LGTVcomp"
#define APPNAME_FULL L"LGTV Companion"
#define APP_VERSION L"1.6.0"
#define APP_VERSION L"1.6.1"
#define WINDOW_CLASS_UNIQUE L"YOLOx0x0x0181818"
#define NOTIFY_NEW_COMMANDLINE 1

Expand Down
2 changes: 1 addition & 1 deletion LGTV Companion User/Daemon.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#define APPNAME_SHORT L"LGTVdaemon"
#define APP_PATH L"LGTV Companion"
#define APPNAME_FULL L"LGTV Companion Daemon"
#define APP_VERSION L"1.6.0"
#define APP_VERSION L"1.6.1"
#define WINDOW_CLASS_UNIQUE L"YOLOx0x0x0181818"
#define NOTIFY_NEW_PROCESS 1

Expand Down

0 comments on commit 9b6cf19

Please sign in to comment.