mirror of
https://github.com/GalaxyViewer/GalaxyViewer.git
synced 2026-08-14 00:57:53 +00:00
* 📦️ Upgrades packages, renames LoggedInView to WelcomeView * 📦️ Upgrades packages, removes Shell theme * 🐛 📦 Fixes issues with trying to Login on Android, updates packages * 🐛 Grid Selection now works * 🚧 Moved some things to a Session service, fixed grids not populating on clean install * 🚧 L$ Balance is now visible * ✨ Adds a working address bar and teleporting, renames WelcomeView to DashboardView, fixes login location, general formatting tweaks * 📦️ Upgrades packages * 🌐 Localization update, tweaks for emoji, and adding RTL support * ✨ Working basic chat functionality * Update GalaxyViewer/ViewModels/MainViewModel.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Galaxy Littlepaws <34807062+GalaxyLittlepaws@users.noreply.github.com> * Update GalaxyViewer/Views/LoginView.axaml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Galaxy Littlepaws <34807062+GalaxyLittlepaws@users.noreply.github.com> --------- Signed-off-by: Galaxy Littlepaws <34807062+GalaxyLittlepaws@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
23 lines
730 B
C#
23 lines
730 B
C#
using System;
|
|
using Avalonia;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace GalaxyViewer.Desktop;
|
|
|
|
sealed class Program
|
|
{
|
|
// Initialization code. Don't use any Avalonia, third-party APIs or any
|
|
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
|
|
// yet and stuff might break.
|
|
[STAThread]
|
|
public static void Main(string[] args) => BuildAvaloniaApp()
|
|
.StartWithClassicDesktopLifetime(args);
|
|
|
|
// Avalonia configuration, don't remove; also used by visual designer.
|
|
public static AppBuilder BuildAvaloniaApp()
|
|
=> AppBuilder.Configure<App>()
|
|
.UsePlatformDetect()
|
|
.WithInterFont()
|
|
.LogToTrace()
|
|
.UseReactiveUI();
|
|
} |