Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions ShinRyuModManager-CE/ShinRyuModManager-CE.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@
<IsPackable>false</IsPackable>
<ApplicationIcon>UserInterface\Assets\Icons\SRMM_icon.ico</ApplicationIcon>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>

<!-- Versioning -->
<AssemblyVersion>1.2.0</AssemblyVersion>
<AssemblyVersion>1.2.1</AssemblyVersion>
<VersionPrefix>$(AssemblyVersion)</VersionPrefix>
<AssemblyTitle>ShinRyuModManager-CE</AssemblyTitle>
<Company>SRMM Studio</Company>
<Product>ShinRyuModManager-CE</Product>
<Copyright>2025 SRMM Studio</Copyright>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
</PropertyGroup>

Expand Down
5 changes: 5 additions & 0 deletions ShinRyuModManager-CE/UserInterface/Assets/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
> ### **%{color:orange} Version 1.2.1 %** ###
* Fixed linux bug with auto updater failing to check version

---

> ### **%{color:orange} Version 1.2.0 %** ###
* Added auto updater

Expand Down
9 changes: 7 additions & 2 deletions ShinRyuModManager-CE/UserInterface/Updater/AutoUpdating.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
using Avalonia.Media;
using Avalonia.Media.Immutable;
using NetSparkleUpdater;
using NetSparkleUpdater.AssemblyAccessors;
using NetSparkleUpdater.Configurations;
using NetSparkleUpdater.Enums;
using NetSparkleUpdater.SignatureVerifiers;
using NetSparkleUpdater.UI.Avalonia;
Expand Down Expand Up @@ -45,10 +47,13 @@ public static void Init() {
TmpDownloadFilePath = _tempDir,
TmpDownloadFileNameWithExtension = $"{Guid.NewGuid()}.zip",
RelaunchAfterUpdate = false,
LogWriter = new SerilogWriter()
LogWriter = new SerilogWriter(),
#pragma warning disable CS0618 // Type or member is obsolete
Configuration = new JSONConfiguration(new AssemblyReflectionAccessor(null))
#pragma warning restore CS0618 // Type or member is obsolete
};

_ = _updater.StartLoop(true, TimeSpan.FromMinutes(5));
_ = _updater.StartLoop(true, true, TimeSpan.FromMinutes(15));
}

private static void HandleRyuUpdater() {
Expand Down
Loading