├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── Test └── UniSky.Moderation.Test │ ├── Helpers.cs │ ├── Moderation.tests.cs │ ├── MutedWords.tests.cs │ └── UniSky.Moderation.Test.csproj ├── UniSky.Background ├── BadgeBackgroundTask.cs ├── Properties │ └── AssemblyInfo.cs └── UniSky.Background.csproj ├── UniSky.Models ├── AppTheme.cs ├── Embed │ └── EmbedModels.cs ├── Helpers │ └── JsonContext.cs ├── LoginModel.cs ├── ModerationCache.cs ├── Polyfill │ └── IsExternalInit.cs ├── SessionModel.cs └── UniSky.Models.csproj ├── UniSky.Moderation ├── Decisions │ ├── AccountDecider.cs │ ├── FeedGeneratorDecider.cs │ ├── NotificationDecider.cs │ ├── PostDecider.cs │ ├── ProfileDecider.cs │ └── UserListDecider.cs ├── Enums │ ├── LabelPreference.cs │ ├── LabelTarget.cs │ ├── LabelValueDefinitionFlags.cs │ ├── ModerationBehaviorType.cs │ ├── ModerationCauseSourceType.cs │ └── ModerationCauseType.cs ├── InterpretedLabelValueDefinition.cs ├── KnownLabels.cs ├── LabelModerationCause.cs ├── ModerationBehavior.cs ├── ModerationBehaviors.cs ├── ModerationCause.cs ├── ModerationCauseSource.cs ├── ModerationDecision.cs ├── ModerationExtensions.cs ├── ModerationOptions.cs ├── ModerationPrefs.cs ├── ModerationPrefsLabeler.cs ├── ModerationUI.cs ├── Moderator.cs ├── Polyfill │ └── Polyfill.cs ├── README.md ├── Subjects │ ├── ModerationSubject.cs │ ├── ModerationSubjectFeedGenerator.cs │ ├── ModerationSubjectNotification.cs │ ├── ModerationSubjectPost.cs │ ├── ModerationSubjectProfile.cs │ └── ModerationSubjectUserList.cs └── UniSky.Moderation.csproj ├── UniSky.Notifications ├── Data │ └── NotificationDbContext.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── UniSky.Notifications.csproj ├── UniSky.Notifications.http ├── appsettings.Development.json └── appsettings.json ├── UniSky.Services ├── Compression.cs ├── Constants.cs ├── IBadgeService.cs ├── IElementCaptureService.cs ├── IEmbedExtractor.cs ├── IEmbedThumbnailGenerator.cs ├── IImageCompressionService.cs ├── ILoginService.cs ├── IModerationService.cs ├── INavigationService.cs ├── INavigationServiceLocator.cs ├── INotificationsService.cs ├── IProtocolService.cs ├── ISessionService.cs ├── ISettingsService.cs ├── ISheetService.cs ├── IThemeService.cs ├── ITypedSettings.cs ├── Implementation │ ├── BadgeService.cs │ ├── LoginService.cs │ ├── ProtocolService.cs │ ├── SessionService.cs │ ├── SettingsService.cs │ └── TypedSettingsService.cs ├── ModerationService.cs ├── Overlay │ ├── IOverlayControl.cs │ ├── IOverlayController.cs │ ├── OverlayHidingEventArgs.cs │ └── OverlayShowingEventArgs.cs ├── Polyfill │ └── IsExternalInit.cs ├── Properties │ ├── AssemblyInfo.cs │ └── UniSky.Services.rd.xml ├── SafeArea │ ├── ISafeAreaService.cs │ ├── SafeAreaInfo.cs │ └── SafeAreaUpdatedEventArgs.cs ├── ServiceContainer.cs ├── Sheet │ └── ISheetControl.cs └── UniSky.Services.csproj ├── UniSky.sln ├── UniSky.targets └── UniSky ├── App.xaml ├── App.xaml.cs ├── Assets ├── BadgeLogo.scale-100.png ├── BadgeLogo.scale-125.png ├── BadgeLogo.scale-150.png ├── BadgeLogo.scale-200.png ├── BadgeLogo.scale-400.png ├── LargeTile.scale-100.png ├── LargeTile.scale-125.png ├── LargeTile.scale-150.png ├── LargeTile.scale-200.png ├── LargeTile.scale-400.png ├── LockScreenLogo.scale-200.png ├── SmallTile.scale-100.png ├── SmallTile.scale-125.png ├── SmallTile.scale-150.png ├── SmallTile.scale-200.png ├── SmallTile.scale-400.png ├── SplashScreen.scale-100.png ├── SplashScreen.scale-125.png ├── SplashScreen.scale-150.png ├── SplashScreen.scale-200.png ├── SplashScreen.scale-400.png ├── Square150x150Logo.scale-100.png ├── Square150x150Logo.scale-125.png ├── Square150x150Logo.scale-150.png ├── Square150x150Logo.scale-200.png ├── Square150x150Logo.scale-400.png ├── Square44x44Logo.altform-lightunplated_targetsize-16.png ├── Square44x44Logo.altform-lightunplated_targetsize-24.png ├── Square44x44Logo.altform-lightunplated_targetsize-256.png ├── Square44x44Logo.altform-lightunplated_targetsize-32.png ├── Square44x44Logo.altform-lightunplated_targetsize-48.png ├── Square44x44Logo.altform-unplated_targetsize-16.png ├── Square44x44Logo.altform-unplated_targetsize-256.png ├── Square44x44Logo.altform-unplated_targetsize-32.png ├── Square44x44Logo.altform-unplated_targetsize-48.png ├── Square44x44Logo.scale-100.png ├── Square44x44Logo.scale-125.png ├── Square44x44Logo.scale-150.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.scale-400.png ├── Square44x44Logo.targetsize-16.png ├── Square44x44Logo.targetsize-24.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── Square44x44Logo.targetsize-256.png ├── Square44x44Logo.targetsize-32.png ├── Square44x44Logo.targetsize-48.png ├── StoreLogo.backup.png ├── StoreLogo.scale-100.png ├── StoreLogo.scale-125.png ├── StoreLogo.scale-150.png ├── StoreLogo.scale-200.png ├── StoreLogo.scale-400.png ├── WatermarkLogo.png ├── Wide310x150Logo.scale-100.png ├── Wide310x150Logo.scale-125.png ├── Wide310x150Logo.scale-150.png ├── Wide310x150Logo.scale-200.png ├── Wide310x150Logo.scale-400.png └── custom-twitter │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Controls ├── Compose │ ├── ComposeAddAltTextDialog.xaml │ ├── ComposeAddAltTextDialog.xaml.cs │ ├── ComposeDiscardDraftDialog.xaml │ ├── ComposeDiscardDraftDialog.xaml.cs │ ├── ComposeSheet.xaml │ ├── ComposeSheet.xaml.cs │ └── Renderer │ │ ├── ComposeImageRenderer.xaml │ │ └── ComposeImageRenderer.xaml.cs ├── ConstrainedBox │ ├── AspectRatioConstraint.cs │ ├── ConstrainedBox.Properties.cs │ └── ConstrainedBox.cs ├── Gallery │ ├── GalleryControl.xaml │ └── GalleryControl.xaml.cs ├── ImageEx │ ├── ImageEx.Members.cs │ ├── ImageEx.cs │ ├── ImageEx.xaml │ ├── ImageExBase.Members.cs │ ├── ImageExBase.Placeholder.cs │ ├── ImageExBase.Source.cs │ ├── ImageExBase.cs │ ├── ImageExFailedEventArgs.cs │ └── ImageExOpenedEventArgs.cs ├── Labels │ ├── LabelsControl.cs │ └── LabelsControl.xaml ├── Overlay │ ├── OverlayControl.cs │ ├── OverlayRootControl.xaml │ ├── OverlayRootControl.xaml.cs │ ├── StandardOverlayControl.cs │ └── StandardOverlayControl.xaml ├── PreviewPaneAuroraControl.xaml ├── PreviewPaneAuroraControl.xaml.cs ├── RadialProgressBar │ ├── RadialProgressBar.cs │ └── RadialProgressBar.xaml ├── RichTextBlock │ └── FacetTextBlock.cs ├── Settings │ ├── SettingsNeedsRelaunchDialog.xaml │ ├── SettingsNeedsRelaunchDialog.xaml.cs │ ├── SettingsSheet.xaml │ └── SettingsSheet.xaml.cs ├── Sheet │ ├── SheetControl.cs │ ├── SheetControl.xaml │ ├── SheetRootControl.xaml │ └── SheetRootControl.xaml.cs ├── Spoiler │ ├── SpoilerControl.cs │ └── SpoilerControl.xaml ├── TitleBar │ ├── TitleBar.cs │ └── TitleBar.xaml ├── UniformGrid │ ├── TakenSpotsReferenceHolder.cs │ ├── UniformGrid.Helpers.cs │ ├── UniformGrid.Properties.cs │ └── UniformGrid.cs ├── VideoPlayer │ ├── VideoPlayerOverlay.xaml │ └── VideoPlayerOverlay.xaml.cs ├── WrapLayout │ ├── UvBounds.cs │ ├── UvMeasure.cs │ ├── WrapItem.cs │ ├── WrapLayout.cs │ └── WrapLayoutState.cs └── WrapPanel │ ├── StretchChild.cs │ ├── WrapPanel.Data.cs │ └── WrapPanel.cs ├── Converters ├── Static.cs └── VisibilityConverter.cs ├── DataTemplates ├── FeedItemTemplateSelector.cs ├── FeedTemplates.xaml ├── FeedTemplates.xaml.cs ├── PostEmbedTemplateSelector.cs ├── ThreadItemTemplateSelector.cs ├── ThreadTemplates.xaml └── ThreadTemplates.xaml.cs ├── Extensions ├── Hairline.cs ├── RectExtensions.cs ├── ScrollToSelectedBehaviour.cs └── SynchronizationContextExtensions.cs ├── Helpers ├── AngleSharp │ └── CustomHttpClientRequester.cs ├── Composition │ └── BirdAnimation.cs ├── FacetHelpers.cs ├── Geometry │ ├── CanvasPathBuilderExtensions.cs │ ├── CanvasPathGeometry.cs │ ├── CanvasStroke.cs │ ├── CompositorGeometryExtensions.cs │ ├── Core │ │ ├── CanvasRoundRect.cs │ │ ├── GeometryTypeDefinitions.cs │ │ ├── PathElementFactory.cs │ │ └── RegexFactory.cs │ ├── CultureShield.cs │ ├── Elements │ │ └── Path │ │ │ ├── AbstractPathElement.cs │ │ │ ├── ArcElement.cs │ │ │ ├── CanvasEllipseFigure.cs │ │ │ ├── CanvasPathFigure.cs │ │ │ ├── CanvasPolygonFigure.cs │ │ │ ├── CanvasRectangleFigure.cs │ │ │ ├── ClosePathElement.cs │ │ │ ├── CubicBezierElement.cs │ │ │ ├── FillRuleElement.cs │ │ │ ├── HorizontalLineElement.cs │ │ │ ├── ICanvasPathElement.cs │ │ │ ├── LineElement.cs │ │ │ ├── MoveToElement.cs │ │ │ ├── QuadraticBezierElement.cs │ │ │ ├── SmoothCubicBezierElement.cs │ │ │ ├── SmoothQuadraticBezierElement.cs │ │ │ └── VerticalLineElement.cs │ ├── ICanvasStroke.cs │ ├── Parsers │ │ └── CanvasGeometryParser.cs │ ├── Scalar.cs │ └── Utils.cs ├── Interop │ └── BitmapInterop.cs ├── Localisation │ └── ShortTimespanFormatter.cs ├── Shadows │ ├── AttachedCardShadow.cs │ ├── AttachedDropShadow.cs │ ├── AttachedShadowBase.cs │ ├── AttachedShadowElementContext.cs │ ├── Effects.cs │ ├── IAlphaMaskProvider.cs │ ├── IAttachedShadow.cs │ └── TypedResourceKey.cs ├── SizeHelpers.cs ├── StringExtensions.cs ├── UIElementExtensions.cs └── UrlHelpers.cs ├── Messages └── MarkAsReadNotification.cs ├── Package.appxmanifest ├── Pages ├── BookmarksPage.xaml ├── BookmarksPage.xaml.cs ├── FeedsPage.xaml ├── FeedsPage.xaml.cs ├── HomePage.xaml ├── HomePage.xaml.cs ├── LoginPage.xaml ├── LoginPage.xaml.cs ├── NotificationsPage.xaml ├── NotificationsPage.xaml.cs ├── ProfilePage.xaml ├── ProfilePage.xaml.cs ├── SearchPage.xaml ├── SearchPage.xaml.cs ├── ThreadPage.xaml └── ThreadPage.xaml.cs ├── Polyfill └── IsExternalInit.cs ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── Resources ├── en-GB │ ├── Resources.resw │ └── custom-twitter │ │ └── Resources.resw └── pl-PL │ ├── Resources.resw │ └── custom-twitter │ └── Resources.resw ├── RootPage.xaml ├── RootPage.xaml.cs ├── Services ├── AngleSharpEmbedExtractor.cs ├── BackgroundNotificationsService.cs ├── IScrollToTop.cs ├── ImageCompressionService.cs ├── NavigationService.cs ├── NavigationServiceLocator.cs ├── Overlay │ ├── AppWindowOverlayController.cs │ ├── ApplicationViewOverlayController.cs │ ├── OverlayRootController.cs │ ├── OverlayService.cs │ └── StandardOverlayService.cs ├── SafeArea │ ├── AppWindowSafeAreaService.cs │ └── ApplicationViewSafeAreaService.cs ├── Sheet │ └── SheetService.cs ├── ThemeService.cs ├── XamlElementCaptureService.cs └── XamlEmbedThumbnailGenerator.cs ├── Templates ├── ButtonStyles.xaml ├── Icons.xaml ├── ListViewStyles.xaml ├── MediaTransportControlsStyles.xaml ├── NavigationViewStyles.xaml ├── PivotStyles.xaml ├── RichTextBlockStyles.xaml ├── TextBoxStyles.xaml └── custom-twitter │ └── Icons.xaml ├── Themes ├── Backport │ └── NavigationView_rs1.xaml ├── Dim.xaml ├── Fluent.xaml ├── Generic.xaml ├── Performance.xaml ├── SunValley.xaml └── ThemeResources.cs ├── UniSky.csproj └── ViewModels ├── Bookmarks ├── BookmarksCollection.cs └── BookmarksPageViewModel.cs ├── Compose ├── ComposeViewAttachmentViewModel.cs ├── ComposeViewLinkCardViewModel.cs └── ComposeViewModel.cs ├── Error ├── ATErrorViewModel.cs ├── ErrorViewModel.cs └── ExceptionViewModel.cs ├── Feeds ├── FeedItemCollection.cs └── FeedViewModel.cs ├── FeedsViewModel.cs ├── Gallery └── GalleryViewModel.cs ├── HomeViewModel.cs ├── LoginViewModel.cs ├── MenuItems ├── MenuItemViewModel.cs ├── NotificationsMenuItemViewModel.cs └── ProfileMenuItemViewModel.cs ├── Moderation └── LabelViewModel.cs ├── Notifications ├── NotificationViewModel.cs ├── NotificationsCollection.cs └── NotificationsPageViewModel.cs ├── Posts ├── ContentWarningViewModel.cs ├── PostEmbedExternalViewModel.cs ├── PostEmbedImageViewModel.cs ├── PostEmbedImagesViewModel.cs ├── PostEmbedPostViewModel.cs ├── PostEmbedRecordWithMediaViewModel.cs ├── PostEmbedVideoViewModel.cs ├── PostEmbedViewModel.cs └── PostViewModel.cs ├── Profile ├── ProfileFeedViewModel.cs ├── ProfilePageViewModel.cs └── ProfileViewModel.cs ├── RootViewModel.cs ├── Search ├── SearchFeedViewModel.cs ├── SearchPageViewModel.cs ├── SearchPostsCollection.cs └── SearchProfileCollection.cs ├── Settings └── SettingsViewModel.cs ├── Text └── RichTextViewModel.cs ├── Thread ├── ThreadPostViewModel.cs └── ThreadViewModel.cs ├── VideoPlayer └── VideoPlayerViewModel.cs └── ViewModelBase.cs /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/README.md -------------------------------------------------------------------------------- /Test/UniSky.Moderation.Test/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/Test/UniSky.Moderation.Test/Helpers.cs -------------------------------------------------------------------------------- /Test/UniSky.Moderation.Test/Moderation.tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/Test/UniSky.Moderation.Test/Moderation.tests.cs -------------------------------------------------------------------------------- /Test/UniSky.Moderation.Test/MutedWords.tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/Test/UniSky.Moderation.Test/MutedWords.tests.cs -------------------------------------------------------------------------------- /Test/UniSky.Moderation.Test/UniSky.Moderation.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/Test/UniSky.Moderation.Test/UniSky.Moderation.Test.csproj -------------------------------------------------------------------------------- /UniSky.Background/BadgeBackgroundTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Background/BadgeBackgroundTask.cs -------------------------------------------------------------------------------- /UniSky.Background/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Background/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UniSky.Background/UniSky.Background.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Background/UniSky.Background.csproj -------------------------------------------------------------------------------- /UniSky.Models/AppTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Models/AppTheme.cs -------------------------------------------------------------------------------- /UniSky.Models/Embed/EmbedModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Models/Embed/EmbedModels.cs -------------------------------------------------------------------------------- /UniSky.Models/Helpers/JsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Models/Helpers/JsonContext.cs -------------------------------------------------------------------------------- /UniSky.Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Models/LoginModel.cs -------------------------------------------------------------------------------- /UniSky.Models/ModerationCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Models/ModerationCache.cs -------------------------------------------------------------------------------- /UniSky.Models/Polyfill/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Models/Polyfill/IsExternalInit.cs -------------------------------------------------------------------------------- /UniSky.Models/SessionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Models/SessionModel.cs -------------------------------------------------------------------------------- /UniSky.Models/UniSky.Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Models/UniSky.Models.csproj -------------------------------------------------------------------------------- /UniSky.Moderation/Decisions/AccountDecider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Decisions/AccountDecider.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Decisions/FeedGeneratorDecider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Decisions/FeedGeneratorDecider.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Decisions/NotificationDecider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Decisions/NotificationDecider.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Decisions/PostDecider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Decisions/PostDecider.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Decisions/ProfileDecider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Decisions/ProfileDecider.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Decisions/UserListDecider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Decisions/UserListDecider.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Enums/LabelPreference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Enums/LabelPreference.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Enums/LabelTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Enums/LabelTarget.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Enums/LabelValueDefinitionFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Enums/LabelValueDefinitionFlags.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Enums/ModerationBehaviorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Enums/ModerationBehaviorType.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Enums/ModerationCauseSourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Enums/ModerationCauseSourceType.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Enums/ModerationCauseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Enums/ModerationCauseType.cs -------------------------------------------------------------------------------- /UniSky.Moderation/InterpretedLabelValueDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/InterpretedLabelValueDefinition.cs -------------------------------------------------------------------------------- /UniSky.Moderation/KnownLabels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/KnownLabels.cs -------------------------------------------------------------------------------- /UniSky.Moderation/LabelModerationCause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/LabelModerationCause.cs -------------------------------------------------------------------------------- /UniSky.Moderation/ModerationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/ModerationBehavior.cs -------------------------------------------------------------------------------- /UniSky.Moderation/ModerationBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/ModerationBehaviors.cs -------------------------------------------------------------------------------- /UniSky.Moderation/ModerationCause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/ModerationCause.cs -------------------------------------------------------------------------------- /UniSky.Moderation/ModerationCauseSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/ModerationCauseSource.cs -------------------------------------------------------------------------------- /UniSky.Moderation/ModerationDecision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/ModerationDecision.cs -------------------------------------------------------------------------------- /UniSky.Moderation/ModerationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/ModerationExtensions.cs -------------------------------------------------------------------------------- /UniSky.Moderation/ModerationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/ModerationOptions.cs -------------------------------------------------------------------------------- /UniSky.Moderation/ModerationPrefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/ModerationPrefs.cs -------------------------------------------------------------------------------- /UniSky.Moderation/ModerationPrefsLabeler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/ModerationPrefsLabeler.cs -------------------------------------------------------------------------------- /UniSky.Moderation/ModerationUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/ModerationUI.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Moderator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Moderator.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Polyfill/Polyfill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Polyfill/Polyfill.cs -------------------------------------------------------------------------------- /UniSky.Moderation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/README.md -------------------------------------------------------------------------------- /UniSky.Moderation/Subjects/ModerationSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Subjects/ModerationSubject.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Subjects/ModerationSubjectFeedGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Subjects/ModerationSubjectFeedGenerator.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Subjects/ModerationSubjectNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Subjects/ModerationSubjectNotification.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Subjects/ModerationSubjectPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Subjects/ModerationSubjectPost.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Subjects/ModerationSubjectProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Subjects/ModerationSubjectProfile.cs -------------------------------------------------------------------------------- /UniSky.Moderation/Subjects/ModerationSubjectUserList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/Subjects/ModerationSubjectUserList.cs -------------------------------------------------------------------------------- /UniSky.Moderation/UniSky.Moderation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Moderation/UniSky.Moderation.csproj -------------------------------------------------------------------------------- /UniSky.Notifications/Data/NotificationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Notifications/Data/NotificationDbContext.cs -------------------------------------------------------------------------------- /UniSky.Notifications/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Notifications/Program.cs -------------------------------------------------------------------------------- /UniSky.Notifications/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Notifications/Properties/launchSettings.json -------------------------------------------------------------------------------- /UniSky.Notifications/UniSky.Notifications.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Notifications/UniSky.Notifications.csproj -------------------------------------------------------------------------------- /UniSky.Notifications/UniSky.Notifications.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Notifications/UniSky.Notifications.http -------------------------------------------------------------------------------- /UniSky.Notifications/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Notifications/appsettings.Development.json -------------------------------------------------------------------------------- /UniSky.Notifications/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Notifications/appsettings.json -------------------------------------------------------------------------------- /UniSky.Services/Compression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Compression.cs -------------------------------------------------------------------------------- /UniSky.Services/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Constants.cs -------------------------------------------------------------------------------- /UniSky.Services/IBadgeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/IBadgeService.cs -------------------------------------------------------------------------------- /UniSky.Services/IElementCaptureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/IElementCaptureService.cs -------------------------------------------------------------------------------- /UniSky.Services/IEmbedExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/IEmbedExtractor.cs -------------------------------------------------------------------------------- /UniSky.Services/IEmbedThumbnailGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/IEmbedThumbnailGenerator.cs -------------------------------------------------------------------------------- /UniSky.Services/IImageCompressionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/IImageCompressionService.cs -------------------------------------------------------------------------------- /UniSky.Services/ILoginService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/ILoginService.cs -------------------------------------------------------------------------------- /UniSky.Services/IModerationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/IModerationService.cs -------------------------------------------------------------------------------- /UniSky.Services/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/INavigationService.cs -------------------------------------------------------------------------------- /UniSky.Services/INavigationServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/INavigationServiceLocator.cs -------------------------------------------------------------------------------- /UniSky.Services/INotificationsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/INotificationsService.cs -------------------------------------------------------------------------------- /UniSky.Services/IProtocolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/IProtocolService.cs -------------------------------------------------------------------------------- /UniSky.Services/ISessionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/ISessionService.cs -------------------------------------------------------------------------------- /UniSky.Services/ISettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/ISettingsService.cs -------------------------------------------------------------------------------- /UniSky.Services/ISheetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/ISheetService.cs -------------------------------------------------------------------------------- /UniSky.Services/IThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/IThemeService.cs -------------------------------------------------------------------------------- /UniSky.Services/ITypedSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/ITypedSettings.cs -------------------------------------------------------------------------------- /UniSky.Services/Implementation/BadgeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Implementation/BadgeService.cs -------------------------------------------------------------------------------- /UniSky.Services/Implementation/LoginService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Implementation/LoginService.cs -------------------------------------------------------------------------------- /UniSky.Services/Implementation/ProtocolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Implementation/ProtocolService.cs -------------------------------------------------------------------------------- /UniSky.Services/Implementation/SessionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Implementation/SessionService.cs -------------------------------------------------------------------------------- /UniSky.Services/Implementation/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Implementation/SettingsService.cs -------------------------------------------------------------------------------- /UniSky.Services/Implementation/TypedSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Implementation/TypedSettingsService.cs -------------------------------------------------------------------------------- /UniSky.Services/ModerationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/ModerationService.cs -------------------------------------------------------------------------------- /UniSky.Services/Overlay/IOverlayControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Overlay/IOverlayControl.cs -------------------------------------------------------------------------------- /UniSky.Services/Overlay/IOverlayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Overlay/IOverlayController.cs -------------------------------------------------------------------------------- /UniSky.Services/Overlay/OverlayHidingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Overlay/OverlayHidingEventArgs.cs -------------------------------------------------------------------------------- /UniSky.Services/Overlay/OverlayShowingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Overlay/OverlayShowingEventArgs.cs -------------------------------------------------------------------------------- /UniSky.Services/Polyfill/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Polyfill/IsExternalInit.cs -------------------------------------------------------------------------------- /UniSky.Services/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UniSky.Services/Properties/UniSky.Services.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Properties/UniSky.Services.rd.xml -------------------------------------------------------------------------------- /UniSky.Services/SafeArea/ISafeAreaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/SafeArea/ISafeAreaService.cs -------------------------------------------------------------------------------- /UniSky.Services/SafeArea/SafeAreaInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/SafeArea/SafeAreaInfo.cs -------------------------------------------------------------------------------- /UniSky.Services/SafeArea/SafeAreaUpdatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/SafeArea/SafeAreaUpdatedEventArgs.cs -------------------------------------------------------------------------------- /UniSky.Services/ServiceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/ServiceContainer.cs -------------------------------------------------------------------------------- /UniSky.Services/Sheet/ISheetControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/Sheet/ISheetControl.cs -------------------------------------------------------------------------------- /UniSky.Services/UniSky.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.Services/UniSky.Services.csproj -------------------------------------------------------------------------------- /UniSky.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.sln -------------------------------------------------------------------------------- /UniSky.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky.targets -------------------------------------------------------------------------------- /UniSky/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/App.xaml -------------------------------------------------------------------------------- /UniSky/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/App.xaml.cs -------------------------------------------------------------------------------- /UniSky/Assets/BadgeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/BadgeLogo.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/BadgeLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/BadgeLogo.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/BadgeLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/BadgeLogo.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/BadgeLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/BadgeLogo.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/BadgeLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/BadgeLogo.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /UniSky/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /UniSky/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /UniSky/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/WatermarkLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/WatermarkLogo.png -------------------------------------------------------------------------------- /UniSky/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/LargeTile.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/LargeTile.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/LargeTile.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/LargeTile.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/LargeTile.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/SmallTile.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/SmallTile.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/SmallTile.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/SmallTile.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/SmallTile.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /UniSky/Assets/custom-twitter/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Assets/custom-twitter/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /UniSky/Controls/Compose/ComposeAddAltTextDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Compose/ComposeAddAltTextDialog.xaml -------------------------------------------------------------------------------- /UniSky/Controls/Compose/ComposeAddAltTextDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Compose/ComposeAddAltTextDialog.xaml.cs -------------------------------------------------------------------------------- /UniSky/Controls/Compose/ComposeDiscardDraftDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Compose/ComposeDiscardDraftDialog.xaml -------------------------------------------------------------------------------- /UniSky/Controls/Compose/ComposeDiscardDraftDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Compose/ComposeDiscardDraftDialog.xaml.cs -------------------------------------------------------------------------------- /UniSky/Controls/Compose/ComposeSheet.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Compose/ComposeSheet.xaml -------------------------------------------------------------------------------- /UniSky/Controls/Compose/ComposeSheet.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Compose/ComposeSheet.xaml.cs -------------------------------------------------------------------------------- /UniSky/Controls/Compose/Renderer/ComposeImageRenderer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Compose/Renderer/ComposeImageRenderer.xaml -------------------------------------------------------------------------------- /UniSky/Controls/Compose/Renderer/ComposeImageRenderer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Compose/Renderer/ComposeImageRenderer.xaml.cs -------------------------------------------------------------------------------- /UniSky/Controls/ConstrainedBox/AspectRatioConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ConstrainedBox/AspectRatioConstraint.cs -------------------------------------------------------------------------------- /UniSky/Controls/ConstrainedBox/ConstrainedBox.Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ConstrainedBox/ConstrainedBox.Properties.cs -------------------------------------------------------------------------------- /UniSky/Controls/ConstrainedBox/ConstrainedBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ConstrainedBox/ConstrainedBox.cs -------------------------------------------------------------------------------- /UniSky/Controls/Gallery/GalleryControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Gallery/GalleryControl.xaml -------------------------------------------------------------------------------- /UniSky/Controls/Gallery/GalleryControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Gallery/GalleryControl.xaml.cs -------------------------------------------------------------------------------- /UniSky/Controls/ImageEx/ImageEx.Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ImageEx/ImageEx.Members.cs -------------------------------------------------------------------------------- /UniSky/Controls/ImageEx/ImageEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ImageEx/ImageEx.cs -------------------------------------------------------------------------------- /UniSky/Controls/ImageEx/ImageEx.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ImageEx/ImageEx.xaml -------------------------------------------------------------------------------- /UniSky/Controls/ImageEx/ImageExBase.Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ImageEx/ImageExBase.Members.cs -------------------------------------------------------------------------------- /UniSky/Controls/ImageEx/ImageExBase.Placeholder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ImageEx/ImageExBase.Placeholder.cs -------------------------------------------------------------------------------- /UniSky/Controls/ImageEx/ImageExBase.Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ImageEx/ImageExBase.Source.cs -------------------------------------------------------------------------------- /UniSky/Controls/ImageEx/ImageExBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ImageEx/ImageExBase.cs -------------------------------------------------------------------------------- /UniSky/Controls/ImageEx/ImageExFailedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ImageEx/ImageExFailedEventArgs.cs -------------------------------------------------------------------------------- /UniSky/Controls/ImageEx/ImageExOpenedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/ImageEx/ImageExOpenedEventArgs.cs -------------------------------------------------------------------------------- /UniSky/Controls/Labels/LabelsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Labels/LabelsControl.cs -------------------------------------------------------------------------------- /UniSky/Controls/Labels/LabelsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Labels/LabelsControl.xaml -------------------------------------------------------------------------------- /UniSky/Controls/Overlay/OverlayControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Overlay/OverlayControl.cs -------------------------------------------------------------------------------- /UniSky/Controls/Overlay/OverlayRootControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Overlay/OverlayRootControl.xaml -------------------------------------------------------------------------------- /UniSky/Controls/Overlay/OverlayRootControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Overlay/OverlayRootControl.xaml.cs -------------------------------------------------------------------------------- /UniSky/Controls/Overlay/StandardOverlayControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Overlay/StandardOverlayControl.cs -------------------------------------------------------------------------------- /UniSky/Controls/Overlay/StandardOverlayControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Overlay/StandardOverlayControl.xaml -------------------------------------------------------------------------------- /UniSky/Controls/PreviewPaneAuroraControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/PreviewPaneAuroraControl.xaml -------------------------------------------------------------------------------- /UniSky/Controls/PreviewPaneAuroraControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/PreviewPaneAuroraControl.xaml.cs -------------------------------------------------------------------------------- /UniSky/Controls/RadialProgressBar/RadialProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/RadialProgressBar/RadialProgressBar.cs -------------------------------------------------------------------------------- /UniSky/Controls/RadialProgressBar/RadialProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/RadialProgressBar/RadialProgressBar.xaml -------------------------------------------------------------------------------- /UniSky/Controls/RichTextBlock/FacetTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/RichTextBlock/FacetTextBlock.cs -------------------------------------------------------------------------------- /UniSky/Controls/Settings/SettingsNeedsRelaunchDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Settings/SettingsNeedsRelaunchDialog.xaml -------------------------------------------------------------------------------- /UniSky/Controls/Settings/SettingsNeedsRelaunchDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Settings/SettingsNeedsRelaunchDialog.xaml.cs -------------------------------------------------------------------------------- /UniSky/Controls/Settings/SettingsSheet.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Settings/SettingsSheet.xaml -------------------------------------------------------------------------------- /UniSky/Controls/Settings/SettingsSheet.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Settings/SettingsSheet.xaml.cs -------------------------------------------------------------------------------- /UniSky/Controls/Sheet/SheetControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Sheet/SheetControl.cs -------------------------------------------------------------------------------- /UniSky/Controls/Sheet/SheetControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Sheet/SheetControl.xaml -------------------------------------------------------------------------------- /UniSky/Controls/Sheet/SheetRootControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Sheet/SheetRootControl.xaml -------------------------------------------------------------------------------- /UniSky/Controls/Sheet/SheetRootControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Sheet/SheetRootControl.xaml.cs -------------------------------------------------------------------------------- /UniSky/Controls/Spoiler/SpoilerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Spoiler/SpoilerControl.cs -------------------------------------------------------------------------------- /UniSky/Controls/Spoiler/SpoilerControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/Spoiler/SpoilerControl.xaml -------------------------------------------------------------------------------- /UniSky/Controls/TitleBar/TitleBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/TitleBar/TitleBar.cs -------------------------------------------------------------------------------- /UniSky/Controls/TitleBar/TitleBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/TitleBar/TitleBar.xaml -------------------------------------------------------------------------------- /UniSky/Controls/UniformGrid/TakenSpotsReferenceHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/UniformGrid/TakenSpotsReferenceHolder.cs -------------------------------------------------------------------------------- /UniSky/Controls/UniformGrid/UniformGrid.Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/UniformGrid/UniformGrid.Helpers.cs -------------------------------------------------------------------------------- /UniSky/Controls/UniformGrid/UniformGrid.Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/UniformGrid/UniformGrid.Properties.cs -------------------------------------------------------------------------------- /UniSky/Controls/UniformGrid/UniformGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/UniformGrid/UniformGrid.cs -------------------------------------------------------------------------------- /UniSky/Controls/VideoPlayer/VideoPlayerOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/VideoPlayer/VideoPlayerOverlay.xaml -------------------------------------------------------------------------------- /UniSky/Controls/VideoPlayer/VideoPlayerOverlay.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/VideoPlayer/VideoPlayerOverlay.xaml.cs -------------------------------------------------------------------------------- /UniSky/Controls/WrapLayout/UvBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/WrapLayout/UvBounds.cs -------------------------------------------------------------------------------- /UniSky/Controls/WrapLayout/UvMeasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/WrapLayout/UvMeasure.cs -------------------------------------------------------------------------------- /UniSky/Controls/WrapLayout/WrapItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/WrapLayout/WrapItem.cs -------------------------------------------------------------------------------- /UniSky/Controls/WrapLayout/WrapLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/WrapLayout/WrapLayout.cs -------------------------------------------------------------------------------- /UniSky/Controls/WrapLayout/WrapLayoutState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/WrapLayout/WrapLayoutState.cs -------------------------------------------------------------------------------- /UniSky/Controls/WrapPanel/StretchChild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/WrapPanel/StretchChild.cs -------------------------------------------------------------------------------- /UniSky/Controls/WrapPanel/WrapPanel.Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/WrapPanel/WrapPanel.Data.cs -------------------------------------------------------------------------------- /UniSky/Controls/WrapPanel/WrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Controls/WrapPanel/WrapPanel.cs -------------------------------------------------------------------------------- /UniSky/Converters/Static.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Converters/Static.cs -------------------------------------------------------------------------------- /UniSky/Converters/VisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Converters/VisibilityConverter.cs -------------------------------------------------------------------------------- /UniSky/DataTemplates/FeedItemTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/DataTemplates/FeedItemTemplateSelector.cs -------------------------------------------------------------------------------- /UniSky/DataTemplates/FeedTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/DataTemplates/FeedTemplates.xaml -------------------------------------------------------------------------------- /UniSky/DataTemplates/FeedTemplates.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/DataTemplates/FeedTemplates.xaml.cs -------------------------------------------------------------------------------- /UniSky/DataTemplates/PostEmbedTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/DataTemplates/PostEmbedTemplateSelector.cs -------------------------------------------------------------------------------- /UniSky/DataTemplates/ThreadItemTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/DataTemplates/ThreadItemTemplateSelector.cs -------------------------------------------------------------------------------- /UniSky/DataTemplates/ThreadTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/DataTemplates/ThreadTemplates.xaml -------------------------------------------------------------------------------- /UniSky/DataTemplates/ThreadTemplates.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/DataTemplates/ThreadTemplates.xaml.cs -------------------------------------------------------------------------------- /UniSky/Extensions/Hairline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Extensions/Hairline.cs -------------------------------------------------------------------------------- /UniSky/Extensions/RectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Extensions/RectExtensions.cs -------------------------------------------------------------------------------- /UniSky/Extensions/ScrollToSelectedBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Extensions/ScrollToSelectedBehaviour.cs -------------------------------------------------------------------------------- /UniSky/Extensions/SynchronizationContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Extensions/SynchronizationContextExtensions.cs -------------------------------------------------------------------------------- /UniSky/Helpers/AngleSharp/CustomHttpClientRequester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/AngleSharp/CustomHttpClientRequester.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Composition/BirdAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Composition/BirdAnimation.cs -------------------------------------------------------------------------------- /UniSky/Helpers/FacetHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/FacetHelpers.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/CanvasPathBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/CanvasPathBuilderExtensions.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/CanvasPathGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/CanvasPathGeometry.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/CanvasStroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/CanvasStroke.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/CompositorGeometryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/CompositorGeometryExtensions.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Core/CanvasRoundRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Core/CanvasRoundRect.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Core/GeometryTypeDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Core/GeometryTypeDefinitions.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Core/PathElementFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Core/PathElementFactory.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Core/RegexFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Core/RegexFactory.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/CultureShield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/CultureShield.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/AbstractPathElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/AbstractPathElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/ArcElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/ArcElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/CanvasEllipseFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/CanvasEllipseFigure.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/CanvasPathFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/CanvasPathFigure.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/CanvasPolygonFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/CanvasPolygonFigure.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/CanvasRectangleFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/CanvasRectangleFigure.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/ClosePathElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/ClosePathElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/CubicBezierElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/CubicBezierElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/FillRuleElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/FillRuleElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/HorizontalLineElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/HorizontalLineElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/ICanvasPathElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/ICanvasPathElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/LineElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/LineElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/MoveToElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/MoveToElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/QuadraticBezierElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/QuadraticBezierElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/SmoothCubicBezierElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/SmoothCubicBezierElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/SmoothQuadraticBezierElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/SmoothQuadraticBezierElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Elements/Path/VerticalLineElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Elements/Path/VerticalLineElement.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/ICanvasStroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/ICanvasStroke.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Parsers/CanvasGeometryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Parsers/CanvasGeometryParser.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Scalar.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Geometry/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Geometry/Utils.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Interop/BitmapInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Interop/BitmapInterop.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Localisation/ShortTimespanFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Localisation/ShortTimespanFormatter.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Shadows/AttachedCardShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Shadows/AttachedCardShadow.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Shadows/AttachedDropShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Shadows/AttachedDropShadow.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Shadows/AttachedShadowBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Shadows/AttachedShadowBase.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Shadows/AttachedShadowElementContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Shadows/AttachedShadowElementContext.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Shadows/Effects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Shadows/Effects.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Shadows/IAlphaMaskProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Shadows/IAlphaMaskProvider.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Shadows/IAttachedShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Shadows/IAttachedShadow.cs -------------------------------------------------------------------------------- /UniSky/Helpers/Shadows/TypedResourceKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/Shadows/TypedResourceKey.cs -------------------------------------------------------------------------------- /UniSky/Helpers/SizeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/SizeHelpers.cs -------------------------------------------------------------------------------- /UniSky/Helpers/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/StringExtensions.cs -------------------------------------------------------------------------------- /UniSky/Helpers/UIElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/UIElementExtensions.cs -------------------------------------------------------------------------------- /UniSky/Helpers/UrlHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Helpers/UrlHelpers.cs -------------------------------------------------------------------------------- /UniSky/Messages/MarkAsReadNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Messages/MarkAsReadNotification.cs -------------------------------------------------------------------------------- /UniSky/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Package.appxmanifest -------------------------------------------------------------------------------- /UniSky/Pages/BookmarksPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/BookmarksPage.xaml -------------------------------------------------------------------------------- /UniSky/Pages/BookmarksPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/BookmarksPage.xaml.cs -------------------------------------------------------------------------------- /UniSky/Pages/FeedsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/FeedsPage.xaml -------------------------------------------------------------------------------- /UniSky/Pages/FeedsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/FeedsPage.xaml.cs -------------------------------------------------------------------------------- /UniSky/Pages/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/HomePage.xaml -------------------------------------------------------------------------------- /UniSky/Pages/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/HomePage.xaml.cs -------------------------------------------------------------------------------- /UniSky/Pages/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/LoginPage.xaml -------------------------------------------------------------------------------- /UniSky/Pages/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/LoginPage.xaml.cs -------------------------------------------------------------------------------- /UniSky/Pages/NotificationsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/NotificationsPage.xaml -------------------------------------------------------------------------------- /UniSky/Pages/NotificationsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/NotificationsPage.xaml.cs -------------------------------------------------------------------------------- /UniSky/Pages/ProfilePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/ProfilePage.xaml -------------------------------------------------------------------------------- /UniSky/Pages/ProfilePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/ProfilePage.xaml.cs -------------------------------------------------------------------------------- /UniSky/Pages/SearchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/SearchPage.xaml -------------------------------------------------------------------------------- /UniSky/Pages/SearchPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/SearchPage.xaml.cs -------------------------------------------------------------------------------- /UniSky/Pages/ThreadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/ThreadPage.xaml -------------------------------------------------------------------------------- /UniSky/Pages/ThreadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Pages/ThreadPage.xaml.cs -------------------------------------------------------------------------------- /UniSky/Polyfill/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Polyfill/IsExternalInit.cs -------------------------------------------------------------------------------- /UniSky/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UniSky/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Properties/Default.rd.xml -------------------------------------------------------------------------------- /UniSky/Resources/en-GB/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Resources/en-GB/Resources.resw -------------------------------------------------------------------------------- /UniSky/Resources/en-GB/custom-twitter/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Resources/en-GB/custom-twitter/Resources.resw -------------------------------------------------------------------------------- /UniSky/Resources/pl-PL/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Resources/pl-PL/Resources.resw -------------------------------------------------------------------------------- /UniSky/Resources/pl-PL/custom-twitter/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Resources/pl-PL/custom-twitter/Resources.resw -------------------------------------------------------------------------------- /UniSky/RootPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/RootPage.xaml -------------------------------------------------------------------------------- /UniSky/RootPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/RootPage.xaml.cs -------------------------------------------------------------------------------- /UniSky/Services/AngleSharpEmbedExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/AngleSharpEmbedExtractor.cs -------------------------------------------------------------------------------- /UniSky/Services/BackgroundNotificationsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/BackgroundNotificationsService.cs -------------------------------------------------------------------------------- /UniSky/Services/IScrollToTop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/IScrollToTop.cs -------------------------------------------------------------------------------- /UniSky/Services/ImageCompressionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/ImageCompressionService.cs -------------------------------------------------------------------------------- /UniSky/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/NavigationService.cs -------------------------------------------------------------------------------- /UniSky/Services/NavigationServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/NavigationServiceLocator.cs -------------------------------------------------------------------------------- /UniSky/Services/Overlay/AppWindowOverlayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/Overlay/AppWindowOverlayController.cs -------------------------------------------------------------------------------- /UniSky/Services/Overlay/ApplicationViewOverlayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/Overlay/ApplicationViewOverlayController.cs -------------------------------------------------------------------------------- /UniSky/Services/Overlay/OverlayRootController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/Overlay/OverlayRootController.cs -------------------------------------------------------------------------------- /UniSky/Services/Overlay/OverlayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/Overlay/OverlayService.cs -------------------------------------------------------------------------------- /UniSky/Services/Overlay/StandardOverlayService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/Overlay/StandardOverlayService.cs -------------------------------------------------------------------------------- /UniSky/Services/SafeArea/AppWindowSafeAreaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/SafeArea/AppWindowSafeAreaService.cs -------------------------------------------------------------------------------- /UniSky/Services/SafeArea/ApplicationViewSafeAreaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/SafeArea/ApplicationViewSafeAreaService.cs -------------------------------------------------------------------------------- /UniSky/Services/Sheet/SheetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/Sheet/SheetService.cs -------------------------------------------------------------------------------- /UniSky/Services/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/ThemeService.cs -------------------------------------------------------------------------------- /UniSky/Services/XamlElementCaptureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/XamlElementCaptureService.cs -------------------------------------------------------------------------------- /UniSky/Services/XamlEmbedThumbnailGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Services/XamlEmbedThumbnailGenerator.cs -------------------------------------------------------------------------------- /UniSky/Templates/ButtonStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Templates/ButtonStyles.xaml -------------------------------------------------------------------------------- /UniSky/Templates/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Templates/Icons.xaml -------------------------------------------------------------------------------- /UniSky/Templates/ListViewStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Templates/ListViewStyles.xaml -------------------------------------------------------------------------------- /UniSky/Templates/MediaTransportControlsStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Templates/MediaTransportControlsStyles.xaml -------------------------------------------------------------------------------- /UniSky/Templates/NavigationViewStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Templates/NavigationViewStyles.xaml -------------------------------------------------------------------------------- /UniSky/Templates/PivotStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Templates/PivotStyles.xaml -------------------------------------------------------------------------------- /UniSky/Templates/RichTextBlockStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Templates/RichTextBlockStyles.xaml -------------------------------------------------------------------------------- /UniSky/Templates/TextBoxStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Templates/TextBoxStyles.xaml -------------------------------------------------------------------------------- /UniSky/Templates/custom-twitter/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Templates/custom-twitter/Icons.xaml -------------------------------------------------------------------------------- /UniSky/Themes/Backport/NavigationView_rs1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Themes/Backport/NavigationView_rs1.xaml -------------------------------------------------------------------------------- /UniSky/Themes/Dim.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Themes/Dim.xaml -------------------------------------------------------------------------------- /UniSky/Themes/Fluent.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Themes/Fluent.xaml -------------------------------------------------------------------------------- /UniSky/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Themes/Generic.xaml -------------------------------------------------------------------------------- /UniSky/Themes/Performance.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Themes/Performance.xaml -------------------------------------------------------------------------------- /UniSky/Themes/SunValley.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Themes/SunValley.xaml -------------------------------------------------------------------------------- /UniSky/Themes/ThemeResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/Themes/ThemeResources.cs -------------------------------------------------------------------------------- /UniSky/UniSky.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/UniSky.csproj -------------------------------------------------------------------------------- /UniSky/ViewModels/Bookmarks/BookmarksCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Bookmarks/BookmarksCollection.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Bookmarks/BookmarksPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Bookmarks/BookmarksPageViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Compose/ComposeViewAttachmentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Compose/ComposeViewAttachmentViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Compose/ComposeViewLinkCardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Compose/ComposeViewLinkCardViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Compose/ComposeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Compose/ComposeViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Error/ATErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Error/ATErrorViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Error/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Error/ErrorViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Error/ExceptionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Error/ExceptionViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Feeds/FeedItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Feeds/FeedItemCollection.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Feeds/FeedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Feeds/FeedViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/FeedsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/FeedsViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Gallery/GalleryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Gallery/GalleryViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/HomeViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/MenuItems/MenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/MenuItems/MenuItemViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/MenuItems/NotificationsMenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/MenuItems/NotificationsMenuItemViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/MenuItems/ProfileMenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/MenuItems/ProfileMenuItemViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Moderation/LabelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Moderation/LabelViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Notifications/NotificationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Notifications/NotificationViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Notifications/NotificationsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Notifications/NotificationsCollection.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Notifications/NotificationsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Notifications/NotificationsPageViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Posts/ContentWarningViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Posts/ContentWarningViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Posts/PostEmbedExternalViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Posts/PostEmbedExternalViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Posts/PostEmbedImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Posts/PostEmbedImageViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Posts/PostEmbedImagesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Posts/PostEmbedImagesViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Posts/PostEmbedPostViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Posts/PostEmbedPostViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Posts/PostEmbedRecordWithMediaViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Posts/PostEmbedRecordWithMediaViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Posts/PostEmbedVideoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Posts/PostEmbedVideoViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Posts/PostEmbedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Posts/PostEmbedViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Posts/PostViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Posts/PostViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Profile/ProfileFeedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Profile/ProfileFeedViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Profile/ProfilePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Profile/ProfilePageViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Profile/ProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Profile/ProfileViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/RootViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/RootViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Search/SearchFeedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Search/SearchFeedViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Search/SearchPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Search/SearchPageViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Search/SearchPostsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Search/SearchPostsCollection.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Search/SearchProfileCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Search/SearchProfileCollection.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Settings/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Settings/SettingsViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Text/RichTextViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Text/RichTextViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Thread/ThreadPostViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Thread/ThreadPostViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/Thread/ThreadViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/Thread/ThreadViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/VideoPlayer/VideoPlayerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/VideoPlayer/VideoPlayerViewModel.cs -------------------------------------------------------------------------------- /UniSky/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnicordDev/UniSky/HEAD/UniSky/ViewModels/ViewModelBase.cs --------------------------------------------------------------------------------