diff --git a/README.md b/README.md index 33ac6e8..81fbe90 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# the-modding-tree-x +# Profectus ## Project setup ``` diff --git a/package.json b/package.json index ef8f886..e3aacfb 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "the-modding-tree-x", + "name": "profectus", "version": "0.1.0", "private": true, "scripts": { diff --git a/public/Logo.png b/public/Logo.png new file mode 100644 index 0000000..53973a7 Binary files /dev/null and b/public/Logo.png differ diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png new file mode 100644 index 0000000..00eaafd Binary files /dev/null and b/public/android-chrome-192x192.png differ diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png new file mode 100644 index 0000000..1ad85e8 Binary files /dev/null and b/public/android-chrome-512x512.png differ diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..e570640 Binary files /dev/null and b/public/apple-touch-icon.png differ diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png new file mode 100644 index 0000000..9d30dea Binary files /dev/null and b/public/favicon-16x16.png differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png new file mode 100644 index 0000000..c2142d0 Binary files /dev/null and b/public/favicon-32x32.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..028a67e Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/index.html b/public/index.html index af732bd..47e896d 100644 --- a/public/index.html +++ b/public/index.html @@ -11,6 +11,11 @@ + + + + + <%= htmlWebpackPlugin.options.title %> diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 0000000..87d8130 --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1 @@ +{"name":"Profectus","short_name":"Profectus","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#2E3440","background_color":"#2E3440","display":"standalone"} \ No newline at end of file diff --git a/src/components/system/Info.vue b/src/components/system/Info.vue index 72f6e01..e72929a 100644 --- a/src/components/system/Info.vue +++ b/src/components/system/Info.vue @@ -13,8 +13,7 @@
By {{ author }}
- Made in TMT-X, by thepaperpilot with inspiration from Acameada, Jacorb, and - Aarex + Made in Profectus, by thepaperpilot with inspiration from Acameada and Jacorb

@@ -41,12 +40,6 @@ The Modding Tree
-
- - discord - Jacorb's Games - -

Time Played: {{ timePlayed }}
@@ -61,6 +54,7 @@ import modInfo from "@/data/modInfo.json"; import player from "@/game/player"; import { formatTime } from "@/util/bignum"; import { computed, ref, toRefs, unref } from "vue"; +import Profectus from "./Profectus.vue"; const { title, logo, author, discordName, discordLink, versionNumber, versionTitle } = modInfo; diff --git a/src/components/system/Nav.vue b/src/components/system/Nav.vue index a92017c..333f88d 100644 --- a/src/components/system/Nav.vue +++ b/src/components/system/Nav.vue @@ -22,9 +22,6 @@
  • The Modding Tree
  • -
  • - Jacorb's Games -
  • @@ -92,9 +89,6 @@
  • The Modding Tree
  • -
  • - Jacorb's Games -
  • diff --git a/src/components/system/Profectus.vue b/src/components/system/Profectus.vue new file mode 100644 index 0000000..3a7700b --- /dev/null +++ b/src/components/system/Profectus.vue @@ -0,0 +1,195 @@ + + + diff --git a/src/data/mod.tsx b/src/data/mod.tsx index 41608e4..a96845f 100644 --- a/src/data/mod.tsx +++ b/src/data/mod.tsx @@ -1,4 +1,5 @@ import Modal from "@/components/system/Modal.vue"; +import Profectus from "@/components/system/Profectus.vue"; import Spacer from "@/components/system/Spacer.vue"; import { jsx } from "@/features/feature"; import { createResource, trackBest, trackOOMPS, trackTotal } from "@/features/resource"; @@ -89,6 +90,7 @@ export const main = createLayer(() => { }} /> {render(tree)} + )), points, diff --git a/src/data/modInfo.json b/src/data/modInfo.json index 3d5d1fc..7d67019 100644 --- a/src/data/modInfo.json +++ b/src/data/modInfo.json @@ -1,6 +1,6 @@ { - "title": "The Modding Tree X", - "id": "tmt-x", + "title": "Profectus", + "id": "profectus-demo", "author": "thepaperpilot", "discordName": "The Paper Pilot Community", "discordLink": "https://discord.gg/WzejVAx", @@ -13,7 +13,7 @@ "defaultDecimalsShown": 2, "useHeader": true, "banner": null, - "logo": null, + "logo": "Logo.png", "initialTabs": [ "main", "c" ], "maxTickLength": 3600, diff --git a/src/main.ts b/src/main.ts index ff44a6f..4119aff 100644 --- a/src/main.ts +++ b/src/main.ts @@ -34,7 +34,7 @@ declare global { requestAnimationFrame(async () => { console.log( - "%cMade in TMT-X%c\nLearn more at www.moddingtree.com", + "%cMade in Profectus%c\nLearn more at www.moddingtree.com", "font-weight: bold; font-size: 24px; color: #A3BE8C; background: #2E3440; padding: 4px 8px; border-radius: 8px;", "padding: 4px;" );