From 90a59769dd8d4de7b66c3e943e5271329980dab1 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 11 Mar 2021 23:43:07 -0500 Subject: add more license headers --- electron/package.json | 2 +- electron/src/index.ejs | 8 ++++++++ electron/src/lib/api.js | 8 ++++++++ electron/src/lib/i18n.js | 8 ++++++++ electron/src/main/index.dev.js | 10 +++++++++- electron/src/main/index.js | 8 ++++++++ electron/src/renderer/App.vue | 9 +++++++++ electron/src/renderer/assets/js/simulator.js | 8 ++++++++ electron/src/renderer/assets/style/simulator.css | 8 ++++++++ electron/src/renderer/components/InstallPalettes.vue | 9 +++++++++ electron/src/renderer/components/Simulator.vue | 9 +++++++++ electron/src/renderer/main.js | 8 ++++++++ electron/src/renderer/router/index.js | 8 ++++++++ 13 files changed, 101 insertions(+), 2 deletions(-) diff --git a/electron/package.json b/electron/package.json index e66eb7ec..9159ac24 100644 --- a/electron/package.json +++ b/electron/package.json @@ -33,7 +33,7 @@ }, "keywords": [], "author": "lex", - "license": "GPL-3.0+", + "license": "GPL-3.0-or-later", "dependencies": { "@fortawesome/fontawesome-svg-core": "^1.2.22", "@fortawesome/free-solid-svg-icons": "^5.10.2", diff --git a/electron/src/index.ejs b/electron/src/index.ejs index e1a77ad7..381a86c7 100644 --- a/electron/src/index.ejs +++ b/electron/src/index.ejs @@ -1,3 +1,11 @@ + diff --git a/electron/src/lib/api.js b/electron/src/lib/api.js index 45b67d56..b6aa74e2 100644 --- a/electron/src/lib/api.js +++ b/electron/src/lib/api.js @@ -1,3 +1,11 @@ +/* + * Authors: see git history + * + * Copyright (c) 2010 Authors + * Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + * + */ + const axios = require('axios') const queryString = require('query-string') diff --git a/electron/src/lib/i18n.js b/electron/src/lib/i18n.js index 4f9395d7..de56fc8f 100644 --- a/electron/src/lib/i18n.js +++ b/electron/src/lib/i18n.js @@ -1,3 +1,11 @@ +/* + * Authors: see git history + * + * Copyright (c) 2010 Authors + * Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + * + */ + module.exports.selectLanguage = function (translations) { // get a list of available translations var availableTranslations = ['en_US']; diff --git a/electron/src/main/index.dev.js b/electron/src/main/index.dev.js index 1d10bc4e..7fc8c159 100644 --- a/electron/src/main/index.dev.js +++ b/electron/src/main/index.dev.js @@ -1,3 +1,11 @@ +/* + * Authors: see git history + * + * Copyright (c) 2010 Authors + * Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + * + */ + /** * This file is used specifically and only for development. It installs * `electron-debug` & `vue-devtools`. There shouldn't be any need to @@ -21,4 +29,4 @@ require('electron').app.on('ready', () => { }) // Require `main` process to boot app -require('./index') \ No newline at end of file +require('./index') diff --git a/electron/src/main/index.js b/electron/src/main/index.js index 14a3da55..09fd2959 100644 --- a/electron/src/main/index.js +++ b/electron/src/main/index.js @@ -1,3 +1,11 @@ +/* + * Authors: see git history + * + * Copyright (c) 2010 Authors + * Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + * + */ + 'use strict' import {app, BrowserWindow, ipcMain, dialog, shell} from 'electron' diff --git a/electron/src/renderer/App.vue b/electron/src/renderer/App.vue index 7495dd05..2e5bbb9d 100644 --- a/electron/src/renderer/App.vue +++ b/electron/src/renderer/App.vue @@ -1,3 +1,12 @@ + +