Clean up of launcher

This commit is contained in:
Scott Idem
2022-05-05 20:49:10 -04:00
parent 6802eac1d9
commit 98bd835342
5 changed files with 30 additions and 20 deletions

View File

@@ -20,23 +20,31 @@
<!-- One Sky IT default custom Cascading Style Sheets (CSS) --> <!-- One Sky IT default custom Cascading Style Sheets (CSS) -->
<!-- One Sky IT site custom Cascading Style Sheets (CSS) --> <!-- One Sky IT site custom Cascading Style Sheets (CSS) -->
<link rel="stylesheet" href="https://demo.oneskyit.com/static/css/aether_variables.css"> <!-- <link rel="stylesheet" href="https://demo.oneskyit.com/static/css/aether_variables.css"> -->
<link rel="stylesheet" href="https://demo.oneskyit.com/static/svelte/build/aether_utilities.css"> <link rel="stylesheet" href="http://dev.oneskyit.local:5000/static/css/aether_variables.css">
<link rel="stylesheet" href="https://demo.oneskyit.com/static/css/aether_system.css"> <!-- <link rel="stylesheet" href="https://demo.oneskyit.com/static/svelte/build/aether_utilities.css"> -->
<link rel="stylesheet" href="http://dev.oneskyit.local:5000/static/svelte/build/aether_utilities.css">
<!-- <link rel="stylesheet" href="https://demo.oneskyit.com/static/css/aether_system.css"> -->
<link rel="stylesheet" href="http://dev.oneskyit.local:5000/static/css/aether_system.css">
<!-- <link rel="stylesheet" href="svelte/build/aether_layout.css"> --> <!-- <link rel="stylesheet" href="svelte/build/aether_layout.css"> -->
<!-- <link rel="stylesheet" href="css/aether_layout_flow.css"> --> <!-- <link rel="stylesheet" href="css/aether_layout_flow.css"> -->
<!-- <link rel="stylesheet" href="css/aether_layout_grid.css"> --> <!-- <link rel="stylesheet" href="css/aether_layout_grid.css"> -->
<link rel="stylesheet" href="https://demo.oneskyit.com/static/svelte/build/aether_modules_core.css"> <!-- <link rel="stylesheet" href="https://demo.oneskyit.com/static/svelte/build/aether_modules_core.css"> -->
<!-- <link rel="stylesheet" href="https://demo.oneskyit.com/static/svelte/build/aether_modules_other.css"> --> <link rel="stylesheet" href="http://dev.oneskyit.local:5000/static/svelte/build/aether_modules_core.css">
<!-- <link href="https://demo.oneskyit.com/static/svelte/build/bundle.css" rel="stylesheet"> --> <!-- <link href="https://demo.oneskyit.com/static/svelte/build/bundle.css" rel="stylesheet"> -->
<link href="http://app-local.oneskyit.com/static/svelte/build/bundle.css" rel="stylesheet"> <!-- <link href="http://app-local.oneskyit.com/static/svelte/build/bundle.css" rel="stylesheet"> -->
<link href="http://dev.oneskyit.local:5000/static/svelte/build/bundle.css" rel="stylesheet">
<!-- <link href="https://demo.oneskyit.com/static/svelte/build/reloading.css" rel="stylesheet"> -->
<link href="https://demo.oneskyit.com/static/svelte/build/reloading.css" rel="stylesheet"> <link href="https://demo.oneskyit.com/static/svelte/build/reloading.css" rel="stylesheet">
<link href="https://demo.oneskyit.com/static/svelte/build/base_style_grid_layout_v3.css" rel="stylesheet"> <!-- <link href="https://demo.oneskyit.com/static/svelte/build/base_style_grid_layout_v3.css" rel="stylesheet"> -->
<link href="https://demo.oneskyit.com/static/svelte/build/base_style_grid_theme_v3.css" rel="stylesheet"> <link href="http://dev.oneskyit.local:5000/static/svelte/build/base_style_grid_layout_v3.css" rel="stylesheet">
<!-- <link href="https://demo.oneskyit.com/static/svelte/build/base_style_grid_theme_v3.css" rel="stylesheet"> -->
<link href="http://dev.oneskyit.local:5000/static/svelte/build/base_style_grid_theme_v3.css" rel="stylesheet">
<link href="https://demo.oneskyit.com/static/svelte/build/event_launcher.css" rel="stylesheet"> <!-- <link href="https://demo.oneskyit.com/static/svelte/build/event_launcher.css" rel="stylesheet"> -->
<link href="http://dev.oneskyit.local:5000/static/svelte/build/event_launcher.css" rel="stylesheet">
<link rel="stylesheet" href="css/aether_native_app_v3.css"> <link rel="stylesheet" href="css/aether_native_app_v3.css">
@@ -55,7 +63,7 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/localforage/1.10.0/localforage.min.js" integrity="sha512-+BMamP0e7wn39JGL8nKAZ3yAQT2dL5oaXWr4ZYlTGkKOaoXM/Yj7c4oy50Ngz5yoUutAG17flueD4F6QpTlPng==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/localforage/1.10.0/localforage.min.js" integrity="sha512-+BMamP0e7wn39JGL8nKAZ3yAQT2dL5oaXWr4ZYlTGkKOaoXM/Yj7c4oy50Ngz5yoUutAG17flueD4F6QpTlPng==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://static.oneskyit.com/js/utilities.js"></script> <!-- <script src="https://static.oneskyit.com/js/utilities.js"></script> -->
<!-- <script src="js/app_idb.js"></script> --> <!-- <script src="js/app_idb.js"></script> -->
<script> <script>
@@ -67,7 +75,7 @@
const env = 'development'; // 'development', 'production' const env = 'development'; // 'development', 'production'
const app_env = 'development_local'; // 'development_local', 'development_remote' const app_env = 'development_local'; // 'development_local', 'development_remote'
const api_env = 'development_local'; // 'development_local', 'development_remote' const api_env = 'development_local'; // 'development_local', 'development_remote'
const app_mode = 'app'; // null, 'default', 'onsite', 'app' const app_mode = 'native'; // null, 'default', 'onsite', 'native'
let client_account_id = app_config.account_id; let client_account_id = app_config.account_id;
console.log(client_account_id); console.log(client_account_id);
@@ -113,7 +121,8 @@
<!-- <script defer src="svelte/build/bundle.js" crossorigin></script> --> <!-- <script defer src="svelte/build/bundle.js" crossorigin></script> -->
<!-- <script defer src="https://demo.oneskyit.com/static/svelte/build/bundle.js" crossorigin></script> --> <!-- <script defer src="https://demo.oneskyit.com/static/svelte/build/bundle.js" crossorigin></script> -->
<script defer src="http://app-local.oneskyit.com/static/svelte/build/bundle.js" crossorigin></script> <!-- <script defer src="http://app-local.oneskyit.com/static/svelte/build/bundle.js" crossorigin></script> -->
<script defer src="http://dev.oneskyit.local:5000/static/svelte/build/bundle.js" crossorigin></script>
<!-- JavaScript (JS) end --> <!-- JavaScript (JS) end -->
</head> </head>

View File

@@ -2,11 +2,8 @@
"account_id": "_XY7DXtc9MY", "account_id": "_XY7DXtc9MY",
"event_id": "pjrcghqwert", "event_id": "pjrcghqwert",
"event_device_id": "dbgMWS3KEHE", "event_device_id": "dbgMWS3KEHE",
"event_location_id": null, "event_location_id": "7ReVVemiSM0",
"event_session_id": null, "event_session_id": null,
"event_presentation_id": null,
"event_presenter_id": null,
"event_file_id": null,
"api_secret_key": "dFP6J9DVj9hUgIMn-fNIqg", "api_secret_key": "dFP6J9DVj9hUgIMn-fNIqg",
"api_remote_base_url": "https://dev-fastapi.oneskyit.com", "api_remote_base_url": "https://dev-fastapi.oneskyit.com",

View File

@@ -1,8 +1,12 @@
{ {
"account_id": "", "account_id": "",
"account_code": "",
"event_id": "", "event_id": "",
"event_code": "",
"event_device_id": "", "event_device_id": "",
"event_device_code": "",
"event_location_id": "", "event_location_id": "",
"event_location_code": "",
"event_session_id": "", "event_session_id": "",
"api_secret_key": "XXXXXX", "api_secret_key": "XXXXXX",

View File

@@ -66,7 +66,7 @@ function createWindow () {
win.loadFile('app/index.html'); win.loadFile('app/index.html');
// Open the DevTools. // Open the DevTools.
// win.webContents.openDevTools(); win.webContents.openDevTools();
// Emitted when the window is closed. // Emitted when the window is closed.
win.on('closed', () => { win.on('closed', () => {

View File

@@ -1,7 +1,7 @@
{ {
"name": "aether_app_native", "name": "aether_app_native",
"productName": "Aether App", "productName": "Aether App: Native",
"version": "3.0.0", "version": "3.1.0",
"description": "One Sky IT's Native Aether App", "description": "One Sky IT's Native Aether App",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
@@ -9,7 +9,7 @@
"start_nogpu": "electron . --disable-gpu", "start_nogpu": "electron . --disable-gpu",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"author": "", "author": "Scott Idem",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"axios": "^0.26.0", "axios": "^0.26.0",