Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Commit e3be0f4

Browse files
committed
use latest stable Avalonia and minor fixes
1 parent cfcb337 commit e3be0f4

File tree

6 files changed

+36
-6
lines changed

6 files changed

+36
-6
lines changed

AvaloniaEdit

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<PropertyGroup>
8-
<AvaloniaVersion>0.9.0-preview7</AvaloniaVersion>
8+
<AvaloniaVersion>0.9.0</AvaloniaVersion>
99
</PropertyGroup>
1010

1111
</Project>

ILSpy.Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ internal static class RevisionClass
3838
public const string Major = "5";
3939
public const string Minor = "0";
4040
public const string Build = "2";
41-
public const string Revision = "0";
42-
public const string VersionName = "beta";
41+
public const string Revision = "1";
42+
public const string VersionName = "rc";
4343

4444
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision + "." + VersionName;
4545
}

ILSpy.Core/Properties/Resources.resx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,32 @@
729729
<data name="CannotAnalyzeMissingRef" xml:space="preserve">
730730
<value>Entity could not be resolved. Cannot analyze entities from missing assembly references. Add the missing reference and try again.</value>
731731
</data>
732+
<data name="DecompilerSettings.UseThrowExpressions" xml:space="preserve">
733+
<value>Use throw expressions</value>
734+
</data>
732735
<data name="DecompilerSettings.AllowExtensionMethodSyntaxOnRef" xml:space="preserve">
733736
<value>Use 'ref' extension methods</value>
734737
</data>
738+
<data name="AssemblySaveCodeDirectoryNotEmpty" xml:space="preserve">
739+
<value>The directory is not empty. File will be overwritten.
740+
Are you sure you want to continue?</value>
741+
</data>
742+
<data name="AssemblySaveCodeDirectoryNotEmptyTitle" xml:space="preserve">
743+
<value>Project Directory not empty</value>
744+
</data>
745+
<data name="HighlightMatchingBraces" xml:space="preserve">
746+
<value>Highlight matching braces</value>
747+
</data>
748+
<data name="SelectLanguageDropdownTooltip" xml:space="preserve">
749+
<value>Select language to decompile to</value>
750+
</data>
751+
<data name="SelectVersionDropdownTooltip" xml:space="preserve">
752+
<value>Select version of language to output</value>
753+
</data>
754+
<data name="DecompilerSettings.RemoveDeadStores" xml:space="preserve">
755+
<value>Remove dead stores (use with caution!)</value>
756+
</data>
757+
<data name="DecompilerSettings.AlwaysShowEnumMemberValues" xml:space="preserve">
758+
<value>Always show enum member values</value>
759+
</data>
735760
</root>

ILSpy/ILSpy.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55
<OutputType>WinExe</OutputType>
66

77
<TieredCompilation>true</TieredCompilation>

ILSpy/Program.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ public static AppBuilder BuildAvaloniaApp()
4242
Logger.Sink = new ProxyLogSink(Logger.Sink);
4343
#endif
4444

45-
return result.UsePlatformDetect();
45+
return result
46+
.UsePlatformDetect()
47+
.With(new X11PlatformOptions
48+
{
49+
UseDBusMenu = true
50+
});
4651
}
4752

4853
class ProxyLogSink : ILogSink

0 commit comments

Comments
 (0)