mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
* feat: cosmetic overhaul of native notification popup * fix: use correct screen default * feat: move notification test from debug build type to button press * fix: not debug anymore * fix: rearrange native notification settings controls * fix: account for display scaling when positioning notification * fix: guard against a screen that no longer exists * fix: safer way to get screens, in case control tree changes
31 lines
870 B
C#
31 lines
870 B
C#
using System;
|
|
using Avalonia;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace Observatory
|
|
{
|
|
class ObservatoryCore
|
|
{
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
string version = System.Reflection.Assembly.GetEntryAssembly().GetName().Version.ToString();
|
|
if (Properties.Core.Default.CoreVersion != version)
|
|
{
|
|
Properties.Core.Default.Upgrade();
|
|
Properties.Core.Default.CoreVersion = version;
|
|
Properties.Core.Default.Save();
|
|
}
|
|
BuildAvaloniaApp().StartWithClassicDesktopLifetime(args);
|
|
}
|
|
|
|
public static AppBuilder BuildAvaloniaApp()
|
|
{
|
|
return AppBuilder.Configure<UI.MainApplication>()
|
|
.UsePlatformDetect()
|
|
.LogToTrace()
|
|
.UseReactiveUI();
|
|
}
|
|
}
|
|
}
|