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

@@ -3,7 +3,7 @@ namespace App\Config;
class SiteConfig {
const APP_NAME = 'MIVO';
const APP_VERSION = 'v1.1.1';
const APP_VERSION = 'v1.2.0';
const APP_FULL_NAME = 'MIVO - Mikrotik Voucher';
const CREDIT_NAME = 'MivoDev';
const CREDIT_URL = 'https://github.com/mivodev';
@@ -13,7 +13,7 @@ class SiteConfig {
// Security Keys
// Fetched from .env or fallback to default
public static function getSecretKey() {
return getenv('APP_KEY') ?: 'mikhmonv3remake_secret_key_32bytes';
return getenv('APP_KEY') ?: 'mivo_official_secret_key_32bytes';
}
const IS_DEV = true; // Still useful for code logic not relying on env yet, or can be refactored too.