From 72ccb4a08c73df3d76c8773c578294e06b399477 Mon Sep 17 00:00:00 2001 From: hopsonj19 <55367839+hopsonj19@users.noreply.github.com> Date: Fri, 22 Apr 2022 22:28:28 -0500 Subject: [PATCH 1/5] Commenting App.jsx --- src/App.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App.jsx b/src/App.jsx index e0a3e67..ee6e45b 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,3 +1,5 @@ +// This file controls the side panes, contains the buttons and the functions they are linked to, and edits the css properties of the panes. + import './App.css'; import Mapper from './Componets/Mapper' import NavButton from './Componets/NavButton'; From f8b2c69de75594681a4b0ac2455bc9aa72df3660 Mon Sep 17 00:00:00 2001 From: hopsonj19 <55367839+hopsonj19@users.noreply.github.com> Date: Fri, 22 Apr 2022 22:33:27 -0500 Subject: [PATCH 2/5] Commenting App.css --- src/App.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/App.css b/src/App.css index 76bc5f5..f192b05 100644 --- a/src/App.css +++ b/src/App.css @@ -1,3 +1,5 @@ +/* This file contains the base styling for the panes and buttons necessary for them to appear in their specific positions and not overlap. */ + .ViewPort{ overflow: hidden; justify-self:start; @@ -108,4 +110,4 @@ #buttonGridViewPort{ display: none; -} \ No newline at end of file +} From 87d5d34acf6eccad58a47e6a13510a78e206d560 Mon Sep 17 00:00:00 2001 From: hopsonj19 <55367839+hopsonj19@users.noreply.github.com> Date: Fri, 22 Apr 2022 22:49:39 -0500 Subject: [PATCH 3/5] Commenting main.js --- public/main.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/main.js b/public/main.js index cc37e8d..aa70587 100644 --- a/public/main.js +++ b/public/main.js @@ -1,3 +1,5 @@ +//This file runs the app as both a standalone and as a locally hosted web application on http://localhost:3000. + const { app, BrowserWindow, Menu } = require('electron'); const path = require('path'); const { setupTitlebar, attachTitlebarToWindow } = require('custom-electron-titlebar/main'); @@ -71,4 +73,4 @@ app.on('before-quit' , (e) => { })); }); -app.commandLine.appendSwitch('auto-detect','false'); \ No newline at end of file +app.commandLine.appendSwitch('auto-detect','false'); From 7132d6e91c18106a5822f8c683f8a162c863ae30 Mon Sep 17 00:00:00 2001 From: hopsonj19 <55367839+hopsonj19@users.noreply.github.com> Date: Fri, 22 Apr 2022 22:57:56 -0500 Subject: [PATCH 4/5] Commenting preload.js --- public/preload.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/preload.js b/public/preload.js index e2e5c0b..e88da5d 100644 --- a/public/preload.js +++ b/public/preload.js @@ -1,3 +1,5 @@ +//This file allows us to customize the app's title bar style and contents. + const { Titlebar, Color } = require('custom-electron-titlebar'); const path = require('path'); @@ -7,4 +9,4 @@ window.addEventListener('DOMContentLoaded', () => { titlebar = new Titlebar({ backgroundColor: Color.fromHex("#1c2224"), menu: null - })}) \ No newline at end of file + })}) From 7bb074b291c824f1272a3ce0150ab78ac3393921 Mon Sep 17 00:00:00 2001 From: hopsonj19 <55367839+hopsonj19@users.noreply.github.com> Date: Fri, 22 Apr 2022 23:05:20 -0500 Subject: [PATCH 5/5] Commenting index.html --- public/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/public/index.html b/public/index.html index dd7ac8c..ab2bdb7 100644 --- a/public/index.html +++ b/public/index.html @@ -1,4 +1,5 @@ +