Private
Public Access
1
0

chg: pkg: add missing .env variable and increase the version number and add missing data from front-end and back-end deps descriptor #4
Some checks failed
Deploy to Production / deploy (push) Failing after 0s

This commit is contained in:
2026-04-15 18:59:52 +02:00
parent 6f3edb41ea
commit 5ee972f003
4 changed files with 65 additions and 51 deletions

View File

@@ -2,11 +2,12 @@ Changelog
========= =========
(unreleased) v2026.2.1 (2026-04-15)
------------ ----------------------
New New
~~~ ~~~
- Add Contact page with email sending behaviour #4. [Lang]
- Add timer for the acceptance of the challenge #4. [Lang] - Add timer for the acceptance of the challenge #4. [Lang]
- Registered users have avatars next to the timer #4. [Lang] - Registered users have avatars next to the timer #4. [Lang]
- Add opportunity to use profile picture. #4. [Lang] - Add opportunity to use profile picture. #4. [Lang]
@@ -19,6 +20,9 @@ New
Changes Changes
~~~~~~~ ~~~~~~~
- Change the shareable battle - add avatars to it - even on the og tags
#4. [Lang]
- Change text #4. [Lang]
- Add donation button #4. [Lang] - Add donation button #4. [Lang]
- Protect the gameplay with recaptcha #4. [Lang] - Protect the gameplay with recaptcha #4. [Lang]
- The waiting dialog is uncloseable until the time is up #4. [Lang] - The waiting dialog is uncloseable until the time is up #4. [Lang]

View File

@@ -11,6 +11,7 @@ services:
SERVER_NAME: ${SERVER_NAME:-:80} SERVER_NAME: ${SERVER_NAME:-:80}
APP_ENV: prod APP_ENV: prod
APP_SECRET: ${APP_SECRET} APP_SECRET: ${APP_SECRET}
APP_CONTACT_MAIL_ADDRESS: ${APP_CONTACT_MAIL_ADDRESS:-7system7@gmail.com
DATABASE_URL: >- DATABASE_URL: >-
postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}?serverVersion=${POSTGRES_VERSION}&charset=utf8 postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}?serverVersion=${POSTGRES_VERSION}&charset=utf8
POSTGRES_URL: db POSTGRES_URL: db

View File

@@ -1,6 +1,14 @@
{ {
"name": "splendid-bear/mineseeker",
"version": "2026.2.1",
"license": "GPL-3.0-or-later",
"author": "https://www.splendidbear.org",
"bugs": "https://source.splendidbear.org",
"description": "This is a minesweeper game that is inspired from MSN Messenger's game.",
"minimum-stability": "dev",
"type": "project", "type": "project",
"license": "proprietary", "prefer-stable": true,
"private": true,
"require": { "require": {
"php": ">=8.5", "php": ">=8.5",
"ext-iconv": "*", "ext-iconv": "*",

View File

@@ -1,50 +1,51 @@
{ {
"name": "mine-seeker", "name": "mine-seeker",
"version": "1.0.0", "version": "2026.2.1",
"description": "Mine Seeker Game by system7", "author": "https://www.splendidbear.org",
"keywords": [ "license": "GPL-3.0-or-later",
"mine", "bugs": "https://source.splendidbear.org",
"seeker", "description": "Mine Seeker Game by system7",
"game", "private": true,
"multiplayer", "keywords": [
"websocket" "mine",
], "seeker",
"author": "Laszlo Lang <system7>", "game",
"license": "UNLICENSED", "multiplayer",
"private": true, "websocket"
"dependencies": { ],
"@emotion/react": "^11.14.0", "dependencies": {
"@emotion/styled": "^11.14.1", "@emotion/react": "^11.14.0",
"@fontsource/changa-one": "^5.2.8", "@emotion/styled": "^11.14.1",
"@fontsource/open-sans": "^5.2.7", "@fontsource/changa-one": "^5.2.8",
"@fontsource/rajdhani": "^5.2.7", "@fontsource/open-sans": "^5.2.7",
"@fortawesome/fontawesome-free": "^7.2.0", "@fontsource/rajdhani": "^5.2.7",
"@mui/material": "^9.0.0", "@fortawesome/fontawesome-free": "^7.2.0",
"@mui/x-charts": "^9.0.1", "@mui/material": "^9.0.0",
"@tanstack/react-query": "^5.0.0", "@mui/x-charts": "^9.0.1",
"howler": "^2.1.2", "@tanstack/react-query": "^5.0.0",
"lodash": "^4.18.1", "howler": "^2.1.2",
"prop-types": "^15.7.2", "lodash": "^4.18.1",
"react": "^19.0.0", "prop-types": "^15.7.2",
"react-dom": "^19.0.0" "react": "^19.0.0",
}, "react-dom": "^19.0.0"
"devDependencies": { },
"@eslint/eslintrc": "^3.3.5", "devDependencies": {
"@eslint/js": "^9.0.0", "@eslint/eslintrc": "^3.3.5",
"@stylistic/eslint-plugin": "^4.0.0", "@eslint/js": "^9.0.0",
"@vitejs/plugin-react": "^6.0.1", "@stylistic/eslint-plugin": "^4.0.0",
"eslint": "^9.0.0", "@vitejs/plugin-react": "^6.0.1",
"eslint-plugin-react": "^7.0.0", "eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^5.0.0", "eslint-plugin-react": "^7.0.0",
"globals": "^15.0.0", "eslint-plugin-react-hooks": "^5.0.0",
"sass": "^1.77.0", "globals": "^15.0.0",
"vite": "^8.0.8", "sass": "^1.77.0",
"vite-plugin-symfony": "^8.2.4" "vite": "^8.0.8",
}, "vite-plugin-symfony": "^8.2.4"
"scripts": { },
"dev": "vite", "scripts": {
"watch": "vite build --watch", "dev": "vite",
"build": "vite build && cp -r node_modules/@fortawesome/fontawesome-free/webfonts public/build/webfonts", "watch": "vite build --watch",
"lint": "eslint assets/js/" "build": "vite build && cp -r node_modules/@fortawesome/fontawesome-free/webfonts public/build/webfonts",
} "lint": "eslint assets/js/"
}
} }