chore: bump version to v1.2.0, cleanup repo, and update docs refs

This commit is contained in:
dyzulk
2026-01-18 23:29:04 +07:00
parent 6c92985707
commit 18a525e438
36 changed files with 1362 additions and 2777 deletions

View File

@@ -44,7 +44,7 @@ class InstallController extends Controller {
Migrations::up();
// 2. Generate Key if default
if (SiteConfig::getSecretKey() === 'mikhmonv3remake_secret_key_32bytes') {
if (SiteConfig::getSecretKey() === 'mivo_official_secret_key_32bytes') {
$this->generateKey();
}
@@ -90,11 +90,11 @@ class InstallController extends Controller {
$envPath = ROOT . '/.env';
if (!file_exists($envPath)) {
// Check if SiteConfig has a manual override (legacy)
return SiteConfig::getSecretKey() !== 'mikhmonv3remake_secret_key_32bytes';
return SiteConfig::getSecretKey() !== 'mivo_official_secret_key_32bytes';
}
$key = getenv('APP_KEY');
$keyChanged = ($key && $key !== 'mikhmonv3remake_secret_key_32bytes');
$keyChanged = ($key && $key !== 'mivo_official_secret_key_32bytes');
try {
$db = Database::getInstance();