diff options
| author | Lex Neva <github.com@lexneva.name> | 2021-03-11 23:43:07 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2021-03-13 14:46:29 -0500 |
| commit | 90a59769dd8d4de7b66c3e943e5271329980dab1 (patch) | |
| tree | c5284d82047744f48e97a51d9d447966926aaab7 /electron/src/main | |
| parent | 1632afbb01344fe3391a76f20c3df54366b918f9 (diff) | |
add more license headers
Diffstat (limited to 'electron/src/main')
| -rw-r--r-- | electron/src/main/index.dev.js | 10 | ||||
| -rw-r--r-- | electron/src/main/index.js | 8 |
2 files changed, 17 insertions, 1 deletions
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' |
