From 4b994d6cfb80f57bda38df13960f6de637ef0d74 Mon Sep 17 00:00:00 2001 From: Paolo Brasolin <paolo.brasolin@gmail.com> Date: Tue, 19 Apr 2022 19:49:00 +0200 Subject: [PATCH] feat: finish renaming stuff, this time for real --- backend/package.json | 2 +- backend/src/index.ts | 4 ++-- backend/templates/dashboard.ejs | 4 ++-- frontend/package.json | 2 +- frontend/src/index.html | 2 +- frontend/src/js/welcome_scene.ts | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/backend/package.json b/backend/package.json index 696aeab..59c043c 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,7 +1,7 @@ { "name": "oetzit-backend", "version": "0.7.0", - "description": "Ötzi game backend.", + "description": "Ötzit! backend.", "main": "src/index.js", "scripts": { "build": "tsc", diff --git a/backend/src/index.ts b/backend/src/index.ts index f1bd02f..181bf53 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -25,8 +25,8 @@ server.register(fastifySwagger, { routePrefix: "/api/doc", swagger: { info: { - title: "Ötzi", - description: "Ötzi app backend API", + title: "Ötzit!", + description: "Ötzit! backend API", version: "0.1.0", }, host: "localhost:8080", diff --git a/backend/templates/dashboard.ejs b/backend/templates/dashboard.ejs index 44f8ec2..f9c7e01 100644 --- a/backend/templates/dashboard.ejs +++ b/backend/templates/dashboard.ejs @@ -6,7 +6,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" href="./public/favicon.png"> - <title>Ötzi Game Dashboard</title> + <title>Ötzit! dashboard</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.1.3/css/bootstrap.min.css" integrity="sha512-GQGU0fMMi238uA+a/bdWJfpUGKUkBdgfFdgBm72SUQ6BeyWjoY/ton0tEjH+OSH9iP4Dfh+7HM0I9f5eR0L/4w==" @@ -27,7 +27,7 @@ <body> <header class="navbar navbar-dark bg-dark p-1"> - <a class="navbar-brand px-2" href="#">Ötzi Game Dashboard</a> + <a class="navbar-brand px-2" href="#">Ötzit! dashboard</a> <span class="text-light px-2"> <%= appVersion %> </span> diff --git a/frontend/package.json b/frontend/package.json index 8ed39dc..a8874d5 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "oetzit-backend", "version": "0.7.0", - "description": "Ötzi game frontend.", + "description": "Ötzit! frontend.", "license": "MIT", "scripts": { "serve": "parcel serve src/index.html", diff --git a/frontend/src/index.html b/frontend/src/index.html index 5b3a077..c70255d 100644 --- a/frontend/src/index.html +++ b/frontend/src/index.html @@ -7,7 +7,7 @@ <link href="css/main.scss" rel="stylesheet"> <script type="module" src="js/rollbar.ts"></script> <script type="module" src="js/main.ts"></script> - <title>Ötzi App</title> + <title>Ötzit!</title> </head> <body> diff --git a/frontend/src/js/welcome_scene.ts b/frontend/src/js/welcome_scene.ts index fc84334..a67d73f 100644 --- a/frontend/src/js/welcome_scene.ts +++ b/frontend/src/js/welcome_scene.ts @@ -35,7 +35,7 @@ export default class WelcomeScene extends Phaser.Scene { } drawTitle() { - const text = "ÖTZI\nGAME"; + const text = "ÖTZIT!"; const title = this.add.text(0, 0, text, { fontFamily: "Courier", fontSize: "64px", -- GitLab