mirror of
https://github.com/4sval/FModel.git
synced 2026-03-21 17:24:26 -05:00
FModel v4.4.3.5
This commit is contained in:
parent
3721d7cd17
commit
0160abf630
|
|
@ -1 +1 @@
|
|||
Subproject commit 53dcd66fc069ad574f0ecf9f722f60f3c712a6d2
|
||||
Subproject commit e581c54af3b9c6f5fea7947a990057be0b636d56
|
||||
|
|
@ -54,8 +54,6 @@ public enum EDiscordRpc
|
|||
|
||||
public enum ELoadingMode
|
||||
{
|
||||
[Description("Single")]
|
||||
Single,
|
||||
[Description("Multiple")]
|
||||
Multiple,
|
||||
[Description("All")]
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@
|
|||
<TargetFramework>net8.0-windows</TargetFramework>
|
||||
<UseWPF>true</UseWPF>
|
||||
<ApplicationIcon>FModel.ico</ApplicationIcon>
|
||||
<Version>4.4.3.4</Version>
|
||||
<AssemblyVersion>4.4.3.4</AssemblyVersion>
|
||||
<FileVersion>4.4.3.4</FileVersion>
|
||||
<Version>4.4.3.5</Version>
|
||||
<AssemblyVersion>4.4.3.5</AssemblyVersion>
|
||||
<FileVersion>4.4.3.5</FileVersion>
|
||||
<IsPackable>false</IsPackable>
|
||||
<IsPublishable>true</IsPublishable>
|
||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
|
|
|
|||
|
|
@ -463,7 +463,7 @@ public class CUE4ParseViewModel : ViewModel
|
|||
ChunkBaseUri = new Uri("https://download.epicgames.com/ias/fortnite/", UriKind.Absolute),
|
||||
ChunkCacheDirectory = Directory.CreateDirectory(Path.Combine(UserSettings.Default.OutputDirectory, ".data")),
|
||||
Authorization = new AuthenticationHeaderValue("Bearer", UserSettings.Default.LastAuthResponse.AccessToken),
|
||||
Timeout = TimeSpan.FromSeconds(15)
|
||||
Timeout = TimeSpan.FromSeconds(30)
|
||||
});
|
||||
var onDemandCount = await Provider.MountAsync();
|
||||
FLogger.Append(ELog.Information, () =>
|
||||
|
|
|
|||
|
|
@ -61,7 +61,6 @@ public class LoadCommand : ViewModelCommand<LoadingModesViewModel>
|
|||
// filter what to show
|
||||
switch (UserSettings.Default.LoadingMode)
|
||||
{
|
||||
case ELoadingMode.Single:
|
||||
case ELoadingMode.Multiple:
|
||||
{
|
||||
var l = (IList) parameter;
|
||||
|
|
|
|||
|
|
@ -223,10 +223,9 @@ public partial class AvalonEditor
|
|||
|
||||
private void OnTabClose(object sender, EventArgs eventArgs)
|
||||
{
|
||||
if (eventArgs is not TabControlViewModel.TabEventArgs e || e.TabToRemove.Document == null)
|
||||
if (eventArgs is not TabControlViewModel.TabEventArgs e || e.TabToRemove.Document?.FileName is not { } fileName)
|
||||
return;
|
||||
|
||||
var fileName = e.TabToRemove.Document.FileName;
|
||||
if (_savedCarets.ContainsKey(fileName))
|
||||
_savedCarets.Remove(fileName);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -183,9 +183,6 @@
|
|||
</Setter.Value>
|
||||
</Setter>
|
||||
</DataTrigger>
|
||||
<DataTrigger Binding="{Binding LoadingMode, Source={x:Static settings:UserSettings.Default}}" Value="{x:Static local:ELoadingMode.Single}">
|
||||
<Setter Property="SelectionMode" Value="Single" />
|
||||
</DataTrigger>
|
||||
<DataTrigger Binding="{Binding LoadingMode, Source={x:Static settings:UserSettings.Default}}" Value="{x:Static local:ELoadingMode.Multiple}">
|
||||
<Setter Property="SelectionMode" Value="Extended" />
|
||||
</DataTrigger>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user