- Listen to audio from the virtual machines on Vectras VM without Termux.
- Added a separate Use local time option for each virtual machine.
- Removed Boot from, Use UEFI and Use local time from the general Qemu settings.
- Automatically set a screenshot as the virtual machine thumbnail if the virtual machine doesn't have a thumbnail set.
- Fixed a bug where update checks weren't working.
- Added automatic cleanup of temporary files during setup.
- Added a separate folder for Quick Run and automatically cleaned it.
This commit is contained in:
An Bui 2026-04-20 17:46:22 +07:00
parent bafaa4d57a
commit febc93453c
23 changed files with 408 additions and 77 deletions

View file

@ -43,6 +43,7 @@ public class SplashActivity extends AppCompatActivity {
setupFolders();
MainSettingsManager.setOrientationSetting(this, 1);
setupFiles();
cleanUp();
runOnUiThread(this::finishSplash);
}).start();
}
@ -113,6 +114,10 @@ public class SplashActivity extends AppCompatActivity {
}
}
private void cleanUp() {
FileUtils.delete(AppConfig.vmFolder + "QuickRun");
}
private void finishSplash() {
if (MainSettingsManager.getShowLastCrashLog(this)) {
startActivity(new Intent(this, LastCrashActivity.class));