Skip to content

Commit f557243

Browse files
committed
Added unit label for clarity and updated changelog #1
1 parent 8591fa9 commit f557243

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOGS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 0.2.1
2+
- Added unit label for clarity
3+
14
# 0.2.0
25
- Added Cumulative Statics
36

NetStats.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
<PackageId>NetStats</PackageId>
99
<Title>NetStats</Title>
10-
<Version>0.2.0</Version>
11-
<AssemblyVersion>0.1.57.0</AssemblyVersion>
12-
<FileVersion>0.1.57.0</FileVersion>
10+
<Version>0.2.1</Version>
11+
<AssemblyVersion>0.1.66.0</AssemblyVersion>
12+
<FileVersion>0.1.66.0</FileVersion>
1313
<Description>An extension providing real-time network statistics.</Description>
1414
<Authors>Timothy Franceschi</Authors>
1515
<PackageProjectUrl>https://github.com/TimothyFran/NetStats</PackageProjectUrl>

NetStatsView.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public NetStatsView(SillView sillView, NetworkMonitorViewModel viewModel, Networ
3838
new TextBlock()
3939
.Text("↓"),
4040
new TextBlock()
41-
.MinWidth(32)
41+
.MinWidth(60)
4242
.VerticalAlignment(VerticalAlignment.Center)
4343
.Text(x => x.Binding(() => vm.DownloadMbps).OneWay())
4444
),
@@ -50,7 +50,7 @@ public NetStatsView(SillView sillView, NetworkMonitorViewModel viewModel, Networ
5050
new TextBlock()
5151
.Text("↑"),
5252
new TextBlock()
53-
.MinWidth(32)
53+
.MinWidth(60)
5454
.VerticalAlignment(VerticalAlignment.Center)
5555
.Text(x => x.Binding(() => vm.UploadMbps).OneWay())
5656
)

NetworkMonitorViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ public sealed class NetworkMonitorViewModel : INotifyPropertyChanged
1919

2020
public string DownloadMbps
2121
{
22-
get => _downloadMbps;
22+
get => _downloadMbps + " Mb/s";
2323
set => SetProperty(ref _downloadMbps, value);
2424
}
2525

2626
public string UploadMbps
2727
{
28-
get => _uploadMbps;
28+
get => _uploadMbps + " Mb/s";
2929
set => SetProperty(ref _uploadMbps, value);
3030
}
3131

0 commit comments

Comments
 (0)