базовая логика скачивания обновлений

This commit is contained in:
2026-03-22 01:04:16 +04:00
parent 4b1cecbefd
commit 73d8798bb9
39 changed files with 2372 additions and 1017 deletions
+12 -8
View File
@@ -1,10 +1,14 @@
final class Config {
static const host = 'storage.yandexcloud.net';
static const bucketName = 'warcraft-client';
static const id = 'ajeoijp637jj3527jd96';
static const serviceAccountId = 'ajerr0qmscj6eof68buc';
static const createdAt = "2025-08-24T12:08:22.166354325Z";
static const keyId = 'YCAJEwIWaVVRCAx2YM2XMqcCS';
static const secret = '';
static const objectName = 'World of Warcraft.zip';
static const launcherApiBaseUrl = String.fromEnvironment(
'MOONWELL_API_BASE_URL',
);
static const gameExecutableName = 'Wow.exe';
static const cacheDirectoryName = 'Cache';
static const ignoredVerificationDirectories = <String>{
'cache',
'errors',
'logs',
'screenshots',
'wtf',
};
}