deploy: update image to latest

This commit is contained in:
Thomas Richter
2026-02-05 19:46:22 +01:00
parent 077e58216c
commit 283c88134a
2 changed files with 8 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "whalehunting-game", "name": "whalehunting-game",
"version": "1.0.0", "version": "1.1.0",
"description": "A Monkey Island-style point-and-click adventure game about 18th century whaling", "description": "A Monkey Island-style point-and-click adventure game about 18th century whaling",
"main": "src/main.js", "main": "src/main.js",
"scripts": { "scripts": {

View File

@@ -82,6 +82,13 @@ export default class IntroScene extends Phaser.Scene {
// Fullscreen button // Fullscreen button
createFullscreenButton(this); createFullscreenButton(this);
// Version display
this.add.text(790, 590, 'v1.1.0', {
fontSize: fontSize(12),
fill: '#ffffff',
alpha: 0.5
}).setOrigin(1, 1);
} }
drawWaves() { drawWaves() {