File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed
DMMGamePlayerFastLauncher/static Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 88
99
1010class Env (Dump ):
11- VERSION = "v5.2.2 "
11+ VERSION = "v5.2.3 "
1212 RELEASE_VERSION = requests .get (UrlConfig .RELEASE_API ).json ().get ("tag_name" , VERSION )
1313
1414 DEVELOP : bool = os .environ .get ("ENV" ) == "DEVELOP"
Original file line number Diff line number Diff line change 3333 <UseUnifiedSchedulingEngine >true</UseUnifiedSchedulingEngine >
3434 <WakeToRun >false</WakeToRun >
3535 <ExecutionTimeLimit >PT0S</ExecutionTimeLimit >
36- <Priority >7 </Priority >
36+ <Priority >6 </Priority >
3737 </Settings >
3838 <Actions Context =" Author" >
3939 <Exec >
4242 <WorkingDirectory >{{WORKING_DIRECTORY}}</WorkingDirectory >
4343 </Exec >
4444 </Actions >
45- </Task >
45+ </Task >
Original file line number Diff line number Diff line change 22; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33
44#define MyAppName " DMMGamePlayerFastLauncher"
5- #define MyAppVersion " 5.2.2 "
5+ #define MyAppVersion " 5.2.3 "
66#define MyAppPublisher " yuki"
77#define MyAppURL " https://github.com/fa0311/DMMGamePlayerFastLauncher"
88#define MyAppExeName " DMMGamePlayerFastLauncher.exe"
Original file line number Diff line number Diff line change 1- if (! ([Security.Principal.WindowsPrincipal ][Security.Principal.WindowsIdentity ]::GetCurrent()).IsInRole(" Administrators" )) { Start-Process powershell.exe " -File `" $PSCommandPath `" -NoNewWindow -Wait" - Verb RunAs; exit }
2- Get-ScheduledTask | where TaskPath -eq " \Microsoft\Windows\DMMGamePlayerFastLauncher\" | Unregister-ScheduledTask - Confirm:$false
1+ if (! ([Security.Principal.WindowsPrincipal ][Security.Principal.WindowsIdentity ]::GetCurrent()).IsInRole(" Administrators" )) {
2+ Start-Process powershell.exe " -File `" $PSCommandPath `" -NoNewWindow -Wait" - WorkingDirectory $PSScriptRoot - Verb RunAs;
3+ exit ;
4+ }
5+
6+ Get-ScheduledTask | Where-Object TaskPath -eq " \Microsoft\Windows\DMMGamePlayerFastLauncher\" | Unregister-ScheduledTask - Confirm:$false
7+ $schtasks = Join-Path - Path (Split-Path - Path ($PSScriptRoot ) - Parent) - ChildPath " data\schtasks"
8+ Get-ChildItem - Path $schtasks | ForEach-Object { schtasks.exe / create / xml $_.FullName / tn " \Microsoft\Windows\DMMGamePlayerFastLauncher\$ ( $_.Name -replace ' \.xml$' ) " }
9+ Read-Host - Prompt " Press Enter to exit"
You can’t perform that action at this time.
0 commit comments