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

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
+13 -4
View File
@@ -7,19 +7,28 @@
{
"name": "moonwell_launcher",
"request": "launch",
"type": "dart"
"type": "dart",
"toolArgs": [
"--dart-define=MOONWELL_API_BASE_URL=https://moon-well.online"
]
},
{
"name": "moonwell_launcher (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
"flutterMode": "profile",
"toolArgs": [
"--dart-define=MOONWELL_API_BASE_URL=https://moon-well.online"
]
},
{
"name": "moonwell_launcher (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
"flutterMode": "release",
"toolArgs": [
"--dart-define=MOONWELL_API_BASE_URL=https://moon-well.online"
]
}
]
}
}