From 681d708848861d8359bdd322479c07b2b2928d84 Mon Sep 17 00:00:00 2001 From: David Fahlander Date: Thu, 26 Oct 2017 23:15:05 +0200 Subject: [PATCH] Followed licensing guide from apache Resolves #596 --- NOTICE | 15 +++++++++++++++ src/Dexie.js | 7 ++++--- src/Promise.js | 4 ++++ 3 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 NOTICE diff --git a/NOTICE b/NOTICE new file mode 100644 index 000000000..9de226815 --- /dev/null +++ b/NOTICE @@ -0,0 +1,15 @@ +Dexie.js + +Copyright (c) 2014-2017 David Fahlander + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/src/Dexie.js b/src/Dexie.js index cdc4d2587..6d6951051 100644 --- a/src/Dexie.js +++ b/src/Dexie.js @@ -2,13 +2,14 @@ * Dexie.js - a minimalistic wrapper for IndexedDB * =============================================== * - * By David Fahlander, david.fahlander@gmail.com + * Copyright (c) 2014-2017 David Fahlander * * Version {version}, {date} * * http://dexie.org - * - * Apache License Version 2.0, January 2004, http://www.apache.org/licenses/ + * + * Apache License Version 2.0, January 2004, http://www.apache.org/licenses/LICENSE-2.0 + * */ import { diff --git a/src/Promise.js b/src/Promise.js index 1499ee6ae..3b2d60627 100644 --- a/src/Promise.js +++ b/src/Promise.js @@ -1,3 +1,7 @@ +/* + * Copyright (c) 2014-2017 David Fahlander + * Apache License Version 2.0, January 2004, http://www.apache.org/licenses/LICENSE-2.0 + */ import {doFakeAutoComplete, tryCatch, props, setProp, _global, getPropertyDescriptor, getArrayOf, extend} from './utils'; import {nop, callBoth, mirror} from './chaining-functions';