From 734ca79a0f45938a7473f40e2d48d6c107b3df9b Mon Sep 17 00:00:00 2001 From: Cody Larkin Date: Mon, 9 Mar 2026 18:47:32 -0400 Subject: [PATCH] Init --- .gitignore | 5 + README.md | 2 +- RelayChat.sln | 16 + RelayChat/App.xaml | 14 + RelayChat/App.xaml.cs | 14 + RelayChat/AppShell.xaml | 14 + RelayChat/AppShell.xaml.cs | 9 + RelayChat/MainPage.xaml | 36 ++ RelayChat/MainPage.xaml.cs | 25 + RelayChat/MauiProgram.cs | 24 + .../Platforms/Android/AndroidManifest.xml | 6 + RelayChat/Platforms/Android/MainActivity.cs | 12 + .../Platforms/Android/MainApplication.cs | 15 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 9 + .../Platforms/MacCatalyst/Entitlements.plist | 14 + RelayChat/Platforms/MacCatalyst/Info.plist | 38 ++ RelayChat/Platforms/MacCatalyst/Program.cs | 15 + RelayChat/Platforms/Tizen/Main.cs | 16 + RelayChat/Platforms/Tizen/tizen-manifest.xml | 15 + RelayChat/Platforms/Windows/App.xaml | 8 + RelayChat/Platforms/Windows/App.xaml.cs | 23 + .../Platforms/Windows/Package.appxmanifest | 46 ++ RelayChat/Platforms/Windows/app.manifest | 15 + RelayChat/Platforms/iOS/AppDelegate.cs | 9 + RelayChat/Platforms/iOS/Info.plist | 32 ++ RelayChat/Platforms/iOS/Program.cs | 15 + .../iOS/Resources/PrivacyInfo.xcprivacy | 51 ++ RelayChat/Properties/launchSettings.json | 8 + RelayChat/RelayChat.csproj | 67 +++ RelayChat/Resources/AppIcon/appicon.svg | 4 + RelayChat/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107304 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111180 bytes RelayChat/Resources/Images/dotnet_bot.png | Bin 0 -> 93437 bytes RelayChat/Resources/Raw/AboutAssets.txt | 15 + RelayChat/Resources/Splash/splash.svg | 8 + RelayChat/Resources/Styles/Colors.xaml | 45 ++ RelayChat/Resources/Styles/Styles.xaml | 440 ++++++++++++++++++ 39 files changed, 1098 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 RelayChat.sln create mode 100644 RelayChat/App.xaml create mode 100644 RelayChat/App.xaml.cs create mode 100644 RelayChat/AppShell.xaml create mode 100644 RelayChat/AppShell.xaml.cs create mode 100644 RelayChat/MainPage.xaml create mode 100644 RelayChat/MainPage.xaml.cs create mode 100644 RelayChat/MauiProgram.cs create mode 100644 RelayChat/Platforms/Android/AndroidManifest.xml create mode 100644 RelayChat/Platforms/Android/MainActivity.cs create mode 100644 RelayChat/Platforms/Android/MainApplication.cs create mode 100644 RelayChat/Platforms/Android/Resources/values/colors.xml create mode 100644 RelayChat/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 RelayChat/Platforms/MacCatalyst/Entitlements.plist create mode 100644 RelayChat/Platforms/MacCatalyst/Info.plist create mode 100644 RelayChat/Platforms/MacCatalyst/Program.cs create mode 100644 RelayChat/Platforms/Tizen/Main.cs create mode 100644 RelayChat/Platforms/Tizen/tizen-manifest.xml create mode 100644 RelayChat/Platforms/Windows/App.xaml create mode 100644 RelayChat/Platforms/Windows/App.xaml.cs create mode 100644 RelayChat/Platforms/Windows/Package.appxmanifest create mode 100644 RelayChat/Platforms/Windows/app.manifest create mode 100644 RelayChat/Platforms/iOS/AppDelegate.cs create mode 100644 RelayChat/Platforms/iOS/Info.plist create mode 100644 RelayChat/Platforms/iOS/Program.cs create mode 100644 RelayChat/Platforms/iOS/Resources/PrivacyInfo.xcprivacy create mode 100644 RelayChat/Properties/launchSettings.json create mode 100644 RelayChat/RelayChat.csproj create mode 100644 RelayChat/Resources/AppIcon/appicon.svg create mode 100644 RelayChat/Resources/AppIcon/appiconfg.svg create mode 100644 RelayChat/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 RelayChat/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 RelayChat/Resources/Images/dotnet_bot.png create mode 100644 RelayChat/Resources/Raw/AboutAssets.txt create mode 100644 RelayChat/Resources/Splash/splash.svg create mode 100644 RelayChat/Resources/Styles/Colors.xaml create mode 100644 RelayChat/Resources/Styles/Styles.xaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/README.md b/README.md index f31753a..b5b58f5 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# RelayClient +# RelayChat diff --git a/RelayChat.sln b/RelayChat.sln new file mode 100644 index 0000000..7e0aa23 --- /dev/null +++ b/RelayChat.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RelayChat", "RelayChat\RelayChat.csproj", "{461585E2-F79B-4B79-B52A-0EF5D0A4F50D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {461585E2-F79B-4B79-B52A-0EF5D0A4F50D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {461585E2-F79B-4B79-B52A-0EF5D0A4F50D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {461585E2-F79B-4B79-B52A-0EF5D0A4F50D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {461585E2-F79B-4B79-B52A-0EF5D0A4F50D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/RelayChat/App.xaml b/RelayChat/App.xaml new file mode 100644 index 0000000..5e6756a --- /dev/null +++ b/RelayChat/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/RelayChat/App.xaml.cs b/RelayChat/App.xaml.cs new file mode 100644 index 0000000..3c808e2 --- /dev/null +++ b/RelayChat/App.xaml.cs @@ -0,0 +1,14 @@ +namespace RelayChat; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + } + + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new AppShell()); + } +} \ No newline at end of file diff --git a/RelayChat/AppShell.xaml b/RelayChat/AppShell.xaml new file mode 100644 index 0000000..febd54d --- /dev/null +++ b/RelayChat/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/RelayChat/AppShell.xaml.cs b/RelayChat/AppShell.xaml.cs new file mode 100644 index 0000000..81f8101 --- /dev/null +++ b/RelayChat/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace RelayChat; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/RelayChat/MainPage.xaml b/RelayChat/MainPage.xaml new file mode 100644 index 0000000..5486ec0 --- /dev/null +++ b/RelayChat/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +