Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
aa727ba
umm starting!
The1stBurb May 15, 2026
4c22349
adding everything in themes.js in
The1stBurb May 15, 2026
26def2c
added wiki/themes.js
The1stBurb May 15, 2026
73c83ef
just a test
The1stBurb May 15, 2026
309bb44
adding the wiki pages
The1stBurb May 15, 2026
148f9ba
adding custom themes to index.js
The1stBurb May 15, 2026
c38d0db
strings added, trying to figure out some stuff
The1stBurb May 15, 2026
590344b
still working on getting it to actually load
The1stBurb May 15, 2026
95d62b5
Fixed the TP ship formulas calling calcPre(getBase(...)) for Aluminum…
The1stBurb May 18, 2026
cad6c63
p_res.js - Fixed a missing function and a missing )
The1stBurb May 18, 2026
4ee41b1
ITS WORKING!!
The1stBurb May 18, 2026
6cc554a
finished up and added all the semi-colons
The1stBurb May 18, 2026
bf9656a
Fixing the Wiki
The1stBurb May 18, 2026
ea2e47b
build it! (cause i forgor to)
The1stBurb May 18, 2026
65dd709
making it route to built version!
The1stBurb May 18, 2026
176f9fb
lol, so not sure when this was last used but had some semicolons.
The1stBurb May 18, 2026
5a3c657
translating to every lang. but im-PL (pig latin)
The1stBurb May 19, 2026
8892afd
fixing one timeCheck
The1stBurb May 20, 2026
91d7b00
(theft from skye/cue3-skye)
The1stBurb May 21, 2026
1104caf
adding error-ness
The1stBurb May 21, 2026
43ea350
(more theft skye/vue3-skye)
The1stBurb May 21, 2026
58286cc
Finished the not fully loaded (NFL) error system
The1stBurb May 22, 2026
2cdfa9c
just workin on things, like a SeasonHunt thing
The1stBurb May 22, 2026
0577e10
mostly working, except actually is broken!
The1stBurb May 22, 2026
48e7201
pushing, to save so i can open the AP version...
The1stBurb May 24, 2026
7511e6f
working on turning the settings tab into an SFC
The1stBurb May 29, 2026
df9b25d
adding some more of skye's work!
The1stBurb May 29, 2026
3258913
help idk what means
The1stBurb May 29, 2026
b12b6d2
Finished updating to the latest of skye's work (there was a lots)
The1stBurb May 29, 2026
7706374
the conversion is done... whether it (functions) works or not... well…
The1stBurb May 29, 2026
98dba14
messing with text stuff
The1stBurb May 29, 2026
3cc0b19
continue the makey sure it works
The1stBurb May 29, 2026
7c90f8c
adding MORE of skye's things (thank you skye)
The1stBurb May 29, 2026
3614a32
checking to see if more skye things, also topBar *should* be good but…
The1stBurb May 29, 2026
ff561e5
fixing an err in the less, but also fighting the text spacing beign w…
The1stBurb May 29, 2026
6441eea
Working on the index tab
The1stBurb Jun 1, 2026
ab0a778
finishing up tab things
The1stBurb Jun 1, 2026
42b4ca2
Fixed the recursive error in Civiliazation tab
The1stBurb Jun 1, 2026
93144cf
more work on index.js
The1stBurb Jun 11, 2026
8224f3b
addig skye's latest work
The1stBurb Jun 13, 2026
f136a46
wokring on index.js, specifically message queue
The1stBurb Jun 13, 2026
dc6c867
Revert "addig skye's latest work"
The1stBurb Jun 13, 2026
a26f479
pusihing changes before i get sidtracked with reworking the message q…
The1stBurb Jun 15, 2026
f1a3cb6
ok so i realized why its (the message queue) the way it is... but wha…
The1stBurb Jun 15, 2026
7216136
done with converting (almost) all of index.js into an SFC!
The1stBurb Jun 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ strings/last-strings.json
node_modules/*
docs
dist
*.map
*.map
silly/*
6 changes: 6 additions & 0 deletions buildEvolve.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
const vue = require("esbuild-plugin-vue3");

require("esbuild")
.build({
logLevel: "info",
entryPoints: ["./src/main.js"],
bundle: true,
minify: true,
outfile: "evolve/main.js",
alias: { vue: "./src/vue-cdn-shim.js" },
define: { "import.meta.env.BASE_URL": '""' },
loader: { ".less": "empty" },
plugins: [vue()],
})
.catch(() => process.exit(1));
8 changes: 7 additions & 1 deletion buildEvolveDebug.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
const vue = require("esbuild-plugin-vue3");

require("esbuild")
.build({
logLevel: "debug",
entryPoints: ["./src/main.js"],
bundle: true,
minify: false,
sourcemap : true,
sourcemap: true,
outfile: "evolve/main.js",
alias: { vue: "./src/vue-cdn-shim.js" },
define: { "import.meta.env.BASE_URL": '""' },
loader: { ".less": "empty" },
plugins: [vue()],
})
.catch(() => process.exit(1));
5 changes: 5 additions & 0 deletions buildWiki.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
const vue = require("esbuild-plugin-vue3");

require("esbuild")
.build({
logLevel: "info",
entryPoints: ["./src/wiki/wiki.js"],
bundle: true,
minify: true,
outfile: "wiki/wiki.js",
alias: { vue: "./src/vue-cdn-shim.js" },
loader: { ".less": "empty" },
plugins: [vue()],
})
.catch(() => process.exit(1));
7 changes: 6 additions & 1 deletion buildWikiDebug.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
const vue = require("esbuild-plugin-vue3");

require("esbuild")
.build({
logLevel: "debug",
entryPoints: ["./src/wiki/wiki.js"],
bundle: true,
minify: false,
sourcemap : true,
sourcemap: true,
outfile: "wiki/wiki.js",
alias: { vue: "./src/vue-cdn-shim.js" },
loader: { ".less": "empty" },
plugins: [vue()],
})
.catch(() => process.exit(1));
Loading