Skip to content

Commit 0de70c2

Browse files
Update copyright year
1 parent d157189 commit 0de70c2

Some content is hidden

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

47 files changed

+284
-44
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) C. Augusto Proiete 2018-2020
3+
Copyright (c) C. Augusto Proiete 2018-2021
44
Copyright (c) Sven Groot 2009-2018
55
All rights reserved.
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,4 @@ Click on the [Releases](https://github.com/augustoproiete/ookii-dialogs-wpf/rele
131131

132132
---
133133

134-
_Copyright © 2009-2020 Ookii Dialogs Contributors - Provided under the [BSD 3-Clause "New" or "Revised" License](LICENSE)._
134+
_Copyright © 2009-2021 Ookii Dialogs Contributors - Provided under the [BSD 3-Clause "New" or "Revised" License](LICENSE)._

sample/Ookii.Dialogs.Wpf.Sample/App.xaml.cs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
using System.Windows;
1+
// Copyright 2009-2021 Ookii Dialogs Contributors
2+
//
3+
// Licensed under the BSD 3-Clause License (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// https://opensource.org/licenses/BSD-3-Clause
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
using System.Windows;
216

317
namespace Ookii.Dialogs.Wpf.Sample
418
{

sample/Ookii.Dialogs.Wpf.Sample/MainWindow.xaml.cs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
using System;
1+
// Copyright 2009-2021 Ookii Dialogs Contributors
2+
//
3+
// Licensed under the BSD 3-Clause License (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// https://opensource.org/licenses/BSD-3-Clause
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
using System;
216
using System.Windows;
317
using System.Threading;
418
using System.ComponentModel;

src/Ookii.Dialogs.Wpf/AnimationResource.cs

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
using System;
1+
#region Copyright 2009-2021 Ookii Dialogs Contributors
2+
//
3+
// Licensed under the BSD 3-Clause License (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// https://opensource.org/licenses/BSD-3-Clause
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
//
15+
#endregion
16+
17+
using System;
218
using System.Collections.Generic;
319
using System.Linq;
420
using System.Text;

src/Ookii.Dialogs.Wpf/ButtonType.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2009-2020 Ookii Dialogs Contributors
1+
#region Copyright 2009-2021 Ookii Dialogs Contributors
22
//
33
// Licensed under the BSD 3-Clause License (the "License");
44
// you may not use this file except in compliance with the License.
@@ -11,6 +11,8 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14+
//
15+
#endregion
1416

1517
using System;
1618
using System.Collections.Generic;

src/Ookii.Dialogs.Wpf/ComCtlv6ActivationContext.cs

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
using System;
1+
#region Copyright 2009-2021 Ookii Dialogs Contributors
2+
//
3+
// Licensed under the BSD 3-Clause License (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// https://opensource.org/licenses/BSD-3-Clause
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
//
15+
#endregion
16+
17+
using System;
218
using System.IO;
319
using System.Runtime.InteropServices;
420

src/Ookii.Dialogs.Wpf/CredentialDialog.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2009-2020 Ookii Dialogs Contributors
1+
#region Copyright 2009-2021 Ookii Dialogs Contributors
22
//
33
// Licensed under the BSD 3-Clause License (the "License");
44
// you may not use this file except in compliance with the License.
@@ -11,6 +11,8 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14+
//
15+
#endregion
1416

1517
using System;
1618
using System.Collections.Generic;

src/Ookii.Dialogs.Wpf/CredentialDialog.designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Ookii.Dialogs.Wpf/CredentialException.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2009-2020 Ookii Dialogs Contributors
1+
#region Copyright 2009-2021 Ookii Dialogs Contributors
22
//
33
// Licensed under the BSD 3-Clause License (the "License");
44
// you may not use this file except in compliance with the License.
@@ -11,6 +11,8 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14+
//
15+
#endregion
1416

1517
using System;
1618
using System.Collections.Generic;

0 commit comments

Comments
 (0)