Compare commits
4 Commits
v2026.2.8-
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 199bb7e525 | |||
| 5daaf71ae7 | |||
| 0aeec47996 | |||
| 3d67b8f2d9 |
14
CHANGELOG.md
14
CHANGELOG.md
@@ -1,6 +1,20 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
|
||||||
|
## v2026.2.9-0 (2026-04-23)
|
||||||
|
|
||||||
|
### New
|
||||||
|
|
||||||
|
* Add tracking code for the app #10. [Lang]
|
||||||
|
|
||||||
|
|
||||||
|
## v2026.2.8-3 (2026-04-22)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
* The error message cannot be seen during avatar changing #10. [Lang]
|
||||||
|
|
||||||
|
|
||||||
## v2026.2.8-2 (2026-04-21)
|
## v2026.2.8-2 (2026-04-21)
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
|
|||||||
@@ -212,7 +212,7 @@ const useServerCommunication = (gameAssoc, gameInherited, opponentName, isEnvDev
|
|||||||
*/
|
*/
|
||||||
if (!endRef.current && (!isTrueRestoredRef.current || 0 !== opponentLastSeenRef.current)) {
|
if (!endRef.current && (!isTrueRestoredRef.current || 0 !== opponentLastSeenRef.current)) {
|
||||||
hideOverlay();
|
hideOverlay();
|
||||||
sounds.current.starting.play();
|
sounds.current.starting.play();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,25 @@
|
|||||||
|
|
||||||
MineSeeker-specific testing setup and workflows. For general PHPUnit/Symfony testing, see [Symfony Testing Docs](https://symfony.com/doc/current/testing.html).
|
MineSeeker-specific testing setup and workflows. For general PHPUnit/Symfony testing, see [Symfony Testing Docs](https://symfony.com/doc/current/testing.html).
|
||||||
|
|
||||||
|
## Example of the current tests
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ bin/phpunit (master->origin/master|✚1…2⚑1)
|
||||||
|
PHPUnit 13.1.7 by Sebastian Bergmann and contributors.
|
||||||
|
|
||||||
|
Runtime: PHP 8.5.5
|
||||||
|
Configuration: /var/www/splendid/Mine/phpunit.dist.xml
|
||||||
|
|
||||||
|
................................................................. 65 / 71 ( 91%)
|
||||||
|
...... 71 / 71 (100%)
|
||||||
|
|
||||||
|
Time: 00:07.319, Memory: 86.50 MB
|
||||||
|
|
||||||
|
OK (71 tests, 227 assertions)
|
||||||
|
|
||||||
|
Faker seed used: 918823
|
||||||
|
```
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@@ -143,9 +162,9 @@ class MyControllerTest extends WebTestCase
|
|||||||
{
|
{
|
||||||
$user = UserFactory::createOne();
|
$user = UserFactory::createOne();
|
||||||
$client = static::createClient();
|
$client = static::createClient();
|
||||||
|
|
||||||
$client->request('GET', '/profile');
|
$client->request('GET', '/profile');
|
||||||
|
|
||||||
self::assertResponseRedirects('/login');
|
self::assertResponseRedirects('/login');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,6 +28,20 @@
|
|||||||
<link rel="icon" href="{{ asset('/images/favicon/favicon.ico') }}" type="image/x-icon">
|
<link rel="icon" href="{{ asset('/images/favicon/favicon.ico') }}" type="image/x-icon">
|
||||||
{% block metas %}{% endblock %}
|
{% block metas %}{% endblock %}
|
||||||
<title>MineSeeker{% block title %}{% endblock %}</title>
|
<title>MineSeeker{% block title %}{% endblock %}</title>
|
||||||
|
<script
|
||||||
|
defer src="https://umami.splendidbear.org/script.js"
|
||||||
|
data-website-id="825e02a9-d675-4cbd-9e68-72b98de2e4e9"
|
||||||
|
>
|
||||||
|
</script>
|
||||||
|
<script
|
||||||
|
defer
|
||||||
|
src="https://umami.splendidbear.org/recorder.js"
|
||||||
|
data-website-id="825e02a9-d675-4cbd-9e68-72b98de2e4e9"
|
||||||
|
data-sample-rate="0.15"
|
||||||
|
data-mask-level="moderate"
|
||||||
|
data-max-duration="300000"
|
||||||
|
>
|
||||||
|
</script>
|
||||||
{% block stylesheets %}{% endblock %}
|
{% block stylesheets %}{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user