From 83cab80633b5dbcc3566e6292528dbe5f462a80a Mon Sep 17 00:00:00 2001 From: James Long Date: Fri, 29 Apr 2022 10:40:12 -0400 Subject: [PATCH] license --- LICENSE.txt | 7 +++++++ package.json | 1 + packages/api/package.json | 3 ++- packages/desktop-client/package.json | 3 ++- packages/desktop-electron/package.json | 2 +- 5 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..5ace00c --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,7 @@ +Copyright 2022 James Long + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/package.json b/package.json index b5058a5..64ff753 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "actual", "version": "0.0.1", "private": true, + "license": "MIT", "workspaces": { "packages": [ "packages/*" diff --git a/packages/api/package.json b/packages/api/package.json index 9401de0..2746877 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,7 @@ { "name": "@actual-app/api", - "version": "4.0.1", + "version": "4.0.2", + "license": "MIT", "description": "An API for Actual", "main": "index.js", "license": "MIT", diff --git a/packages/desktop-client/package.json b/packages/desktop-client/package.json index ae6262a..f95211c 100644 --- a/packages/desktop-client/package.json +++ b/packages/desktop-client/package.json @@ -1,6 +1,7 @@ { "name": "@actual-app/web", - "version": "4.0.1", + "version": "4.0.2", + "license": "MIT", "files": [ "build" ], diff --git a/packages/desktop-electron/package.json b/packages/desktop-electron/package.json index 8b9ded7..4843b99 100644 --- a/packages/desktop-electron/package.json +++ b/packages/desktop-electron/package.json @@ -3,7 +3,7 @@ "productName": "Actual", "author": "Shift Reset LLC", "description": "A simple and powerful personal finance system", - "version": "4.0.1", + "version": "4.0.2", "scripts": { "watch": "cross-env ACTUAL_DOCUMENT_DIR=\"../../data\" ACTUAL_DATA_DIR=\"../../data\" electron ." },