diff --git a/Autohotkey/FlashpointCampaigns-V2.ahk b/Autohotkey/FlashpointCampaigns-V2.ahk index 4afbf5b..571f84e 100755 --- a/Autohotkey/FlashpointCampaigns-V2.ahk +++ b/Autohotkey/FlashpointCampaigns-V2.ahk @@ -42,7 +42,7 @@ e::Send("{F6}") ; E - Subunit Inspector |::Send("{F7}") ; | - Log +s::Send("^k") ; Shift+S - SOP Manager r::Send("^r") ; R - Rotate Stack -f::Send("^l") ; F - Line-Of-Sight +f::Send("^l") ; F - Line Of Sight g::Send("^o") ; G - Spottable From h::Send("^p") ; H - SOP Ranges t::Send("^y") ; T - Enemies Spotted @@ -50,6 +50,9 @@ y::Send("^d") ; Y - Range Rings v::Send("^u") ; V - Hide Units ;e::Send("{Click,right}") ; Right-click +; Ctrl+Shift+S - Save game +^+s::Send("{Alt Down},g,a,p,{Alt Up}") + ; Zoom controls z::Send("{WheelUp}") ; Zoom In x::Send("{WheelDown}") ; Zoom Out diff --git a/Batch/Remove-AppxProvisionedPackage.ps1 b/Batch/AppX-ProvisionedPackage-remove.ps1 similarity index 100% rename from Batch/Remove-AppxProvisionedPackage.ps1 rename to Batch/AppX-ProvisionedPackage-remove.ps1 diff --git a/Batch/AppX.txt b/Batch/AppX.txt new file mode 100755 index 0000000..9a0ec99 --- /dev/null +++ b/Batch/AppX.txt @@ -0,0 +1,15 @@ +POWERSHELL +========== + +Get-AppxPackage -AllUsers +Get-AppxPackage -Allusers * | Select Name, PackageFullName + +Get-AppxProvisionedPackage -online | select packagename + +Get-AppxPackage *zunemusic* | Remove-AppxPackage + +Get-AppxProvisionedpackage –online | where-object {$_.packagename –notlike “*store*”} | Remove-AppxProvisionedPackage -online + +Get-AppxProvisionedpackage –online | where-object {$_.packagename –like “*xbox*”} | Remove-AppxProvisionedPackage -online + +Remove-AppxProvisionedPackage -online -packagename diff --git a/Batch/DISM-AppXPackages.txt b/Batch/DISM.txt similarity index 58% rename from Batch/DISM-AppXPackages.txt rename to Batch/DISM.txt index b659180..764eba8 100755 --- a/Batch/DISM-AppXPackages.txt +++ b/Batch/DISM.txt @@ -23,19 +23,3 @@ DISM.exe /online /Get-CapabilityInfo /CapabilityName: # ProvisionedAppxPackages DISM.exe /Online /Get-ProvisionedAppxPackages DISM.exe /Online /Remove-ProvisionedAppxPackage /PackageName:name - -POWERSHELL -========== - -Get-AppxPackage -AllUsers -Get-AppxPackage -Allusers * | Select Name, PackageFullName - -Get-AppxPackage *zunemusic* | Remove-AppxPackage - -Get-AppxProvisionedPackage -online | select packagename - -Remove-AppxProvisionedPackage -online -packagename - -Get-AppxProvisionedpackage –online | where-object {$_.packagename –notlike “*store*”} | Remove-AppxProvisionedPackage -online - -Get-AppxProvisionedpackage –online | where-object {$_.packagename –like “*xbox*”} | Remove-AppxProvisionedPackage -online diff --git a/Batch/vid2ani.cmd b/Batch/vid2ani.cmd index b6b9e9a..9d0c5fb 100755 --- a/Batch/vid2ani.cmd +++ b/Batch/vid2ani.cmd @@ -59,9 +59,9 @@ ECHO: ECHO Arguments: ECHO -t Output filetype: gif, png, webp. ECHO The default is gif. -ECHO -o Output file. +ECHO -o Output file. ECHO The default is the same name as the input video. -ECHO -r Scale or size. +ECHO -r Scale or size. ECHO Width of the animation in pixels. ECHO The default is the same scale as the original video. ECHO -f Framerate in frames per second. @@ -79,9 +79,9 @@ ECHO (Default for WebP is lossless) ECHO -c The maximum amount of colors useable per palette. ECHO (Optional value up to 256) ECHO This option isn't used by default. -ECHO -s Start of the animation in HH:MM:SS.MS format. +ECHO -s Start of the animation (HH:MM:SS.MS) ECHO (Optional) -ECHO -e Duration of the animation in seconds. +ECHO -e Duration of the animation (HH:MM:SS.MS) ECHO (Optional) ECHO -k Enables error diffusion. ECHO (Optional) @@ -108,14 +108,14 @@ ECHO About Bayerscale: ECHO When bayer dithering is selected, the Bayer Scale option defines the ECHO scale of the pattern (how much the crosshatch pattern is visible). ECHO A low value means more visible pattern for less banding, a higher value -ECHO means less visible pattern at the cost of more banding. +ECHO means less visible pattern at the cost of more banding. ECHO The option must be an integer value in the range [0,5]. ECHO The Default is 2. Bayer Scale is optional. ECHO: ECHO People who made this project come to fruition: -ECHO ubitux, Nabi KaramAliZadeh, and the very kind and patient people in the +ECHO ubitux, Nabi KaramAliZadeh, and the very kind and patient people in the ECHO Batch Discord Server. Without these people's contributions, this script -ECHO would not be possible. Thank you all for your contributions and +ECHO would not be possible. Thank you all for your contributions and ECHO assistance^^! GOTO :EOF