gitextract_h8h55mua/ ├── .gitattributes ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── LICENSE ├── MultiRPC/ │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets/ │ │ ├── Icons.xaml │ │ ├── LottieAnimations/ │ │ │ ├── CreditsIconAnimation.json │ │ │ ├── CustomIconAnimation.json │ │ │ ├── DiscordIconAnimation.json │ │ │ ├── IconAnimations.aep │ │ │ ├── LogsIconAnimation.json │ │ │ └── SettingsIconAnimation.json │ │ ├── MultiRPCLogo.ai │ │ ├── Other/ │ │ │ ├── Loading Animation.aep │ │ │ └── Loading Animation.prproj │ │ ├── Svg files/ │ │ │ └── Update.cmd │ │ └── Themes/ │ │ └── DesignerTheme.xaml │ ├── Data.cs │ ├── Functions/ │ │ ├── Animations.cs │ │ ├── BitmapDownloader.cs │ │ ├── Checks.cs │ │ ├── ClickOnceUpdater.cs │ │ ├── FileWatch.cs │ │ ├── IUpdate.cs │ │ ├── Logging.cs │ │ ├── SimpleUpdater.cs │ │ ├── TriggerWatch.cs │ │ ├── Updater.cs │ │ ├── Uri.Extra.cs │ │ └── Utils.cs │ ├── GUI/ │ │ ├── Controls/ │ │ │ ├── MultiRPCAndCustomDictionary.xaml │ │ │ ├── TabPage.xaml │ │ │ ├── TabPage.xaml.cs │ │ │ └── ToolTip.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MessageBox/ │ │ │ ├── CustomMessageBox.cs │ │ │ ├── MessageBoxPage.xaml │ │ │ └── MessageBoxPage.xaml.cs │ │ ├── Pages/ │ │ │ ├── ChangelogPage.xaml │ │ │ ├── ChangelogPage.xaml.cs │ │ │ ├── CreditsPage.xaml │ │ │ ├── CreditsPage.xaml.cs │ │ │ ├── Custom Pages/ │ │ │ │ ├── CustomPage.xaml │ │ │ │ ├── CustomPage.xaml.cs │ │ │ │ ├── MasterCustomPage.xaml │ │ │ │ ├── MasterCustomPage.xaml.cs │ │ │ │ ├── TriggerPage.xaml │ │ │ │ └── TriggerPage.xaml.cs │ │ │ ├── DebugPage.xaml │ │ │ ├── DebugPage.xaml.cs │ │ │ ├── EditProfileNamePage.xaml │ │ │ ├── EditProfileNamePage.xaml.cs │ │ │ ├── LogsPage.xaml │ │ │ ├── LogsPage.xaml.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── MainPageThumbnail.xaml │ │ │ ├── MainPageThumbnail.xaml.cs │ │ │ ├── MultiRPCAndCustomLogic.cs │ │ │ ├── MultiRPCPage.xaml │ │ │ ├── MultiRPCPage.xaml.cs │ │ │ ├── ProgramsPage.xaml │ │ │ ├── ProgramsPage.xaml.cs │ │ │ ├── SettingsPage.xaml │ │ │ ├── SettingsPage.xaml.cs │ │ │ ├── ShareProfilePage.xaml │ │ │ ├── ShareProfilePage.xaml.cs │ │ │ ├── Theme Pages/ │ │ │ │ ├── InstalledThemes.xaml │ │ │ │ ├── InstalledThemes.xaml.cs │ │ │ │ ├── MasterThemeEditorPage.xaml │ │ │ │ ├── MasterThemeEditorPage.xaml.cs │ │ │ │ ├── ThemeEditorPage.xaml │ │ │ │ └── ThemeEditorPage.xaml.cs │ │ │ ├── UpdateFailedPage.xaml │ │ │ ├── UpdateFailedPage.xaml.cs │ │ │ ├── UpdatePage.xaml │ │ │ └── UpdatePage.xaml.cs │ │ └── Views/ │ │ ├── RPCPreview.xaml │ │ └── RPCPreview.xaml.cs │ ├── JsonClasses/ │ │ ├── Config.cs │ │ ├── CreditsList.cs │ │ ├── CustomProfile.cs │ │ ├── Day.cs │ │ ├── FileLocations.cs │ │ ├── ProcessWatcher.cs │ │ ├── Theme.cs │ │ ├── UIText.cs │ │ └── Version.cs │ ├── Lang/ │ │ ├── en-gb.json │ │ └── es.json │ ├── MultiRPC.csproj │ ├── MultiRPCCore.csproj │ ├── Ooki-Dialogs-Wpf-license.txt │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── app.manifest │ ├── RPC.cs │ └── multirpc.VisualElementsManifest.xml ├── MultiRPC.sln └── README.md