Skip to content

Commit 04474ca

Browse files
authored
Merge pull request LykosAI#1068 from ionite34/dev
2 parents af243df + cbe7432 commit 04474ca

File tree

60 files changed

+3344
-989
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+3344
-989
lines changed

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"rollForward": false
1818
},
1919
"csharpier": {
20-
"version": "0.26.7",
20+
"version": "1.0.1",
2121
"commands": [
22-
"dotnet-csharpier"
22+
"csharpier"
2323
],
2424
"rollForward": false
2525
},

.husky/task-runner.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "Run csharpier",
55
"group": "pre-commit",
66
"command": "dotnet",
7-
"args": [ "csharpier", "${staged}" ],
7+
"args": [ "csharpier", "format", "${staged}" ],
88
"include": [ "**/*.cs" ]
99
},
1010
{

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to Stability Matrix will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html).
77

8+
## v2.14.1
9+
### Changed
10+
- Updated Inference Extra Networks (Lora / LyCORIS) base model filtering to consider SDXL variations (e.g., Noob AI / Illustrious) as compatible, unrecognized models or models with no base model will be considered compatible.
11+
- Changed hotkey for Inference prompt weight adjustment to (`⌘+Up`/`⌘+Down`) on macOS
12+
- Improved style consistency of Inference Prompt action buttons on top right
13+
- (Internal) Improved log console formatting & colorization for development
14+
### Fixed
15+
- Fixed Inference hotkey weight adjustment multi-line behavior, now works as expected like the first line.
16+
- Fixed updates to versions with commit hash version parts not being recognized when the current version has no commit hash part.
17+
- Fixed Inference Extra Networks card not updating with newly added model files.
18+
- Fixed incorrect ROCmLibs being installed for RX 6800/6800XT users of Comfy-Zluda or AMDGPU-Forge
19+
- Fixed missing text when missing localized versions for Italian and Chinese languages
20+
- Fixed Python Packages dialog errors and potentially other issues due to concurrent OnLoaded events
21+
822
## v2.14.0
923
### Added
1024
#### New Packages & Integrations

ConditionalSymbols.props

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,19 @@
44
<SM_IncludeAllConditionals>false</SM_IncludeAllConditionals>
55
<!-- Mode for ServiceProvider registrations: CodeGeneration, Reflection -->
66
<SM_RegisterServiceMode>CodeGeneration</SM_RegisterServiceMode>
7+
<!-- true to include StabilityMatrix.Avalonia.Diagnostic for log window -->
8+
<SM_IncludeLogWindow>false</SM_IncludeLogWindow>
79
</PropertyGroup>
810

911
<PropertyGroup Condition="'$(SM_IncludeAllConditionals)' == 'true'">
1012
<!-- REGISTER_SERVICE_USAGES: Include Injectio attributes -->
1113
<DefineConstants>$(DefineConstants);REGISTER_SERVICE_USAGES</DefineConstants>
1214
</PropertyGroup>
15+
16+
<PropertyGroup Condition="'$(SM_IncludeLogWindow)' == 'true'">
17+
<!-- SM_LOG_WINDOW: Include Avalonia diagnostic window -->
18+
<DefineConstants>$(DefineConstants);SM_LOG_WINDOW</DefineConstants>
19+
</PropertyGroup>
1320

1421
<PropertyGroup Label="RegisterServiceMode Definitions">
1522
<DefineConstants Condition="'$(SM_RegisterServiceMode)' == 'Reflection'">

Directory.Packages.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
<PackageVersion Include="Salaros.ConfigParser" Version="0.3.8" />
7171
<PackageVersion Include="Semi.Avalonia" Version="11.2.0" />
7272
<PackageVersion Include="Semver" Version="3.0.0-beta.1" />
73-
<PackageVersion Include="Sentry" Version="4.9.0" />
74-
<PackageVersion Include="Sentry.NLog" Version="4.9.0" />
73+
<PackageVersion Include="Sentry" Version="5.5.1" />
74+
<PackageVersion Include="Sentry.NLog" Version="5.5.1" />
7575
<PackageVersion Include="SharpCompress" Version="0.37.2" />
7676
<PackageVersion Include="SkiaSharp" Version="3.0.0-preview.4.1" />
7777
<PackageVersion Include="Sylvan.Common" Version="0.4.3" />
@@ -111,8 +111,8 @@
111111
<PackageVersion Include="Dock.Serializer" Version="11.2.0" />
112112
<PackageVersion Include="FluentAvalonia.BreadcrumbBar" Version="2.0.2" />
113113
<PackageVersion Include="FluentAvaloniaUI" Version="2.3.0" />
114-
<PackageVersion Include="FluentIcons.Avalonia" Version="1.1.249" />
115-
<PackageVersion Include="FluentIcons.Avalonia.Fluent" Version="1.1.249" />
114+
<PackageVersion Include="FluentIcons.Avalonia" Version="1.1.293" />
115+
<PackageVersion Include="FluentIcons.Avalonia.Fluent" Version="1.1.293" />
116116
<PackageVersion Include="Markdown.Avalonia" Version="11.0.3-a1" />
117117
<PackageVersion Include="Projektanker.Icons.Avalonia.FontAwesome" Version="9.4.0" />
118118
<PackageVersion Include="SpacedGrid-Avalonia" Version="11.0.0" />
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
</Project>

StabilityMatrix.Avalonia.Diagnostics/StabilityMatrix.Avalonia.Diagnostics.csproj

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
2+
<Import Project="..\ConditionalSymbols.props" />
3+
<Import Project="..\Runtimes.Default.props" />
4+
35
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64;osx-arm64</RuntimeIdentifiers>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
86
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
97
<EnableWindowsTargeting>true</EnableWindowsTargeting>
108
</PropertyGroup>

0 commit comments

Comments
 (0)