Skip to content

Commit

Permalink
update to 0.5.4.23
Browse files Browse the repository at this point in the history
  • Loading branch information
mjohne authored Oct 23, 2019
1 parent e4a347b commit 2b1b54b
Show file tree
Hide file tree
Showing 12 changed files with 86 additions and 53 deletions.
2 changes: 1 addition & 1 deletion CatalogChooserForm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@
<value>NoControl</value>
</data>
<data name="label1.Location" type="System.Drawing.Point, System.Drawing">
<value>170, 12</value>
<value>177, 12</value>
</data>
<data name="label1.Size" type="System.Drawing.Size, System.Drawing">
<value>217, 42</value>
Expand Down
80 changes: 43 additions & 37 deletions DownloaderForm.Designer.cs

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

5 changes: 4 additions & 1 deletion DownloaderForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.IO;
using System.IO.Compression;
using System.Net;
using System.Net.Http;
using System.Windows.Forms;

namespace Hipparcos_DB
Expand Down Expand Up @@ -262,7 +263,7 @@ private void ToolStripButtonRestoreHost_Click(object sender, EventArgs e)
toolStripTextBoxHost.Text = GetHost();
}

private void ToolStripButtonSaveLogging_Click(object sender, EventArgs e) => saveFileDialog.ShowDialog();
private void ToolStripButtonSaveLogging_Click(object sender, EventArgs e) => saveFileDialog.ShowDialog();

#endregion

Expand Down Expand Up @@ -324,6 +325,7 @@ private void SaveFileDialog_FileOk(object sender, CancelEventArgs e)

private void BackgroundWorker_DoWork(object sender, DoWorkEventArgs e)
{
progressBarDownloadFile.MarqueeAnimationSpeed = 10;
bool downloadWasSuccessful = true;
using (WebClient webClient = new WebClient())
{
Expand Down Expand Up @@ -371,6 +373,7 @@ private void BackgroundWorker_DoWork(object sender, DoWorkEventArgs e)
}
}
toolStripStatusLabelDownloadAnimation.Visible = timerDownloadAnimation.Enabled = false;
progressBarDownloadFile.MarqueeAnimationSpeed = 0;
if (downloadWasSuccessful)
{
if (!settings.UserEnableQuickDownload)
Expand Down
5 changes: 4 additions & 1 deletion Hipparcos-DB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<OutputType>WinExe</OutputType>
<RootNamespace>Hipparcos_DB</RootNamespace>
<AssemblyName>Hipparcos-DB</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<PublishUrl>publish\</PublishUrl>
Expand Down Expand Up @@ -85,6 +85,9 @@
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Net" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Net.Http.WebRequest" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
Expand Down
3 changes: 2 additions & 1 deletion HipparcosCatalogViewerForm.Designer.cs

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

10 changes: 10 additions & 0 deletions HipparcosCatalogViewerForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,16 @@ private void ToolStripButtonChangeHoverEffect_Click(object sender, EventArgs e)
}
}

private void ProgressBar_Click(object sender, EventArgs e)
{
MessageBox.Show(
owner: this,
text: "Don't disturb me! I'm loading. ;-)",
caption: "Loading",
buttons: MessageBoxButtons.OK,
icon: MessageBoxIcon.Exclamation);
}

#endregion

#region DoubleClick event handlers
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.5.3.22")]
[assembly: AssemblyFileVersion("0.5.3.22")]
[assembly: AssemblyVersion("0.5.4.23")]
[assembly: AssemblyFileVersion("0.5.4.23")]
[assembly: NeutralResourcesLanguage("en")]

2 changes: 1 addition & 1 deletion Properties/Settings.Designer.cs

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

3 changes: 2 additions & 1 deletion TychoCatalogViewerForm.Designer.cs

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

11 changes: 10 additions & 1 deletion TychoCatalogViewerForm.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using Hipparcos_DB.Properties;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Reflection;
Expand Down Expand Up @@ -829,6 +828,16 @@ private void ToolStripButtonChangeHoverEffect_Click(object sender, EventArgs e)
}
}

private void ProgressBar_Click(object sender, EventArgs e)
{
MessageBox.Show(
owner: this,
text: "Don't disturb me! I'm loading. ;-)",
caption: "Loading",
buttons: MessageBoxButtons.OK,
icon: MessageBoxIcon.Exclamation);
}

#endregion

#region DoubleClick event handlers
Expand Down
2 changes: 1 addition & 1 deletion TychoCatalogViewerForm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
<value>89, 18</value>
</metadata>
<metadata name="backgroundWorker.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>582, 22</value>
<value>563, 22</value>
</metadata>
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>59</value>
Expand Down
Loading

0 comments on commit 2b1b54b

Please sign in to comment.