From 09900aa1c2e59a23667b6e2440f7f1d969edd4cc Mon Sep 17 00:00:00 2001
From: Marquis Kurt Requests all permissions located in Returns whether the app is authorized to run any login tasks. Executes and preliminary actions during the boot sequence. Executes any preliminary actions before the app launches.requestPermission(forPermission)
requestAllPermissions()¶requires, one by one.
+applicationShouldLaunchAtLogin()¶
+applicationWillLaunchAtLogin()¶applicationWillLaunch()¶
diff --git a/docs/System/05-bootloader/index.html b/docs/System/05-bootloader/index.html
index a9351d4..6c36878 100644
--- a/docs/System/05-bootloader/index.html
+++ b/docs/System/05-bootloader/index.html
@@ -560,8 +560,8 @@
applicationDidLaunch()¶
The bootloader is responsible for displaying a boot screen while important components are loading. The bootloader is cusomizable with a certain timeout, depending on how fast you want the OS to "load".
$ ASBootloader.boot(timeout=5, expressSetup=True, disclaimer=None)¶$ ASBootloader.boot(timeout=5, expressSetup=True, disclaimer=None, bootView="ASBootloaderView")¶Show the bootloader for a certain amount of time.
Parameters
timeout: The amount of seconds to show the bootloader for.expressSetup: Whether the Setup Assistant should start in Express Mode.disclaimer: Any license agreement or disclaimer that must be displayed during the Setup Assistant.bootView: The name of the Ren'Py screen to display as the GUI for the boot loader.Tip
-Starting with AliceOS Prospect Park, the Setup Assistant is automatically configured to use Express Mode, which skips a lot of the onerous steps in the original process. However, for a more throrough experience, Express Mode can be turned off.
+Starting with AliceOS Prospect Park, the Setup Assistant is automatically configured to use Express Mode, which skips a lot of the onerous steps in the original process. However, for a more thorough experience, Express Mode can be turned off.
In the Bootloader, the Setup Assistant will run if it doesn't detect that any setup was done. This check is done via persistent.AS_SETUP_COMPLETE. The boot loader's boot() method contains parameters to customize the Assistant's modes and any additional disclaimers, if necessary.
In the Bootloader, the Setup Assistant will run if it doesn't detect that any setup was done. This check is done via persistent.AS_COMPLETED_SETUP. The boot loader's boot() method contains parameters to customize the Assistant's modes and any additional disclaimers, if necessary.
If you want to call the Setup Assistant manually, you can use ASSetup.startSetup() to call the Assistant at any time.
startSetup(express=True, disclaimer=None)¶