mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge branch 'main' into fix_writing_metas_task
This commit is contained in:
commit
bdec4d2941
@ -1,8 +1,9 @@
|
|||||||
### Changelog
|
### Changelog
|
||||||
|
|
||||||
#### Version - 3.0.4.1 - TBD
|
#### Version - 3.0.4.1 - TBD
|
||||||
|
|
||||||
* Fix recursive writing of meta files for meta files
|
* Fix recursive writing of meta files for meta files
|
||||||
|
* Improved Admin Check
|
||||||
|
* Improved naming of installation fields to clear up some confusion.
|
||||||
|
|
||||||
#### Version - 3.0.4.0 - 11/12/2022
|
#### Version - 3.0.4.0 - 11/12/2022
|
||||||
* Upgrade GameFinder to 2.2.1
|
* Upgrade GameFinder to 2.2.1
|
||||||
|
@ -99,8 +99,12 @@ namespace Wabbajack
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
var identity = WindowsIdentity.GetCurrent();
|
var identity = WindowsIdentity.GetCurrent();
|
||||||
|
var owner = identity.Owner;
|
||||||
|
if (owner is not null) return owner.IsWellKnown(WellKnownSidType.BuiltinAdministratorsSid);
|
||||||
|
|
||||||
var principle = new WindowsPrincipal(identity);
|
var principle = new WindowsPrincipal(identity);
|
||||||
return principle.IsInRole(WindowsBuiltInRole.Administrator);
|
return principle.IsInRole(WindowsBuiltInRole.Administrator);
|
||||||
|
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception)
|
||||||
{
|
{
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
HorizontalAlignment="Right"
|
HorizontalAlignment="Right"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
FontSize="14"
|
FontSize="14"
|
||||||
Text="Installation Location"
|
Text="Modlist Installation Location"
|
||||||
TextAlignment="Center" />
|
TextAlignment="Center" />
|
||||||
<local:FilePicker Grid.Row="0" Grid.Column="2"
|
<local:FilePicker Grid.Row="0" Grid.Column="2"
|
||||||
Height="30"
|
Height="30"
|
||||||
@ -35,7 +35,7 @@
|
|||||||
HorizontalAlignment="Right"
|
HorizontalAlignment="Right"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
FontSize="14"
|
FontSize="14"
|
||||||
Text="Download Location"
|
Text="Resource Download Location"
|
||||||
TextAlignment="Center" />
|
TextAlignment="Center" />
|
||||||
<local:FilePicker Grid.Row="1" Grid.Column="2"
|
<local:FilePicker Grid.Row="1" Grid.Column="2"
|
||||||
Height="30"
|
Height="30"
|
||||||
|
Loading…
Reference in New Issue
Block a user