Skip to content

Commit 6f41f18

Browse files
committed
change license in about dialog;
remove license & Copyright blocks from code
1 parent 59f1ced commit 6f41f18

115 files changed

Lines changed: 235 additions & 2216 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Aga.Controls/license.txt

Lines changed: 0 additions & 25 deletions
This file was deleted.

OpenHardwareMonitor/UI/AboutBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public AboutBox()
2121
projectLinkLabel.Links.Remove(projectLinkLabel.Links[0]);
2222
projectLinkLabel.Links.Add(0, projectLinkLabel.Text.Length, $"https://github.com/{Updater.ApplicationCompany}/{Updater.ApplicationName}");
2323
licenseLinkLabel.Links.Remove(licenseLinkLabel.Links[0]);
24-
licenseLinkLabel.Links.Add(0, licenseLinkLabel.Text.Length, "https://www.mozilla.org/en-US/MPL/2.0/");
24+
licenseLinkLabel.Links.Add(0, licenseLinkLabel.Text.Length, "https://www.gnu.org/licenses/gpl-3.0.html");
2525
Theme.Current.Apply(this);
2626
}
2727

OpenHardwareMonitorLib/HidSharp/AsyncResult.cs

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
1-
#region License
2-
/* Copyright 2012 James F. Bellinger <http://www.zer7.com/software/hidsharp>
3-
4-
Licensed under the Apache License, Version 2.0 (the "License");
5-
you may not use this file except in compliance with the License.
6-
You may obtain a copy of the License at
7-
8-
http://www.apache.org/licenses/LICENSE-2.0
9-
10-
Unless required by applicable law or agreed to in writing,
11-
software distributed under the License is distributed on an
12-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13-
KIND, either express or implied. See the License for the
14-
specific language governing permissions and limitations
15-
under the License. */
16-
#endregion
17-
18-
using System;
1+
using System;
192
using System.Threading;
203

214
namespace HidSharp
@@ -125,4 +108,4 @@ T Result
125108
set;
126109
}
127110
}
128-
}
111+
}

OpenHardwareMonitorLib/HidSharp/CommonException.cs

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
1-
#region License
2-
/* Copyright 2019 James F. Bellinger <http://www.zer7.com/software/hidsharp>
3-
4-
Licensed under the Apache License, Version 2.0 (the "License");
5-
you may not use this file except in compliance with the License.
6-
You may obtain a copy of the License at
7-
8-
http://www.apache.org/licenses/LICENSE-2.0
9-
10-
Unless required by applicable law or agreed to in writing,
11-
software distributed under the License is distributed on an
12-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13-
KIND, either express or implied. See the License for the
14-
specific language governing permissions and limitations
15-
under the License. */
16-
#endregion
17-
18-
using System;
1+
using System;
192

203
namespace HidSharp
214
{

OpenHardwareMonitorLib/HidSharp/Device.cs

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
1-
#region License
2-
/* Copyright 2017 James F. Bellinger <http://www.zer7.com/software/hidsharp>
3-
4-
Licensed under the Apache License, Version 2.0 (the "License");
5-
you may not use this file except in compliance with the License.
6-
You may obtain a copy of the License at
7-
8-
http://www.apache.org/licenses/LICENSE-2.0
9-
10-
Unless required by applicable law or agreed to in writing,
11-
software distributed under the License is distributed on an
12-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13-
KIND, either express or implied. See the License for the
14-
specific language governing permissions and limitations
15-
under the License. */
16-
#endregion
17-
18-
using System;
1+
using System;
192
using System.Diagnostics;
203
using HidSharp.Utility;
214

OpenHardwareMonitorLib/HidSharp/DeviceException.cs

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
1-
#region License
2-
/* Copyright 2017 James F. Bellinger <http://www.zer7.com/software/hidsharp>
3-
4-
Licensed under the Apache License, Version 2.0 (the "License");
5-
you may not use this file except in compliance with the License.
6-
You may obtain a copy of the License at
7-
8-
http://www.apache.org/licenses/LICENSE-2.0
9-
10-
Unless required by applicable law or agreed to in writing,
11-
software distributed under the License is distributed on an
12-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13-
KIND, either express or implied. See the License for the
14-
specific language governing permissions and limitations
15-
under the License. */
16-
#endregion
17-
18-
using System;
1+
using System;
192
using System.IO;
203

214
namespace HidSharp

OpenHardwareMonitorLib/HidSharp/DeviceFilter.cs

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
1-
#region License
2-
/* Copyright 2017 James F. Bellinger <http://www.zer7.com/software/hidsharp>
3-
4-
Licensed under the Apache License, Version 2.0 (the "License");
5-
you may not use this file except in compliance with the License.
6-
You may obtain a copy of the License at
7-
8-
http://www.apache.org/licenses/LICENSE-2.0
9-
10-
Unless required by applicable law or agreed to in writing,
11-
software distributed under the License is distributed on an
12-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13-
KIND, either express or implied. See the License for the
14-
specific language governing permissions and limitations
15-
under the License. */
16-
#endregion
17-
18-
namespace HidSharp
1+
namespace HidSharp
192
{
203
public delegate bool DeviceFilter(Device device);
214

OpenHardwareMonitorLib/HidSharp/DeviceList.cs

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
1-
#region License
2-
/* Copyright 2015-2016, 2018-2019 James F. Bellinger <http://www.zer7.com/software/hidsharp>
3-
4-
Licensed under the Apache License, Version 2.0 (the "License");
5-
you may not use this file except in compliance with the License.
6-
You may obtain a copy of the License at
7-
8-
http://www.apache.org/licenses/LICENSE-2.0
9-
10-
Unless required by applicable law or agreed to in writing,
11-
software distributed under the License is distributed on an
12-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13-
KIND, either express or implied. See the License for the
14-
specific language governing permissions and limitations
15-
under the License. */
16-
#endregion
17-
18-
using System;
1+
using System;
192
using System.Collections.Generic;
203
using System.ComponentModel;
214
using System.Linq;

OpenHardwareMonitorLib/HidSharp/DeviceListChangedEventArgs.cs

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
1-
#region License
2-
/* Copyright 2016 James F. Bellinger <http://www.zer7.com/software/hidsharp>
3-
4-
Licensed under the Apache License, Version 2.0 (the "License");
5-
you may not use this file except in compliance with the License.
6-
You may obtain a copy of the License at
7-
8-
http://www.apache.org/licenses/LICENSE-2.0
9-
10-
Unless required by applicable law or agreed to in writing,
11-
software distributed under the License is distributed on an
12-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13-
KIND, either express or implied. See the License for the
14-
specific language governing permissions and limitations
15-
under the License. */
16-
#endregion
17-
18-
using System;
1+
using System;
192

203
namespace HidSharp
214
{

OpenHardwareMonitorLib/HidSharp/DeviceOpenUtility.cs

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
1-
#region License
2-
/* Copyright 2017 James F. Bellinger <http://www.zer7.com/software/hidsharp>
3-
4-
Licensed under the Apache License, Version 2.0 (the "License");
5-
you may not use this file except in compliance with the License.
6-
You may obtain a copy of the License at
7-
8-
http://www.apache.org/licenses/LICENSE-2.0
9-
10-
Unless required by applicable law or agreed to in writing,
11-
software distributed under the License is distributed on an
12-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
13-
KIND, either express or implied. See the License for the
14-
specific language governing permissions and limitations
15-
under the License. */
16-
#endregion
17-
18-
using System;
1+
using System;
192
using System.Text;
203
using System.Threading;
214
using HidSharp.Platform;

0 commit comments

Comments
 (0)