Skip to content

Commit

Permalink
Update 2.0.0.1
Browse files Browse the repository at this point in the history
Change:
--> Added the notification if RunTask destroyed.

Bugfix:
--> Fixed the  variable "Repair credits".
  • Loading branch information
Fede-Coder committed Jun 14, 2019
1 parent 8f1e43f commit 2ab97f0
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 4 deletions.
1 change: 1 addition & 0 deletions Corvus/Corvus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Fody.4.0.0\build\Fody.targets" Condition="Exists('..\packages\Fody.4.0.0\build\Fody.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
Expand Down
8 changes: 8 additions & 0 deletions Corvus/FrmMain.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion Corvus/FrmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ private void UpdateGateGui()
lblReceivedParts.Text = $"Parts: {_account.GateItemsReceived.GateParts}";
lblReceivedLogDisks.Text = $"Log disks: {_account.GateItemsReceived.LogDisks}";
lblReceivedRepairCredits.Text = "&Repair credits: {_account.GateItemsReceived.RepairCredits}";
lblReceivedRepairCredits.Text = $"Repair credits: {_account.GateItemsReceived.RepairCredits}";
lblReceivedXenomit.Text = $"Xenomit: {_account.GateItemsReceived.Xenomit}";
lblReceivedNanoHull.Text = $"Nano hull: {_account.GateItemsReceived.NanoHull}";
}));
Expand Down Expand Up @@ -957,6 +957,13 @@ private async Task DoWork()
_running = false;
cmdStart.Invoke(new Action(() => cmdStart.Enabled = true));
Log("RunTask destroyed...Logic stopped...");

notifyIcon1.Icon = this.Icon;
notifyIcon1.BalloonTipIcon = ToolTipIcon.Warning;
notifyIcon1.BalloonTipTitle = "The process has been stopped";
notifyIcon1.BalloonTipText = "RunTask destroyed...Logic stopped...";
notifyIcon1.ShowBalloonTip(15);

_runTask = null;
}
}
Expand Down
3 changes: 3 additions & 0 deletions Corvus/FrmMain.resx
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@
<metadata name="clmnModuleUpgrade.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="notifyIcon1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
Expand Down
3 changes: 3 additions & 0 deletions Corvus/Http/Urls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,8 @@ public static string Build(string url)
public static string PlaceGate { get; } =
"{0}/flashinput/galaxyGates.php?userID={1}&sid={2}&action=setupGate&gateID={3}";

public static string Auction { get; } =
"{0}/indexInternal.es?action=internalAuction&reloadToken={1}&auctionType=hour&subAction=bid&lootId={2}&itemId={3}&credits={4}";

}
}
4 changes: 2 additions & 2 deletions Corvus/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(true)]
[assembly: Guid("4e3b77da-9856-4d1e-9bba-cb3260dc1f33")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
[assembly: AssemblyVersion("2.0.0.1")]
[assembly: AssemblyFileVersion("2.0.0.1")]
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ General

1. Windows 7, 8, 8.1, 10 (32/64 bits)
2. .NET Framework 4.6
3. Internet

## Screenshots

Expand Down

0 comments on commit 2ab97f0

Please sign in to comment.