new & opt.

- new: support suspend and WOL #172
- opt.: `execWithPwd` when cancel
- opt.: extentions
This commit is contained in:
lollipopkit
2023-09-25 18:51:14 +08:00
parent df84aeb8b2
commit 4d06a52e99
45 changed files with 251 additions and 176 deletions

View File

@@ -92,8 +92,8 @@ Future<void> initApp() async {
}
void _setupProviders() {
Providers.snippet.load();
Providers.key.load();
Pros.snippet.load();
Pros.key.load();
}
Future<void> _initHive() async {
@@ -109,7 +109,7 @@ Future<void> _initHive() async {
void _setupLogger() {
Logger.root.level = Level.ALL;
Logger.root.onRecord.listen((record) {
Providers.debug.addLog(record);
Pros.debug.addLog(record);
// ignore: avoid_print
print(record);
});