mirror of
https://github.com/xoureldeen/Vectras-VM-Android.git
synced 2026-05-19 16:42:13 +00:00
3.9.8
- 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:
parent
bafaa4d57a
commit
febc93453c
23 changed files with 408 additions and 77 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue