Skip to content

Commit

Permalink
small ux improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Carter committed Oct 18, 2023
1 parent a1d1dc0 commit ed469bf
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----------------------------
Expand Down
3 changes: 2 additions & 1 deletion Timeboxer/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down
6 changes: 3 additions & 3 deletions Timeboxer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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("")]
Expand All @@ -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
Binary file added Timeboxer/Resources/TB1.ico
Binary file not shown.
6 changes: 6 additions & 0 deletions Timeboxer/Timeboxer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>TB1.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -84,5 +87,8 @@
<ItemGroup>
<None Include="Resources\reception_bell_single_2020.wav" />
</ItemGroup>
<ItemGroup>
<Content Include="TB1.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

0 comments on commit ed469bf

Please sign in to comment.