This commit is contained in:
2025-12-10 21:54:43 +01:00
parent 0f772456ce
commit 375c549c0b
5 changed files with 56 additions and 4 deletions

View File

@@ -1,4 +1,12 @@
<?php
$mainversion = 1;
$subversion = 0;
$patchversion = 1;
$patchversion = 1;
$patchFile = __DIR__ . '/versionsnummer.txt';
if (is_file($patchFile)) {
$rawPatch = trim((string)file_get_contents($patchFile));
if ($rawPatch !== '' && ctype_digit($rawPatch)) {
$patchversion = (int)$rawPatch;
}
}

View File

@@ -0,0 +1 @@
1

View File

@@ -1,4 +1,12 @@
<?php
$mainversion = 1;
$subversion = 0;
$patchversion = 0;
$patchversion = 1;
$patchFile = __DIR__ . '/versionsnummer.txt';
if (is_file($patchFile)) {
$rawPatch = trim((string)file_get_contents($patchFile));
if ($rawPatch !== '' && ctype_digit($rawPatch)) {
$patchversion = (int)$rawPatch;
}
}

View File

@@ -0,0 +1 @@
2