3 Commits

Author SHA1 Message Date
3d10cc9635 Clean up startup 2021-12-20 13:52:34 -05:00
714bd0384a Add IPC listener and tweak update messages 2021-12-20 13:43:14 -05:00
fbb797968d Add update button to about 2021-12-20 13:14:00 -05:00
6 changed files with 73 additions and 17 deletions

View File

@@ -3,6 +3,7 @@ using Common.IO;
using Common.Wpf.Extensions; using Common.Wpf.Extensions;
using Squirrel; using Squirrel;
using System; using System;
using System.Reflection;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows; using System.Windows;
using System.Windows.Threading; using System.Windows.Threading;
@@ -17,6 +18,7 @@ namespace WorkIndicator
public static string UpdateUrl = "https://github.com/ckaczor/WorkIndicator"; public static string UpdateUrl = "https://github.com/ckaczor/WorkIndicator";
private Dispatcher _dispatcher; private Dispatcher _dispatcher;
private InterprocessMessageListener _commandLineListener;
[STAThread] [STAThread]
public static void Main(string[] args) public static void Main(string[] args)
@@ -34,13 +36,17 @@ namespace WorkIndicator
_dispatcher = Dispatcher.CurrentDispatcher; _dispatcher = Dispatcher.CurrentDispatcher;
// Initialize the command line listener
_commandLineListener = new InterprocessMessageListener(Assembly.GetEntryAssembly().GetName().Name);
_commandLineListener.MessageReceived += HandleCommandLine;
// Initialize the tray icon // Initialize the tray icon
TrayIcon.Initialize(); TrayIcon.Initialize();
Task.Factory.StartNew(UpdateApp).ContinueWith(task => StartUpdate(task.Result.Result)); Task.Factory.StartNew(CheckUpdate).ContinueWith(task => StartApplication(task.Result.Result));
} }
private void StartUpdate(bool updateRequired) private void StartApplication(bool updateRequired)
{ {
if (updateRequired) if (updateRequired)
return; return;
@@ -53,8 +59,13 @@ namespace WorkIndicator
// If there is another copy then pass it the command line and exit // If there is another copy then pass it the command line and exit
if (_isolationHandle == null) if (_isolationHandle == null)
{ {
InterprocessMessageSender.SendMessage(Environment.CommandLine); try
Shutdown(); {
InterprocessMessageSender.SendMessage(Environment.CommandLine);
}
catch { }
_dispatcher.Invoke(Shutdown);
return; return;
} }
@@ -66,17 +77,22 @@ namespace WorkIndicator
}); });
} }
private async Task<bool> UpdateApp() private void HandleCommandLine(object sender, InterprocessMessageListener.InterprocessMessageEventArgs e)
{
}
private async Task<bool> CheckUpdate()
{ {
return await UpdateCheck.CheckUpdate(HandleUpdateStatus); return await UpdateCheck.CheckUpdate(HandleUpdateStatus);
} }
private void HandleUpdateStatus(UpdateCheck.UpdateStatus status, string message) private void HandleUpdateStatus(UpdateCheck.UpdateStatus status, string message)
{ {
if (status == UpdateCheck.UpdateStatus.None) if (status != UpdateCheck.UpdateStatus.Downloading)
message = WorkIndicator.Properties.Resources.Loading; return;
_dispatcher.Invoke(() => TrayIcon.SetText(message)); _dispatcher.Invoke(() => TrayIcon.ShowUpdateMessage(message));
} }
protected override void OnExit(ExitEventArgs e) protected override void OnExit(ExitEventArgs e)
@@ -88,7 +104,7 @@ namespace WorkIndicator
TrayIcon.Dispose(); TrayIcon.Dispose();
// Get rid of the isolation handle // Get rid of the isolation handle
_isolationHandle.Dispose(); _isolationHandle?.Dispose();
base.OnExit(e); base.OnExit(e);
} }

View File

@@ -4,21 +4,43 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:windows="clr-namespace:Common.Wpf.Windows;assembly=Common.Wpf" xmlns:windows="clr-namespace:Common.Wpf.Windows;assembly=Common.Wpf"
xmlns:properties="clr-namespace:WorkIndicator.Properties"
mc:Ignorable="d" mc:Ignorable="d"
d:DesignHeight="300" d:DesignHeight="300"
d:DesignWidth="300"> d:DesignWidth="300">
<Grid> <Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="*"></RowDefinition>
</Grid.RowDefinitions>
<TextBlock Text="[Application Name]" <TextBlock Text="[Application Name]"
Name="ApplicationNameLabel" Name="ApplicationNameLabel"
VerticalAlignment="Top" VerticalAlignment="Top"
FontWeight="Bold" /> FontWeight="Bold"
Grid.Row="0" />
<TextBlock Text="[Application Version]" <TextBlock Text="[Application Version]"
Margin="0,22,0,0" Margin="0,6,0,0"
Name="VersionLabel" Name="VersionLabel"
VerticalAlignment="Top" /> VerticalAlignment="Top"
Grid.Row="1" />
<TextBlock Text="[Company]" <TextBlock Text="[Company]"
Margin="0,44,0,0" Margin="0,6,0,0"
Name="CompanyLabel" Name="CompanyLabel"
VerticalAlignment="Top" /> VerticalAlignment="Top"
Grid.Row="2" />
<StackPanel Grid.Row="3"
Grid.Column="0"
Margin="0,20,0,0"
Orientation="Horizontal">
<Button Content="{x:Static properties:Resources.CheckUpdate}"
HorizontalAlignment="Left"
Padding="6,2"
Click="HandleCheckForUpdateButtonClick"
VerticalContentAlignment="Center" />
<Label Name="UpdateMessage" Content="" VerticalContentAlignment="Center" Padding="6,0" />
</StackPanel>
</Grid> </Grid>
</windows:CategoryPanel> </windows:CategoryPanel>

View File

@@ -1,5 +1,6 @@
using Common.Update; using Common.Update;
using System.Reflection; using System.Reflection;
using System.Windows;
namespace WorkIndicator.Options namespace WorkIndicator.Options
{ {
@@ -32,5 +33,10 @@ namespace WorkIndicator.Options
} }
public override string CategoryName => Properties.Resources.OptionCategory_About; public override string CategoryName => Properties.Resources.OptionCategory_About;
private async void HandleCheckForUpdateButtonClick(object sender, RoutedEventArgs e)
{
await UpdateCheck.CheckUpdate((status, message) => UpdateMessage.Content = message);
}
} }
} }

View File

@@ -133,6 +133,15 @@ namespace WorkIndicator.Properties {
} }
} }
/// <summary>
/// Looks up a localized string similar to _Check for Update.
/// </summary>
public static string CheckUpdate {
get {
return ResourceManager.GetString("CheckUpdate", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Enabled. /// Looks up a localized string similar to Enabled.
/// </summary> /// </summary>

View File

@@ -241,4 +241,7 @@
<data name="Loading" xml:space="preserve"> <data name="Loading" xml:space="preserve">
<value>Loading...</value> <value>Loading...</value>
</data> </data>
<data name="CheckUpdate" xml:space="preserve">
<value>_Check for Update</value>
</data>
</root> </root>

View File

@@ -68,9 +68,9 @@ namespace WorkIndicator
_initialized = true; _initialized = true;
} }
public static void SetText(string text) public static void ShowUpdateMessage(string text)
{ {
_trayIcon.Text = text; _trayIcon.ShowBalloonTip(250, Resources.ApplicationName, text, ToolTipIcon.None);
} }
static void HandleContextMenuStripOpening(object sender, System.ComponentModel.CancelEventArgs e) static void HandleContextMenuStripOpening(object sender, System.ComponentModel.CancelEventArgs e)
@@ -136,7 +136,7 @@ namespace WorkIndicator
if (dialogResult.HasValue && dialogResult.Value) if (dialogResult.HasValue && dialogResult.Value)
{ {
Properties.Settings.Default.Save(); Settings.Default.Save();
} }
} }
} }