From 0b97e50dd8977968fffbd1afa151026813fdac02 Mon Sep 17 00:00:00 2001 From: David Asher Date: Wed, 12 Aug 2020 16:26:44 -0400 Subject: [PATCH] ready for release --- answerBrowser.js | 9 ++------- electron-firebase.js | 4 ++-- package.json | 2 +- setupApp.js | 9 ++------- 4 files changed, 7 insertions(+), 17 deletions(-) diff --git a/answerBrowser.js b/answerBrowser.js index 2cb15c3..326b945 100644 --- a/answerBrowser.js +++ b/answerBrowser.js @@ -1,15 +1,10 @@ /* answerBrowser.js - * electron-firebase * This is a quickstart template for building Firebase authentication workflow into an electron app - * Copyright (c) 2019 by David Asher, https://github.com/david-asher - * - -'use strict'; - -/* * This module contains functions that respond to queries from the Browser + * Copyright (c) 2019-2020 by David Asher, https://github.com/david-asher * @module answerBrowser */ +'use strict'; const { mainapp, firestore, fbstorage, fbwindow } = loadModule( 'electron-firebase' ) const urlParser = require('url').parse diff --git a/electron-firebase.js b/electron-firebase.js index c1c446c..9e551f7 100644 --- a/electron-firebase.js +++ b/electron-firebase.js @@ -1,10 +1,10 @@ /* electron-firebase.js - * Copyright (c) 2019 by David Asher, https://github.com/david-asher + * Copyright (c) 2019-2020 by David Asher, https://github.com/david-asher */ 'use strict'; /** - * High-level functions for quickly building the main application. + * API interface to electron-firebase, pulls in all needed modules * @module electron-firebase */ diff --git a/package.json b/package.json index 6fc4d27..a8db062 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ }, "repository": { "type": "git", - "url": "git@github.com:david-asher/electron-firebase.git" + "url": "https://github.com/david-asher/electron-firebase.git" }, "keywords": [ "electron", diff --git a/setupApp.js b/setupApp.js index 7f8a688..0bb3e83 100644 --- a/setupApp.js +++ b/setupApp.js @@ -1,15 +1,10 @@ /* setupapp.js - * electron-firebase * This is a quickstart template for building Firebase authentication workflow into an electron app - * Copyright (c) 2019 by David Asher, https://github.com/david-asher - * - -'use strict'; - -/* * This module contains functions that help to initialize or update the application + * Copyright (c) 2019-2020 by David Asher, https://github.com/david-asher * @module setupapp */ +'use strict'; const { firestore, fbstorage } = loadModule( 'electron-firebase' )