File/folder restructuring

This commit is contained in:
CakeLancelot 2021-02-07 18:04:44 -06:00
parent 6adf72c608
commit 3f6b2e3e58
47 changed files with 2 additions and 7 deletions

View File

Before

Width:  |  Height:  |  Size: 692 KiB

After

Width:  |  Height:  |  Size: 692 KiB

View File

Before

Width:  |  Height:  |  Size: 141 KiB

After

Width:  |  Height:  |  Size: 141 KiB

View File

Before

Width:  |  Height:  |  Size: 829 KiB

After

Width:  |  Height:  |  Size: 829 KiB

View File

Before

Width:  |  Height:  |  Size: 123 B

After

Width:  |  Height:  |  Size: 123 B

View File

Before

Width:  |  Height:  |  Size: 123 B

After

Width:  |  Height:  |  Size: 123 B

View File

Before

Width:  |  Height:  |  Size: 123 B

After

Width:  |  Height:  |  Size: 123 B

View File

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 83 KiB

View File

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 72 KiB

View File

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

Before

Width:  |  Height:  |  Size: 176 B

After

Width:  |  Height:  |  Size: 176 B

View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

Before

Width:  |  Height:  |  Size: 722 KiB

After

Width:  |  Height:  |  Size: 722 KiB

View File

@ -1 +0,0 @@
http://ht.cdn.turner.com/ff/big/beta-20100104/

View File

@ -1 +0,0 @@
assets/img/welcome.png

View File

@ -1 +0,0 @@
144.202.52.9:23000

View File

@ -1 +0,0 @@
http://api.dexlabs.systems/getranks

View File

@ -1 +0,0 @@
assets/img/welcome.png

View File

@ -17,7 +17,7 @@ function copyFile(src, dst) {
function initialSetup() {
// Display a small window to inform the user that the app is working
setupWindow = new BrowserWindow({width: 275, height: 450, resizable: false, center:true, frame:false});
setupWindow.loadUrl('file://' + __dirname + '/files/initialsetup.html');
setupWindow.loadUrl('file://' + __dirname + '/initialsetup.html');
// Exec installUnity.bat and wait for it to finish.
var child = require('child_process').spawn('cmd.exe', ['/c', 'utils\\installUnity.bat']);
child.on('exit', function() {
@ -83,7 +83,7 @@ app.on('ready', function() {
function showMainWindow() {
// and load the index.html of the app.
mainWindow.loadUrl('file://' + __dirname + '/files/index.html');
mainWindow.loadUrl('file://' + __dirname + '/index.html');
// Reduces white flash when opening the program
// Eliminating it entirely requires a newer Electron ver :(