diff --git a/ObservatoryCore/App.config b/ObservatoryCore/App.config
new file mode 100644
index 0000000..6a8c1b6
--- /dev/null
+++ b/ObservatoryCore/App.config
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ False
+
+
+ True
+
+
+
+
+
+ 4294944000
+
+
+ 0
+
+
+ -1
+
+
+ False
+
+
+
+
+
+
+
+
+ False
+
+
+
+
+
+ 75
+
+
+ 0
+
+
+ 800, 500
+
+
+ 100, 100
+
+
+ 100
+
+
+ 8000
+
+
+ False
+
+
+
+
+
+ False
+
+
+
+
\ No newline at end of file
diff --git a/ObservatoryCore/NativeNotification/NativePopup.cs b/ObservatoryCore/NativeNotification/NativePopup.cs
index 3488ab3..2f4aed7 100644
--- a/ObservatoryCore/NativeNotification/NativePopup.cs
+++ b/ObservatoryCore/NativeNotification/NativePopup.cs
@@ -1,14 +1,11 @@
using Observatory.Framework;
-using System;
-using System.Collections.Generic;
-using Observatory.UI.Views;
-using Observatory.UI.ViewModels;
+using Observatory.UI;
namespace Observatory.NativeNotification
{
public class NativePopup
{
- private Dictionary notifications;
+ private Dictionary notifications;
public NativePopup()
{
@@ -18,26 +15,21 @@ namespace Observatory.NativeNotification
public Guid InvokeNativeNotification(NotificationArgs notificationArgs)
{
var notificationGuid = Guid.NewGuid();
- Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() =>
+ var notification = new NotificationForm()
{
- var notifyWindow = new NotificationView(notificationGuid) { DataContext = new NotificationViewModel(notificationArgs) };
- notifyWindow.Closed += NotifyWindow_Closed;
-
- foreach (var notification in notifications)
- {
- notification.Value.AdjustOffset(true);
- }
-
- notifications.Add(notificationGuid, notifyWindow);
- notifyWindow.Show();
- });
+ Guid = notificationGuid
+ };
+ notification.Show();
+ notifications.Add(notificationGuid, notification);
+
+ //TODO: Implement winform notification
return notificationGuid;
}
private void NotifyWindow_Closed(object sender, EventArgs e)
{
- var currentNotification = (NotificationView)sender;
+ var currentNotification = (NotificationForm)sender;
if (notifications.ContainsKey(currentNotification.Guid))
{
@@ -49,10 +41,7 @@ namespace Observatory.NativeNotification
{
if (notifications.ContainsKey(guid))
{
- Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() =>
- {
- notifications[guid].Close();
- });
+ notifications[guid].Close();
}
}
@@ -60,10 +49,8 @@ namespace Observatory.NativeNotification
{
if (notifications.ContainsKey(guid))
{
- Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() =>
- {
- notifications[guid].DataContext = new NotificationViewModel(notificationArgs);
- });
+ //TODO: Update notification content
+ // notifications[guid].DataContext = new NotificationViewModel(notificationArgs);
}
}
diff --git a/ObservatoryCore/ObservatoryCore.cs b/ObservatoryCore/ObservatoryCore.cs
index 0e16ff6..f3f69cf 100644
--- a/ObservatoryCore/ObservatoryCore.cs
+++ b/ObservatoryCore/ObservatoryCore.cs
@@ -1,24 +1,26 @@
-using System;
-using Avalonia;
-using Avalonia.ReactiveUI;
+using Observatory.PluginManagement;
+using System.Reflection.PortableExecutable;
namespace Observatory
{
- class ObservatoryCore
+ internal static class ObservatoryCore
{
+ ///
+ /// The main entry point for the application.
+ ///
[STAThread]
static void Main(string[] args)
{
- if (args.Length > 0 && System.IO.File.Exists(args[0]))
+ if (args.Length > 0 && File.Exists(args[0]))
{
- var fileInfo = new System.IO.FileInfo(args[0]);
+ var fileInfo = new FileInfo(args[0]);
if (fileInfo.Extension == ".eop" || fileInfo.Extension == ".zip")
- System.IO.File.Copy(
+ File.Copy(
fileInfo.FullName,
- $"{AppDomain.CurrentDomain.BaseDirectory}{System.IO.Path.DirectorySeparatorChar}plugins{System.IO.Path.DirectorySeparatorChar}{fileInfo.Name}");
+ $"{AppDomain.CurrentDomain.BaseDirectory}{Path.DirectorySeparatorChar}plugins{Path.DirectorySeparatorChar}{fileInfo.Name}");
}
- string version = System.Reflection.Assembly.GetEntryAssembly().GetName().Version.ToString();
+ string version = System.Reflection.Assembly.GetEntryAssembly()?.GetName().Version?.ToString() ?? "0";
try
{
if (Properties.Core.Default.CoreVersion != version)
@@ -34,7 +36,14 @@ namespace Observatory
Properties.Core.Default.CoreVersion = version;
Properties.Core.Default.Save();
}
- BuildAvaloniaApp().StartWithClassicDesktopLifetime(args);
+
+
+
+ // To customize application configuration such as set high DPI settings or default font,
+ // see https://aka.ms/applicationconfiguration.
+ ApplicationConfiguration.Initialize();
+ Application.Run(new UI.CoreForm());
+ PluginManagement.PluginManager.GetInstance.Shutdown();
}
catch (Exception ex)
{
@@ -63,16 +72,7 @@ namespace Observatory
.AppendLine(ex.StackTrace);
if (ex.InnerException != null)
errorMessage.AppendLine(FormatExceptionMessage(ex.InnerException, true));
-
return errorMessage.ToString();
}
-
- public static AppBuilder BuildAvaloniaApp()
- {
- return AppBuilder.Configure()
- .UsePlatformDetect()
- .LogToTrace()
- .UseReactiveUI();
- }
}
-}
+}
\ No newline at end of file
diff --git a/ObservatoryCore/ObservatoryCore.csproj b/ObservatoryCore/ObservatoryCore.csproj
index 723c26a..ae449bf 100644
--- a/ObservatoryCore/ObservatoryCore.csproj
+++ b/ObservatoryCore/ObservatoryCore.csproj
@@ -1,77 +1,68 @@
-
- WinExe
- net6.0
+
+ WinExe
+ net6.0-windows
+ enable
+ true
enable
- Observatory
- false
- false
- ObservatoryKey.snk
-
- Link
- true
-
+ Observatory
+
-
- 0.2.$([System.DateTime]::UtcNow.Year.ToString().Substring(2))$([System.DateTime]::UtcNow.DayOfYear.ToString().PadLeft(3, "0")).$([System.DateTime]::UtcNow.ToString(HHmm))
- 0.0.0.1
- $(VersionSuffix)
- 0.0.1.0
- $(VersionSuffix)
- Assets\EOCIcon-Presized.ico
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ 0.2.$([System.DateTime]::UtcNow.Year.ToString().Substring(2))$([System.DateTime]::UtcNow.DayOfYear.ToString().PadLeft(3, "0")).$([System.DateTime]::UtcNow.ToString(HHmm))
+ 0.0.0.1
+ $(VersionSuffix)
+ 0.0.1.0
+ $(VersionSuffix)
+ Assets\EOCIcon-Presized.ico
+ Observatory.ObservatoryCore
+ False
+
-
-
-
-
-
-
- ..\ObservatoryFramework\bin\Release\net6.0\ObservatoryFramework.dll
-
-
+
+
+
+
+
+
+
+ ..\ObservatoryFramework\bin\Release\net6.0\ObservatoryFramework.dll
+
+
+
+
+
+ True
+ True
+ Core.settings
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
+
+
+ SettingsSingleFileGenerator
+ Core.Designer.cs
+
+
-
-
- True
- True
- Core.settings
-
-
- CoreView.axaml
-
-
- NotificationView.axaml
-
-
-
-
-
- SettingsSingleFileGenerator
- Core.Designer.cs
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ObservatoryCore/ObservatoryCore.sln b/ObservatoryCore/ObservatoryCore.sln
index 31626d7..799b6bb 100644
--- a/ObservatoryCore/ObservatoryCore.sln
+++ b/ObservatoryCore/ObservatoryCore.sln
@@ -1,9 +1,9 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.30128.74
+# Visual Studio Version 17
+VisualStudioVersion = 17.3.32922.545
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ObservatoryCore", "ObservatoryCore.csproj", "{0E1C4F16-858E-4E53-948A-77D81A8F3395}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ObservatoryCore", "ObservatoryCore.csproj", "{036A9A33-8C38-4A0C-BE2E-AC64B1B22090}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -11,15 +11,15 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {0E1C4F16-858E-4E53-948A-77D81A8F3395}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {0E1C4F16-858E-4E53-948A-77D81A8F3395}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {0E1C4F16-858E-4E53-948A-77D81A8F3395}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {0E1C4F16-858E-4E53-948A-77D81A8F3395}.Release|Any CPU.Build.0 = Release|Any CPU
+ {036A9A33-8C38-4A0C-BE2E-AC64B1B22090}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {036A9A33-8C38-4A0C-BE2E-AC64B1B22090}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {036A9A33-8C38-4A0C-BE2E-AC64B1B22090}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {036A9A33-8C38-4A0C-BE2E-AC64B1B22090}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {F41B8681-A5D9-4167-9938-56DE88024000}
+ SolutionGuid = {53E6C705-9815-47F7-8ABF-92A7FA4E2F4B}
EndGlobalSection
EndGlobal
diff --git a/ObservatoryCore/PluginManagement/PluginCore.cs b/ObservatoryCore/PluginManagement/PluginCore.cs
index 0bb0a33..6e696bb 100644
--- a/ObservatoryCore/PluginManagement/PluginCore.cs
+++ b/ObservatoryCore/PluginManagement/PluginCore.cs
@@ -2,6 +2,7 @@
using Observatory.Framework.Files;
using Observatory.Framework.Interfaces;
using Observatory.NativeNotification;
+using Observatory.Utils;
using System;
using System.Collections.ObjectModel;
using System.IO;
@@ -20,7 +21,7 @@ namespace Observatory.PluginManagement
NativePopup = new();
}
- public string Version => System.Reflection.Assembly.GetEntryAssembly().GetName().Version.ToString();
+ public string Version => System.Reflection.Assembly.GetEntryAssembly()?.GetName().Version?.ToString() ?? "0";
public Action GetPluginErrorLogger(IObservatoryPlugin plugin)
{
@@ -97,50 +98,29 @@ namespace Observatory.PluginManagement
///
///
///
- public void AddGridItem(IObservatoryWorker worker, List