Skip to content

Commit

Permalink
build 111
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxiDonkey committed Oct 24, 2020
1 parent fea7e90 commit 404e9c3
Show file tree
Hide file tree
Showing 8 changed files with 154 additions and 40 deletions.
2 changes: 1 addition & 1 deletion Install/TaupeEye.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
; Script generated by the Inno Script Studio Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "EDTaupeEye"
#define MyAppVersion "0.9 beta"
#define MyAppPublisher "Galactic 911"
Expand Down
8 changes: 4 additions & 4 deletions TaupeEye.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@
<VerInfo_AutoIncVersion>true</VerInfo_AutoIncVersion>
<VerInfo_MajorVer>0</VerInfo_MajorVer>
<VerInfo_MinorVer>9</VerInfo_MinorVer>
<VerInfo_Build>110</VerInfo_Build>
<VerInfo_Keys>CompanyName=Galactic 911;FileVersion=0.9.0.110;InternalName=TaupeEye;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=0.9.0.0;Comments=Elite Dangerous Tool;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName)</VerInfo_Keys>
<VerInfo_Build>111</VerInfo_Build>
<VerInfo_Keys>CompanyName=Galactic 911;FileVersion=0.9.0.111;InternalName=TaupeEye;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductVersion=0.9.0.0;Comments=Elite Dangerous Tool;ProgramID=com.embarcadero.$(MSBuildProjectName);FileDescription=$(MSBuildProjectName);ProductName=$(MSBuildProjectName)</VerInfo_Keys>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_2)'!=''">
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
Expand Down Expand Up @@ -207,7 +207,7 @@
<Overwrite>true</Overwrite>
</Platform>
</DeployFile>
<DeployFile LocalName="ModelSupport_TaupeEye\default.txvpck" Configuration="Debug" Class="ProjectFile">
<DeployFile LocalName="ModelSupport_TaupeEye\uEyeXThread\default.txvpck" Configuration="Debug" Class="ProjectFile">
<Platform Name="Win64">
<RemoteDir>.\</RemoteDir>
<Overwrite>true</Overwrite>
Expand All @@ -225,7 +225,7 @@
<Overwrite>true</Overwrite>
</Platform>
</DeployFile>
<DeployFile LocalName="ModelSupport_TaupeEye\uEyeXThread\default.txvpck" Configuration="Debug" Class="ProjectFile">
<DeployFile LocalName="ModelSupport_TaupeEye\default.txvpck" Configuration="Debug" Class="ProjectFile">
<Platform Name="Win64">
<RemoteDir>.\</RemoteDir>
<Overwrite>true</Overwrite>
Expand Down
Binary file modified TaupeEye.res
Binary file not shown.
Binary file modified Win64/Debug/TaupeEye.exe
Binary file not shown.
Binary file modified Win64/Debug/TaupeEye.rsm
Binary file not shown.
177 changes: 144 additions & 33 deletions uAreaTobii.pas

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion uEliteManager.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1708,7 +1708,10 @@ procedure TCustomEliteManager.CockpitMode(const Mode: TCockpitModeType);
cmt_combat : if not EliteStatus.HudInanalysisMode then Exit;
cmt_exploration : if EliteStatus.HudInanalysisMode then Exit;
end;
FKeyInventory.KeyTrigger_( 'PlayerHUDModeToggle', WITH_KEYUP)
case EliteStatus.InSrv of
True : FKeyInventory.KeyTrigger_( 'PlayerHUDModeToggle_Buggy', WITH_KEYUP)
else FKeyInventory.KeyTrigger_( 'PlayerHUDModeToggle', WITH_KEYUP)
end;
end; {CockpitMode}

procedure TCustomEliteManager.ModeACS;
Expand Down
2 changes: 1 addition & 1 deletion uEyeXThread.pas
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ implementation
function GetScreenBounds(const Panel: TPanel): TRect;
var originpoint: TPoint;
begin
originpoint := Panel.ClientToScreen(point(0,0));
originpoint := Panel.ClientToScreen(point(0,0));
result := TRect.Create(originpoint,Panel.Width,Panel.Height)
end;

Expand Down

0 comments on commit 404e9c3

Please sign in to comment.