From 1fa502e658132c926189c7a3822a6ab1abeb069a Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Tue, 1 Nov 2022 09:45:09 +0100 Subject: [PATCH] Add BSD-3-Clause license --- LICENSE | 9 +++++++++ example/lib/main.dart | 4 ++++ lib/agenda.dart | 4 ++++ lib/src/agenda.dart | 4 ++++ lib/src/models/agenda_event.dart | 4 ++++ lib/src/models/agenda_theme.dart | 4 ++++ test/agenda_test.dart | 4 ++++ 7 files changed, 33 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fe891f8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +Copyright (c) 2022 Iconica, All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/example/lib/main.dart b/example/lib/main.dart index 988646d..3ff9bf8 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 Iconica +// +// SPDX-License-Identifier: BSD-3-Clause + import 'package:agenda/agenda.dart'; import 'package:flutter/material.dart'; diff --git a/lib/agenda.dart b/lib/agenda.dart index 4eba1ba..e28d7ca 100644 --- a/lib/agenda.dart +++ b/lib/agenda.dart @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 Iconica +// +// SPDX-License-Identifier: BSD-3-Clause + library agenda; export 'package:agenda/src/agenda.dart'; diff --git a/lib/src/agenda.dart b/lib/src/agenda.dart index 01b65e4..5199755 100644 --- a/lib/src/agenda.dart +++ b/lib/src/agenda.dart @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 Iconica +// +// SPDX-License-Identifier: BSD-3-Clause + import 'package:agenda/src/models/agenda_event.dart'; import 'package:agenda/src/models/agenda_theme.dart'; import 'package:flutter/material.dart'; diff --git a/lib/src/models/agenda_event.dart b/lib/src/models/agenda_event.dart index 6301c97..8dba781 100644 --- a/lib/src/models/agenda_event.dart +++ b/lib/src/models/agenda_event.dart @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 Iconica +// +// SPDX-License-Identifier: BSD-3-Clause + import 'package:flutter/material.dart'; class AgendaEvent { diff --git a/lib/src/models/agenda_theme.dart b/lib/src/models/agenda_theme.dart index d8ecd14..a3e7d27 100644 --- a/lib/src/models/agenda_theme.dart +++ b/lib/src/models/agenda_theme.dart @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 Iconica +// +// SPDX-License-Identifier: BSD-3-Clause + import 'package:flutter_date_time_picker/flutter_date_time_picker.dart'; import 'package:timetable/timetable.dart'; diff --git a/test/agenda_test.dart b/test/agenda_test.dart index 7b1d6c2..15f6fc0 100644 --- a/test/agenda_test.dart +++ b/test/agenda_test.dart @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2022 Iconica +// +// SPDX-License-Identifier: BSD-3-Clause + import 'package:agenda/agenda.dart'; import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart';