diff --git a/README.md b/README.md
index 7022472..b4c7709 100644
--- a/README.md
+++ b/README.md
@@ -31,6 +31,12 @@ To cancel the timer, double-click the face. double-click again to quit.
To run multiple timers, run multiple instances of `Timeboxer.exe`
+Highlander+ update 2023-10-18
+-----------------------------
+
+Received a couple of notes about useability, and was gifted an icon!
+
+So now it's clearer what is the remaining time and what is the alarm time, and there's an icon.
Highlander update! 2023-10-12
-----------------------------
diff --git a/Timeboxer/Form1.cs b/Timeboxer/Form1.cs
index 70cf4c1..3123838 100644
--- a/Timeboxer/Form1.cs
+++ b/Timeboxer/Form1.cs
@@ -165,7 +165,8 @@ private void pictureBox1_Paint(object sender, PaintEventArgs e)
draw_text_centered(gr, new Point(0, ClientRectangle.Height / 6), RemainingTime, Font, Brushes.Black);
if (alarm_time_show_ticks > 0)
{
- draw_text_centered(gr, new Point(0, ClientRectangle.Height / 4), alarm_time.ToLocalTime().TimeOfDay.ToString("hh\\:mm"), Font, Brushes.Black);
+ Font spindly = new Font(Font.Name, 8, FontStyle.Regular);
+ draw_text_centered(gr, new Point(0, ClientRectangle.Height / 4), "Until " + alarm_time.ToLocalTime().TimeOfDay.ToString("hh\\:mm"), spindly, Brushes.Black);
}
}
diff --git a/Timeboxer/Properties/AssemblyInfo.cs b/Timeboxer/Properties/AssemblyInfo.cs
index 7704998..0871130 100644
--- a/Timeboxer/Properties/AssemblyInfo.cs
+++ b/Timeboxer/Properties/AssemblyInfo.cs
@@ -10,7 +10,7 @@
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("Timeboxer (Highlander)")] // UPDATEME Distinguishing name
+[assembly: AssemblyProduct("Timeboxer (Highlander+)")] // UPDATEME Distinguishing name
[assembly: AssemblyCopyright("Copyright © 2021 Steve Carter")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -30,5 +30,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.1")] // UPDATEME Version number
-[assembly: AssemblyFileVersion("1.1")] // UPDATEME Version number
+[assembly: AssemblyVersion("1.1.1")] // UPDATEME Version number
+[assembly: AssemblyFileVersion("1.1.1")] // UPDATEME Version number
diff --git a/Timeboxer/Resources/TB1.ico b/Timeboxer/Resources/TB1.ico
new file mode 100644
index 0000000..2b55087
Binary files /dev/null and b/Timeboxer/Resources/TB1.ico differ
diff --git a/Timeboxer/Timeboxer.csproj b/Timeboxer/Timeboxer.csproj
index 36344ee..20dea35 100644
--- a/Timeboxer/Timeboxer.csproj
+++ b/Timeboxer/Timeboxer.csproj
@@ -33,6 +33,9 @@
prompt
4
+
+ TB1.ico
+
@@ -84,5 +87,8 @@
+
+
+
\ No newline at end of file