From 60c350721318bc054a6448db6cf9bd1bc6d2bb76 Mon Sep 17 00:00:00 2001 From: Maximilian Fischer Date: Fri, 9 Oct 2020 13:29:22 +0200 Subject: [PATCH 1/5] added licenses I've just copied the LICENSE file. --- packages/dart/LICENSE | 31 +++++++++++++++++++++++++++++++ packages/flutter/LICENSE | 31 +++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 packages/dart/LICENSE create mode 100644 packages/flutter/LICENSE diff --git a/packages/dart/LICENSE b/packages/dart/LICENSE new file mode 100644 index 000000000..38f25d526 --- /dev/null +++ b/packages/dart/LICENSE @@ -0,0 +1,31 @@ +BSD 3-Clause License + +Copyright (c) 2019, Phill Wiggins. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. 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. + +3. 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/packages/flutter/LICENSE b/packages/flutter/LICENSE new file mode 100644 index 000000000..38f25d526 --- /dev/null +++ b/packages/flutter/LICENSE @@ -0,0 +1,31 @@ +BSD 3-Clause License + +Copyright (c) 2019, Phill Wiggins. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. 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. + +3. 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. + +======= From 6aaa4040c819c43b768f252082cacf045be37903 Mon Sep 17 00:00:00 2001 From: Maximilian Fischer Date: Fri, 9 Oct 2020 13:29:43 +0200 Subject: [PATCH 2/5] change dependencies at dart/pubspec.yaml --- packages/dart/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dart/pubspec.yaml b/packages/dart/pubspec.yaml index 1d75ec13a..d78d35b1a 100644 --- a/packages/dart/pubspec.yaml +++ b/packages/dart/pubspec.yaml @@ -14,7 +14,7 @@ dependencies: #Database sembast: ^2.4.7+6 - sembast_web: '>=1.0.0' + sembast_web: ^1.2.0 xxtea: ^2.0.3 # Utils From 7a4d4a4f51abe6ee69a1ffe829c32da987cd4412 Mon Sep 17 00:00:00 2001 From: Maximilian Fischer Date: Fri, 9 Oct 2020 13:33:53 +0200 Subject: [PATCH 3/5] change dependencies at flutter/pubspec.yaml --- packages/flutter/pubspec.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/flutter/pubspec.yaml b/packages/flutter/pubspec.yaml index ce9fc83c8..5a54f3f19 100644 --- a/packages/flutter/pubspec.yaml +++ b/packages/flutter/pubspec.yaml @@ -10,19 +10,20 @@ dependencies: flutter: sdk: flutter - parse_server_sdk: - path: ../dart/ + parse_server_sdk: ^1.0.28 # Networking - dio: ^3.0.10 connectivity: ^0.4.9+2 # only used in the flutter part #Database + sembast: ^2.4.7+6 shared_preferences: ^0.5.10 # only used in the flutter part # Utils path_provider: ^1.6.14 # only used in the flutter part package_info: ^0.4.3 # only used in the flutter part + path: ^1.7.0 + dev_dependencies: # Testing From 67d5635309e5ece145c647cc7a31da034c28af67 Mon Sep 17 00:00:00 2001 From: Maximilian Fischer Date: Sun, 11 Oct 2020 11:36:10 +0200 Subject: [PATCH 4/5] Update pubspec.yaml --- packages/flutter/pubspec.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter/pubspec.yaml b/packages/flutter/pubspec.yaml index 5a54f3f19..1dc039b75 100644 --- a/packages/flutter/pubspec.yaml +++ b/packages/flutter/pubspec.yaml @@ -16,13 +16,13 @@ dependencies: connectivity: ^0.4.9+2 # only used in the flutter part #Database - sembast: ^2.4.7+6 shared_preferences: ^0.5.10 # only used in the flutter part # Utils path_provider: ^1.6.14 # only used in the flutter part package_info: ^0.4.3 # only used in the flutter part - path: ^1.7.0 + sembast: ^2.4.7+6 # required for transitive use only + path: ^1.7.0 # required for transitive use only dev_dependencies: From 4c3c1860b176ac8108d33f9e52c0e969207ff800 Mon Sep 17 00:00:00 2001 From: Maximilian Fischer Date: Sun, 11 Oct 2020 11:40:06 +0200 Subject: [PATCH 5/5] Update pubspec.yaml --- packages/flutter/pubspec.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/flutter/pubspec.yaml b/packages/flutter/pubspec.yaml index 1dc039b75..837c8df65 100644 --- a/packages/flutter/pubspec.yaml +++ b/packages/flutter/pubspec.yaml @@ -21,8 +21,6 @@ dependencies: # Utils path_provider: ^1.6.14 # only used in the flutter part package_info: ^0.4.3 # only used in the flutter part - sembast: ^2.4.7+6 # required for transitive use only - path: ^1.7.0 # required for transitive use only dev_dependencies: