Browse Source

moar fixes & chagenlog

pull/438/head^2
JT 10 months ago
parent
commit
c663482177
  1. 2
      CHANGELOG.md
  2. 2
      StabilityMatrix.Avalonia/App.axaml.cs
  3. 2
      StabilityMatrix.Avalonia/Helpers/UnixPrerequisiteHelper.cs
  4. 2
      StabilityMatrix.Avalonia/ViewModels/PackageManager/PackageInstallDetailViewModel.cs

2
CHANGELOG.md

@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
### Fixed
- Fixed model links not working in RuinedFooocus for new installations
- Fixed incorrect nodejs download link on Linux (thanks to slogonomo for the fix)
- Fixed failing InvokeAI install on macOS due to missing nodejs
- Increased timeout on Recommended Models call to prevent potential timeout errors on slow connections
## v2.8.0
### Added

2
StabilityMatrix.Avalonia/App.axaml.cs

@ -574,7 +574,7 @@ public sealed class App : Application
.ConfigureHttpClient(c =>
{
c.BaseAddress = new Uri("https://auth.lykos.ai");
c.Timeout = TimeSpan.FromSeconds(15);
c.Timeout = TimeSpan.FromSeconds(60);
})
.ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler { AllowAutoRedirect = false })
.AddPolicyHandler(retryPolicy)

2
StabilityMatrix.Avalonia/Helpers/UnixPrerequisiteHelper.cs

@ -298,7 +298,7 @@ public class UnixPrerequisiteHelper : IPrerequisiteHelper
{
var command = args.Prepend([NpmPath]);
var result = await ProcessRunner.RunBashCommand(command.ToArray(), workingDirectory ?? "");
var result = await ProcessRunner.RunBashCommand(command.ToArray(), workingDirectory ?? "", envVars);
if (result.ExitCode != 0)
{
Logger.Error(

2
StabilityMatrix.Avalonia/ViewModels/PackageManager/PackageInstallDetailViewModel.cs

@ -126,6 +126,8 @@ public partial class PackageInstallDetailViewModel(
return;
}
InstallName = InstallName.Trim();
var setPackageInstallingStep = new SetPackageInstallingStep(settingsManager, InstallName);
var installLocation = Path.Combine(settingsManager.LibraryDir, "Packages", InstallName);

Loading…
Cancel
Save