Skip to content

Commit a5d09a4

Browse files
Revert name change
Name was too long and awkward. Namespaces were never updated anyway. Effectively reverts 39d9b56
1 parent 3fcd5ce commit a5d09a4

31 files changed

+10
-10
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Create installer
2020
run: |
2121
dotnet tool install --global wix --version 4.0.0-preview.1
22-
wix build Product.wxs -o "publish/Install Bandwidth and Latency Monitor.msi"
22+
wix build Product.wxs -o "publish/Install Network Monitor.msi"
2323
2424
- name: Create GitHub release
2525
uses: ncipollo/release-action@v1

Bandwidth and Latency Monitor.sln renamed to Network Monitor.sln

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

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.5.33103.201
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bandwidth and Latency Monitor", "Bandwidth and Latency Monitor\Bandwidth and Latency Monitor.csproj", "{46A5208D-49CB-499A-BC21-7B6993B1F3F4}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Network Monitor", "Network Monitor\Network Monitor.csproj", "{46A5208D-49CB-499A-BC21-7B6993B1F3F4}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
File renamed without changes.
File renamed without changes.

Bandwidth and Latency Monitor/MainWindow.xaml renamed to Network Monitor/MainWindow.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
xmlns:p="clr-namespace:Network_Monitor.Properties"
88
xmlns:monitors="clr-namespace:Network_Monitor.Monitors"
99
mc:Ignorable="d"
10-
Title="Bandwidth and Latency Monitor"
10+
Title="Network Monitor"
1111
Topmost="{Binding Topmost, Source={x:Static p:Settings.Default}, Mode=TwoWay}"
1212
ShowInTaskbar="{Binding ShowInTaskbar, Source={x:Static p:Settings.Default}, Mode=TwoWay}"
1313
SizeToContent="WidthAndHeight"

Bandwidth and Latency Monitor/MainWindow.xaml.cs renamed to Network Monitor/MainWindow.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ private void Settings_PropertyChanged(object sender, PropertyChangedEventArgs e)
4646
using (var key = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true))
4747
{
4848
if (Settings.Default.RunOnStartup)
49-
key?.SetValue("Bandwidth_and_Latency_Monitor", App.ResourceAssembly.Location);
49+
key?.SetValue("Network_Monitor", App.ResourceAssembly.Location);
5050
else
51-
key?.DeleteValue("Bandwidth_and_Latency_Monitor", false);
51+
key?.DeleteValue("Network_Monitor", false);
5252
}
5353

5454
break;

Bandwidth and Latency Monitor/Bandwidth and Latency Monitor.csproj renamed to Network Monitor/Network Monitor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>net48</TargetFramework>
66
<UseWPF>true</UseWPF>
77
<LangVersion>latest</LangVersion>
8-
<ApplicationIcon>Bandwidth and Latency Monitor.ico</ApplicationIcon>
8+
<ApplicationIcon>Network Monitor.ico</ApplicationIcon>
99
<Copyright>© Daniel Chalmers</Copyright>
1010
<Version>3.0.0-beta4</Version>
1111
</PropertyGroup>

Product.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?define Name = "Bandwidth and Latency Monitor"?>
1+
<?define Name = "Network Monitor"?>
22
<?define Manufacturer = "Daniel Chalmers"?>
33
<?define Guid = "46A5208D-49CB-499A-BC21-7B6993B1F3F4"?>
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Bandwidth and Latency Monitor
1+
# Network Monitor
22

33
[![Release](https://img.shields.io/github/release/danielchalmers/Network-Monitor?include_prereleases)](https://github.com/danielchalmers/Network-Monitor/releases/latest)
44
[![License](https://img.shields.io/github/license/danielchalmers/Network-Monitor)](LICENSE)

0 commit comments

Comments
 (0)