├── .gitattributes ├── .gitignore ├── Abstractions ├── Abstractions.csproj ├── Direct │ ├── Converters │ │ └── InstaDirectInboxItemListConverter.cs │ └── Models │ │ └── InstaDirectInboxItemFullModel.cs ├── FodyWeavers.xml ├── Media │ └── WinstaMediaLikerUser.cs ├── Navigation │ ├── IncrementalMediaViewParameter.cs │ ├── MediaCommentsViewParameter.cs │ ├── NavigationParameter.cs │ └── StoryCarouselViewParameter.cs ├── Properties │ ├── Abstractions.rd.xml │ └── AssemblyInfo.cs ├── ServiceProviderExtensions.cs ├── Stories │ ├── WinstaHighlightFeed.cs │ ├── WinstaReelFeed.cs │ └── WinstaStoryItem.cs └── WinstaObjectConverter.cs ├── Core.Collections ├── Core.Collections.csproj ├── ExtendedObservableCollection.cs ├── FodyWeavers.xml ├── IncrementalSources │ ├── Activities │ │ ├── IncrementalPendingFriendRequests.cs │ │ └── IncrementalUserActivities.cs │ ├── Comments │ │ ├── IncrementalCommentLikers.cs │ │ └── IncrementalMediaComments.cs │ ├── Directs │ │ ├── DirectMessagesInvertedCollection.cs │ │ ├── IncrementalDirectInbox.cs │ │ ├── IncrementalDirectThread.cs │ │ └── IncrementalGiphyCollection.cs │ ├── Hashtags │ │ ├── IncrementalHashtagRecentMedias.cs │ │ ├── IncrementalHashtagReelsMedia.cs │ │ └── IncrementalHashtagTopMedias.cs │ ├── Highlights │ │ └── IncrementalUserHighlights.cs │ ├── Media │ │ ├── IncrementalExploreMedia.cs │ │ ├── IncrementalHomeMedia.cs │ │ └── IncrementalMediaLikers.cs │ ├── Places │ │ ├── IncrementalPlaceRecentMedias.cs │ │ └── IncrementalPlaceTopMedias.cs │ ├── Search │ │ ├── IncrementalHashtagsSearch.cs │ │ ├── IncrementalPeopleSearch.cs │ │ └── IncrementalPlacesSearch.cs │ ├── Stories │ │ ├── IncrementalDummyStories.cs │ │ └── IncrementalFeedStories.cs │ └── Users │ │ ├── IncrementalUserFollowers.cs │ │ ├── IncrementalUserFollowings.cs │ │ ├── IncrementalUserMedias.cs │ │ ├── IncrementalUserReels.cs │ │ ├── IncrementalUserSavedFeed.cs │ │ ├── IncrementalUserTVMedias.cs │ │ └── IncrementalUserTaggedMedia.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Core.Collections.rd.xml └── ServiceProviderExtensions.cs ├── Microsoft.Toolkit.Mvvm ├── ComponentModel │ └── ObservableObject.cs ├── Input │ ├── AsyncRelayCommand.cs │ ├── IAsyncRelayCommand.cs │ ├── IRelayCommand.cs │ └── RelayCommand.cs ├── Microsoft.Toolkit.Mvvm.csproj └── Properties │ ├── AssemblyInfo.cs │ └── Microsoft.Toolkit.Mvvm.rd.xml ├── MinistaLivePlayback ├── ILivePlayer.cs ├── LiveSourceBufferManager.cs ├── MinistaLivePlayback.csproj ├── MinistaPlayer.cs ├── Models │ ├── Manifest.cs │ ├── MediaSegment.cs │ ├── MediaSegmentInformation.cs │ ├── MediaStream.cs │ └── Period.cs ├── Player.cs ├── Properties │ ├── AssemblyInfo.cs │ └── MinistaLivePlayback.rd.xml ├── SourceBufferManager.cs └── Util │ ├── DashManifestParser.cs │ └── Utils.cs ├── NotificationHandler ├── NotificationActivationHelper.cs ├── NotificationHandler.csproj ├── Notify.cs ├── Properties │ ├── AssemblyInfo.cs │ └── NotificationHandler.rd.xml └── PushHelper.cs ├── PrivacyPolicy.md ├── README.md ├── Resources ├── LanguageManager.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Resources.rd.xml └── Resources.csproj ├── Store-Badge.svg ├── TemplateSelectors ├── Activities │ └── RecentActivityFeedItemTemplateSelector.cs ├── Directs │ ├── InstaDirectInboxItemTemplateSelector.cs │ └── InstaDirectInboxThreadTemplateSelector.cs ├── Media │ └── CarouselMediaTemplateSelector.cs ├── Properties │ ├── AssemblyInfo.cs │ └── TemplateSelectors.rd.xml ├── Searches │ ├── SearchItemTemplateSelector.cs │ └── WinstaStoryFeedItemTemplateSelector.cs ├── Stories │ └── WinstaStoryItemTemplateSelector.cs └── TemplateSelectors.csproj ├── Thrift ├── BinaryEncoding │ ├── Binary.BigEndian.cs │ ├── Binary.EndianCodec.cs │ ├── Binary.Extensions.cs │ ├── Binary.LittleEndian.cs │ ├── Binary.Stream.cs │ ├── Binary.Varint.cs │ └── Binary.cs ├── Collections │ └── ToStringExtension.cs ├── GlobalSuppressions.cs ├── Processor │ ├── ITAsyncProcessor.cs │ ├── ITProcessorFactory.cs │ ├── TMultiplexedProcessor.cs │ └── TSingletonProcessorFactory.cs ├── Properties │ └── AssemblyInfo.cs ├── Protocol │ ├── Entities │ │ ├── TField.cs │ │ ├── TList.cs │ │ ├── TMap.cs │ │ ├── TMessage.cs │ │ ├── TMessageType.cs │ │ ├── TSet.cs │ │ ├── TStruct.cs │ │ └── TType.cs │ ├── TBase.cs │ ├── TBinaryProtocol.cs │ ├── TCompactProtocol.cs │ ├── TJSONProtocol.cs │ ├── TMultiplexedProtocol.cs │ ├── TProtocol.cs │ ├── TProtocolDecorator.cs │ ├── TProtocolException.cs │ ├── TProtocolFactory.cs │ └── Utilities │ │ ├── TBase64Utils.cs │ │ ├── TJsonProtocolConstants.cs │ │ ├── TJsonProtocolHelper.cs │ │ └── TProtocolUtil.cs ├── TApplicationException.cs ├── TConfiguration.cs ├── TException.cs ├── Thrift.csproj └── Transport │ ├── Client │ ├── TMemoryBufferTransport.cs │ └── TStreamTransport.cs │ ├── TEndpointTransport.cs │ ├── TTransport.cs │ ├── TTransportException.cs │ └── TTransportFactory.cs ├── ViewModels ├── Account │ ├── ChallengeRequiredViewModel.cs │ ├── LoginViewModel.cs │ └── TwoFactorAuthViewModel.cs ├── Activities │ ├── ActivitiesViewModel.cs │ └── FollowRequestsViewModel.cs ├── BaseViewModel.cs ├── BaseViewModelWithStopwatch.cs ├── Comments │ ├── CommentLikersViewModel.cs │ └── MediaCommentsViewModel.cs ├── Dialogs │ ├── BaseDialogViewModel.cs │ └── UserSelectionDialogViewModel.cs ├── Directs │ ├── DirectThreadViewModel.cs │ ├── DirectsListViewModel.cs │ └── GiphyViewModel.cs ├── FodyWeavers.xml ├── HomeViewModel.cs ├── MainPageViewModel.cs ├── Media │ ├── ExploreMediaLoadVM.cs │ ├── ExploreViewModel.cs │ ├── IncrementalInstaMediaViewModel.cs │ ├── MediaLikersViewModel.cs │ └── Upload │ │ ├── FeedMediaUploadMobileVM.cs │ │ ├── FeedMediaUploadVM.cs │ │ ├── FeedUploaderVM.cs │ │ └── VideoTranscoder.cs ├── MenuItemModel.cs ├── Profiles │ ├── EditUserProfileViewModel.cs │ ├── HashtagProfileViewModel.cs │ ├── PlaceProfileViewModel.cs │ ├── UserFollowersViewModel.cs │ ├── UserFollowingsViewModel.cs │ └── UserProfileViewModel.cs ├── Properties │ ├── AssemblyInfo.cs │ └── ViewModels.rd.xml ├── Search │ └── SearchViewModel.cs ├── ServiceProviderExtensions.cs ├── Settings │ ├── AccountSettingsViewModel.cs │ ├── ApplicationSettingsVM.cs │ └── SettingsViewModel.cs ├── StaggeredHomeViewModel.cs ├── Stories │ └── StoryCarouselViewModel.cs └── ViewModels.csproj ├── Winsta.Controls ├── Extensions │ ├── FrameworkElementExtensions.Mouse.cs │ ├── PointExtensions.cs │ └── SizeExtensions.cs ├── ImageCropper │ ├── BitmapFileFormat.cs │ ├── CropShape.cs │ ├── ImageCropper.Animations.cs │ ├── ImageCropper.Constants.cs │ ├── ImageCropper.Events.cs │ ├── ImageCropper.Helpers.cs │ ├── ImageCropper.Logic.cs │ ├── ImageCropper.Properties.cs │ ├── ImageCropper.cs │ ├── ImageCropper.xaml │ ├── ImageCropperThumb.cs │ ├── ImageCropperThumb.xaml │ ├── ThumbPlacement.cs │ └── ThumbPosition.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Winsta.Controls.rd.xml └── Winsta.Controls.csproj ├── WinstaBackgroundHelpers ├── Mqtt │ ├── Exceptions.cs │ └── Packets │ │ ├── ConnAckPacket.cs │ │ ├── ConnectPacket.cs │ │ ├── ConnectReturnCode.cs │ │ ├── DisconnectPacket.cs │ │ ├── Packet.cs │ │ ├── PacketType.cs │ │ ├── PacketWithId.cs │ │ ├── PingReqPacket.cs │ │ ├── PingRespPacket.cs │ │ ├── PubAckPacket.cs │ │ ├── PubCompPacket.cs │ │ ├── PubRecPacket.cs │ │ ├── PubRelPacket.cs │ │ ├── PublishPacket.cs │ │ ├── QualityOfService.cs │ │ ├── SubAckPacket.cs │ │ ├── SubscribePacket.cs │ │ ├── SubscriptionRequest.cs │ │ ├── UnsubAckPacket.cs │ │ └── UnsubscribePacket.cs ├── Properties │ └── AssemblyInfo.cs ├── Push │ ├── FbnsUserAgent.cs │ ├── Packets │ │ ├── FbnsConnAckPacket.cs │ │ ├── FbnsConnectPacket.cs │ │ ├── FbnsPacketDecoder.cs │ │ ├── FbnsPacketEncoder.cs │ │ └── PacketDecoder.cs │ ├── PayloadProcessor.cs │ └── PushClient.cs ├── Realtime │ ├── Handlers │ │ ├── PresenceEventArgs.cs │ │ └── ThreadTypingEventsArgs.cs │ ├── RealtimeClient.SendItems.cs │ ├── RealtimeClient.cs │ ├── RealtimeHelper.cs │ ├── RealtimePayload.cs │ ├── Responses │ │ ├── Models │ │ │ └── InstaRealtimeRespond.cs │ │ └── Wrappers │ │ │ └── InstaRealtimeResponse.cs │ ├── StandalonePacketDecoder.cs │ ├── StandalonePacketEncoder.cs │ └── Subs │ │ ├── GraphQL.cs │ │ └── SkyWalker.cs └── WinstaBackgroundHelpers.csproj ├── WinstaBackgroundTask ├── NotifyQuickReplyTask.cs ├── Properties │ └── AssemblyInfo.cs ├── SocketActivityTask.cs └── WinstaBackgroundTask.csproj ├── WinstaCore ├── AppCore.cs ├── ApplicationSettingsManager.cs ├── Attributes │ └── RangePlayerAttribute.cs ├── Constants │ ├── FluentRegularFontCharacters.cs │ ├── Instagram │ │ └── Stories │ │ │ └── PollColorConstants.cs │ └── RegexConstants.cs ├── Converters │ └── FileConverters │ │ ├── FileConverter.cs │ │ ├── ImageFileConverter.cs │ │ └── VideoFileConverter.cs ├── CryptoHelper.cs ├── Enums │ ├── ApplicationLockMode.cs │ ├── ApplicationUserInterfaceModel.cs │ ├── CropperUploadEnum.cs │ └── PlaybackQualityEnum.cs ├── FodyWeavers.xml ├── Helpers │ ├── AspectRatioHelper.cs │ ├── Cache │ │ └── CacheManager.cs │ ├── CaptionParser.cs │ ├── ControlSizeHelper.cs │ ├── ExtensionMethods │ │ ├── LinkClickedEventExtensions.cs │ │ └── ListViewExtensions.cs │ ├── FFMpegHelpers │ │ ├── FFMpegAudioHelpers.cs │ │ └── FFMpegVideoHelpers.cs │ ├── MessageDialogHelper.cs │ ├── MultiViewing │ │ └── ViewLifetimeControl.cs │ ├── OSVersionHelper.cs │ └── WebViewUserAgentHelper.cs ├── Interfaces │ ├── IWinstaApp.cs │ └── Views │ │ ├── Accounts │ │ ├── IChallengeRequiredView.cs │ │ ├── ILoginView.cs │ │ └── ITwoFactorAuthView.cs │ │ ├── Activities │ │ ├── IActivitiesView.cs │ │ └── IFollowRequestsView.cs │ │ ├── Directs │ │ ├── IDirectThreadView.cs │ │ └── IDirectsListView.cs │ │ ├── IHomeView.cs │ │ ├── IMainView.cs │ │ ├── IView.cs │ │ ├── Medias │ │ ├── IExploreView.cs │ │ ├── IImageViewerPage.cs │ │ ├── IIncrementalInstaMediaView.cs │ │ ├── IMediaLikersView.cs │ │ ├── ISingleInstaMediaView.cs │ │ └── Upload │ │ │ ├── IFeedUploaderView.cs │ │ │ ├── IMediaCropperView.cs │ │ │ └── IVideoMediaRangeSlider.cs │ │ ├── Profiles │ │ ├── IHashtagProfileView.cs │ │ ├── IPlaceProfileView.cs │ │ ├── IUserFollowersView.cs │ │ ├── IUserFollowingsView.cs │ │ ├── IUserProfileEditView.cs │ │ └── IUserProfileView.cs │ │ ├── Search │ │ └── ISearchView.cs │ │ └── Settings │ │ ├── IAccountSettings.cs │ │ ├── IApplicationSettingsView.cs │ │ └── ISettingsView.cs ├── Models │ ├── ConfigureDelays │ │ ├── ImageConfigureMediaDelay.cs │ │ └── VideoConfigureMediaDelay.cs │ ├── Core │ │ └── WinstaSynchContext.cs │ ├── LanguageDefinition.cs │ └── Navigation │ │ └── ExNavigationEventArgs.cs ├── Properties │ ├── AssemblyInfo.cs │ └── WinstaCore.rd.xml ├── ServiceProviderExtensions.cs ├── Services │ ├── NavigationService.cs │ └── WindowManagerService.cs ├── Theme │ └── AppTheme.cs └── WinstaCore.csproj ├── WinstaMobile ├── App.xaml ├── App.xaml.cs ├── Converters │ └── Profiles │ │ └── UserInfoToButtonConverter.cs ├── Core │ └── Behaviors │ │ └── SynchronizeHorizontalOffsetBehavior.cs ├── ExtendedSplashScreen.xaml ├── ExtendedSplashScreen.xaml.cs ├── FodyWeavers.xml ├── Helpers │ └── ExtensionMethods │ │ └── DependencyObjectExtensions.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Services │ └── AccountManagementService.cs ├── UI │ ├── Comments │ │ ├── InstaCommentPresenterUC.xaml │ │ └── InstaCommentPresenterUC.xaml.cs │ ├── Controls │ │ ├── CompositionControl.cs │ │ ├── ExpandableSettingControl.xaml │ │ ├── ExpandableSettingControl.xaml.cs │ │ ├── ExpandableSettingHeaderControl.xaml │ │ ├── ExpandableSettingHeaderControl.xaml.cs │ │ ├── NavigationSettingContent.xaml │ │ ├── NavigationSettingContent.xaml.cs │ │ └── NoCastButtonMediaTransportControls.cs │ ├── Dialogs │ │ ├── UserSelectionDialog.xaml │ │ └── UserSelectionDialog.xaml.cs │ ├── Directs │ │ ├── ChatListView.cs │ │ ├── GiphyPanelUC.xaml │ │ ├── GiphyPanelUC.xaml.cs │ │ ├── GroupDirectThread.xaml │ │ ├── GroupDirectThread.xaml.cs │ │ ├── MessageContainer │ │ │ ├── AnimatedGifMessageContainerUC.xaml │ │ │ ├── ClipMessageContainerUC.xaml │ │ │ ├── ClipMessageContainerUC.xaml.cs │ │ │ ├── IGTVShareMessageContainerUC.xaml │ │ │ ├── IGTVShareMessageContainerUC.xaml.cs │ │ │ ├── LikeMessageContainerUC.xaml │ │ │ ├── LikeMessageContainerUC.xaml.cs │ │ │ ├── LinkMessageContainerUC.xaml │ │ │ ├── LinkMessageContainerUC.xaml.cs │ │ │ ├── MediaMessageContainerUC.xaml │ │ │ ├── MediaMessageContainerUC.xaml.cs │ │ │ ├── MediaShareMessageContainerUC.xaml │ │ │ ├── MediaShareMessageContainerUC.xaml.cs │ │ │ ├── MessageContainerResources.xaml │ │ │ ├── NotSupportedMessageContainerUC.xaml │ │ │ ├── NotSupportedMessageContainerUC.xaml.cs │ │ │ ├── PlaceholderMessageContainerUC.xaml │ │ │ ├── PlaceholderMessageContainerUC.xaml.cs │ │ │ ├── ProfileMessageContainerUC.xaml │ │ │ ├── ProfileMessageContainerUC.xaml.cs │ │ │ ├── StoryReplyMessageContainerUC.xaml │ │ │ ├── StoryReplyMessageContainerUC.xaml.cs │ │ │ ├── StoryShareMessageContainerUC.xaml │ │ │ ├── StoryShareMessageContainerUC.xaml.cs │ │ │ ├── TextMessageContainerUC.xaml │ │ │ ├── TextMessageContainerUC.xaml.cs │ │ │ ├── VoiceMessageContainerUC.xaml │ │ │ ├── VoiceMessageContainerUC.xaml.cs │ │ │ ├── XmaMediaShareMessageContainerUC.xaml │ │ │ └── XmaMediaShareMessageContainerUC.xaml.cs │ │ ├── MessageContainerUC.xaml │ │ ├── MessageContainerUC.xaml.cs │ │ ├── PrivateDirectThread.xaml │ │ └── PrivateDirectThread.xaml.cs │ ├── Flyouts │ │ ├── Directs │ │ │ ├── DirectMessageItemMenuFlyout.cs │ │ │ ├── GroupMessageThreadMenuFlyout.cs │ │ │ └── PrivateMessageThreadMenuFlyout.cs │ │ ├── InstaMediaFlyout.cs │ │ ├── Profiles │ │ │ └── UserProfileMenuFlyout.cs │ │ ├── Stories │ │ │ ├── InstaBroadcastFlyout.cs │ │ │ ├── InstaReelFeedFlyout.cs │ │ │ └── InstaStoryItemFlyout.cs │ │ └── SwitchUserFlyout.cs │ ├── Generic │ │ ├── InstaUserPresenterUC.xaml │ │ ├── InstaUserPresenterUC.xaml.cs │ │ ├── LikeButtonControl.xaml │ │ ├── LikeButtonControl.xaml.cs │ │ ├── SaveButtonControl.xaml │ │ └── SaveButtonControl.xaml.cs │ ├── Media │ │ ├── CoAuthorUserProviderUC.xaml │ │ ├── CoAuthorUserProviderUC.xaml.cs │ │ ├── InstaMediaCarouselPresenterUC.xaml │ │ ├── InstaMediaCarouselPresenterUC.xaml.cs │ │ ├── InstaMediaImagePresenterUC.xaml │ │ ├── InstaMediaImagePresenterUC.xaml.cs │ │ ├── InstaMediaPresenterUC.xaml │ │ ├── InstaMediaPresenterUC.xaml.cs │ │ ├── InstaMediaTileUC.xaml │ │ ├── InstaMediaTileUC.xaml.cs │ │ ├── InstaMediaVideoPresenterUC.xaml │ │ └── InstaMediaVideoPresenterUC.xaml.cs │ ├── Search │ │ ├── HashtagSearchUC.xaml │ │ ├── HashtagSearchUC.xaml.cs │ │ ├── PeopleSearchUC.xaml │ │ ├── PeopleSearchUC.xaml.cs │ │ ├── PlaceSearchUC.xaml │ │ └── PlaceSearchUC.xaml.cs │ └── Stories │ │ ├── InstaBroadcastPresenterUC.xaml │ │ ├── InstaBroadcastPresenterUC.xaml.cs │ │ ├── InstaHighlightFeedPresenterUC.xaml │ │ ├── InstaHighlightFeedPresenterUC.xaml.cs │ │ ├── InstaReelFeedPresenterUC.xaml │ │ ├── InstaReelFeedPresenterUC.xaml.cs │ │ ├── InstaStoryItemPresenterUC.xaml │ │ ├── InstaStoryItemPresenterUC.xaml.cs │ │ └── StickersView │ │ ├── PollStickerUC.xaml │ │ ├── PollStickerUC.xaml.cs │ │ ├── QuestionStickerUC.xaml │ │ ├── QuestionStickerUC.xaml.cs │ │ ├── QuizStickerUC.xaml │ │ ├── QuizStickerUC.xaml.cs │ │ ├── SliderStickerUC.xaml │ │ ├── SliderStickerUC.xaml.cs │ │ ├── StickersViewGrid.xaml │ │ └── StickersViewGrid.xaml.cs ├── ViewModels │ └── Media │ │ └── InstaMediaPresenterUCViewModel.cs ├── Views │ ├── Account │ │ ├── ChallengeRequiredView.xaml │ │ ├── ChallengeRequiredView.xaml.cs │ │ ├── LoginView.xaml │ │ ├── LoginView.xaml.cs │ │ ├── TwoFactorAuthView.xaml │ │ └── TwoFactorAuthView.xaml.cs │ ├── Activities │ │ ├── ActivitiesView.xaml │ │ ├── ActivitiesView.xaml.cs │ │ ├── FollowRequestsView.xaml │ │ └── FollowRequestsView.xaml.cs │ ├── BasePage.cs │ ├── Comments │ │ ├── CommentLikersView.xaml │ │ ├── CommentLikersView.xaml.cs │ │ ├── MediaCommentsView.xaml │ │ └── MediaCommentsView.xaml.cs │ ├── Directs │ │ ├── DirectThreadView.xaml │ │ ├── DirectThreadView.xaml.cs │ │ ├── DirectsListView.xaml │ │ └── DirectsListView.xaml.cs │ ├── HomeView.xaml │ ├── HomeView.xaml.cs │ ├── Media │ │ ├── ExploreMediaLoadPage.xaml │ │ ├── ExploreMediaLoadPage.xaml.cs │ │ ├── ExploreView.xaml │ │ ├── ExploreView.xaml.cs │ │ ├── ImageViewerPage.xaml │ │ ├── ImageViewerPage.xaml.cs │ │ ├── IncrementalInstaMediaView.xaml │ │ ├── IncrementalInstaMediaView.xaml.cs │ │ ├── MediaLikersView.xaml │ │ ├── MediaLikersView.xaml.cs │ │ ├── SingleInstaMediaView.xaml │ │ ├── SingleInstaMediaView.xaml.cs │ │ └── Upload │ │ │ ├── FeedUploaderView.xaml │ │ │ ├── FeedUploaderView.xaml.cs │ │ │ ├── MediaCropperView.xaml │ │ │ ├── MediaCropperView.xaml.cs │ │ │ ├── VideoMediaRangeSlider.xaml │ │ │ └── VideoMediaRangeSlider.xaml.cs │ ├── Profiles │ │ ├── HashtagProfileView.xaml │ │ ├── HashtagProfileView.xaml.cs │ │ ├── UserFollowersView.xaml │ │ ├── UserFollowersView.xaml.cs │ │ ├── UserFollowingsView.xaml │ │ ├── UserFollowingsView.xaml.cs │ │ ├── UserProfileView.xaml │ │ └── UserProfileView.xaml.cs │ ├── Search │ │ ├── SearchView.xaml │ │ └── SearchView.xaml.cs │ ├── Settings │ │ ├── AccountSettings.xaml │ │ ├── AccountSettings.xaml.cs │ │ ├── ApplicationSettingsView.xaml │ │ ├── ApplicationSettingsView.xaml.cs │ │ ├── SettingsView.xaml │ │ └── SettingsView.xaml.cs │ └── Stories │ │ ├── HashtagStoryItemView.xaml │ │ ├── HashtagStoryItemView.xaml.cs │ │ ├── LivePlayerView.xaml │ │ ├── LivePlayerView.xaml.cs │ │ ├── StoryCarouselView.xaml │ │ ├── StoryCarouselView.xaml.cs │ │ ├── StoryItemView.xaml │ │ └── StoryItemView.xaml.cs └── WinstaMobile.csproj ├── WinstaNext.Converters ├── BoolToVisibilityConverter.cs ├── Directs │ ├── DirectItemTimeConverter.cs │ ├── HasUnreadToFontWeightConverter.cs │ ├── UserIdToHorizontalAlignmentConverter.cs │ └── UserIdToProfilePictureVisibilityConverter.cs ├── EnumToBooleanConverter.cs ├── Enums │ └── InstaFollowOrderTypeConverter.cs ├── IntToIsEnabledConverter.cs ├── IntToVisibilityConverter.cs ├── InvertBoolConverter.cs ├── Media │ ├── CaptionToMarkdownConverter.cs │ ├── CoAuthorLoadConverter.cs │ ├── InstaMediaThumbnailConverter.cs │ ├── InstaMediaTypeIconConverter.cs │ ├── InstaUserProfilePictureConverter.cs │ ├── MediaDateTimeconverter.cs │ └── MediaQualityConverter.cs ├── NullToBooleanConverter.cs ├── PossibleLargeNumbersConverter.cs ├── Properties │ ├── AssemblyInfo.cs │ └── WinstaNext.Converters.rd.xml ├── RichTextToMarkdownTextConverter.cs ├── Stories │ ├── PollStickerColorConverter.cs │ ├── StoryBorderColorConverter.cs │ ├── StoryItemImageConverter.cs │ └── StoryItemVideoConverter.cs ├── TextToFlowDirectionConverter.cs └── WinstaNext.Converters.csproj ├── WinstaNext.sln ├── WinstaNext ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Fonts │ │ ├── FluentSystemIcons-Filled.ttf │ │ ├── FluentSystemIcons-Regular.ttf │ │ ├── FluentSystemIcons-Resizable.ttf │ │ ├── Instagram │ │ │ ├── AvenyTMedium.otf │ │ │ ├── AvenyTRegular.otf │ │ │ ├── CosmopolitanScriptRegular.otf │ │ │ ├── FBDisplayLightSlim.ttf │ │ │ ├── FBWordmarkRegularSlim.ttf │ │ │ └── FacebookNarrow_A_Rg.ttf │ │ └── SegoeIcons.ttf │ ├── Icons │ │ ├── NoOne.png │ │ ├── WinstaIcon.png │ │ └── WinstaLogo.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 │ ├── Lottie │ │ ├── Dislike.json │ │ ├── Gears.json │ │ ├── Insta-anim.json │ │ ├── Like.json │ │ ├── Loading.json │ │ ├── Upload.json │ │ ├── UploadingAnim.json │ │ └── circles-menu-1.json │ ├── Settings │ │ ├── ListView.png │ │ └── StaggeredView.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 │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Controls │ ├── WinstaListView.xaml │ └── WinstaListView.xaml.cs ├── Converters │ └── Profiles │ │ ├── InstaFriendshipShortStatusButtonConverter.cs │ │ └── UserInfoToButtonConverter.cs ├── Core │ ├── Behaviors │ │ └── SynchronizeHorizontalOffsetBehavior.cs │ └── TaskCompletionNotifier.cs ├── ExtendedSplashScreen.xaml ├── ExtendedSplashScreen.xaml.cs ├── FodyWeavers.xml ├── Helpers │ ├── DownloadUploadHelper │ │ ├── DownloadHelper.cs │ │ └── UploadHelper.cs │ ├── NotifyHelper.cs │ ├── StringCipher.cs │ └── UserAgentHelper.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Services │ └── AccountManagementService.cs ├── Strings │ ├── en-US │ │ ├── General.resw │ │ ├── Instagram.resw │ │ ├── Messages.resw │ │ ├── Settings.resw │ │ └── Units.resw │ ├── fa-Ir │ │ ├── General.resw │ │ ├── Instagram.resw │ │ ├── Messages.resw │ │ ├── Settings.resw │ │ └── Units.resw │ └── pt-BR │ │ ├── General.resw │ │ ├── Instagram.resw │ │ ├── Messages.resw │ │ ├── Settings.resw │ │ └── Units.resw ├── Templates │ └── ToastNotification.xml ├── UI │ ├── Comments │ │ ├── InstaCommentPresenterUC.xaml │ │ └── InstaCommentPresenterUC.xaml.cs │ ├── Controls │ │ ├── CompositionControl.cs │ │ ├── ExpandableSettingControl.xaml │ │ ├── ExpandableSettingControl.xaml.cs │ │ ├── ExpandableSettingHeaderControl.xaml │ │ ├── ExpandableSettingHeaderControl.xaml.cs │ │ ├── NavigationSettingContent.xaml │ │ ├── NavigationSettingContent.xaml.cs │ │ └── NoCastButtonMediaTransportControls.cs │ ├── Dialogs │ │ ├── BaseContentDialog.xaml │ │ ├── BaseContentDialog.xaml.cs │ │ ├── UserSelectionDialog.xaml │ │ └── UserSelectionDialog.xaml.cs │ ├── Directs │ │ ├── ChatListView.cs │ │ ├── GiphyPanelUC.xaml │ │ ├── GiphyPanelUC.xaml.cs │ │ ├── GroupDirectThread.xaml │ │ ├── GroupDirectThread.xaml.cs │ │ ├── MessageContainer │ │ │ ├── AnimatedGifMessageContainerUC.xaml │ │ │ ├── AnimatedGifMessageContainerUC.xaml.cs │ │ │ ├── ClipMessageContainerUC.xaml │ │ │ ├── ClipMessageContainerUC.xaml.cs │ │ │ ├── IGTVShareMessageContainerUC.xaml │ │ │ ├── IGTVShareMessageContainerUC.xaml.cs │ │ │ ├── LikeMessageContainerUC.xaml │ │ │ ├── LikeMessageContainerUC.xaml.cs │ │ │ ├── LinkMessageContainerUC.xaml │ │ │ ├── LinkMessageContainerUC.xaml.cs │ │ │ ├── MediaMessageContainerUC.xaml │ │ │ ├── MediaMessageContainerUC.xaml.cs │ │ │ ├── MediaShareMessageContainerUC.xaml │ │ │ ├── MediaShareMessageContainerUC.xaml.cs │ │ │ ├── MessageContainerResources.xaml │ │ │ ├── NotSupportedMessageContainerUC.xaml │ │ │ ├── NotSupportedMessageContainerUC.xaml.cs │ │ │ ├── PlaceholderMessageContainerUC.xaml │ │ │ ├── PlaceholderMessageContainerUC.xaml.cs │ │ │ ├── ProfileMessageContainerUC.xaml │ │ │ ├── ProfileMessageContainerUC.xaml.cs │ │ │ ├── StoryReplyMessageContainerUC.xaml │ │ │ ├── StoryReplyMessageContainerUC.xaml.cs │ │ │ ├── StoryShareMessageContainerUC.xaml │ │ │ ├── StoryShareMessageContainerUC.xaml.cs │ │ │ ├── TextMessageContainerUC.xaml │ │ │ ├── TextMessageContainerUC.xaml.cs │ │ │ ├── VoiceMessageContainerUC.xaml │ │ │ ├── VoiceMessageContainerUC.xaml.cs │ │ │ ├── XmaMediaShareMessageContainerUC.xaml │ │ │ └── XmaMediaShareMessageContainerUC.xaml.cs │ │ ├── MessageContainerUC.xaml │ │ ├── MessageContainerUC.xaml.cs │ │ ├── PrivateDirectThread.xaml │ │ └── PrivateDirectThread.xaml.cs │ ├── Flyouts │ │ ├── Directs │ │ │ ├── DirectMessageItemMenuFlyout.cs │ │ │ ├── GroupMessageThreadMenuFlyout.cs │ │ │ └── PrivateMessageThreadMenuFlyout.cs │ │ ├── InstaMediaFlyout.cs │ │ ├── Profiles │ │ │ └── UserProfileMenuFlyout.cs │ │ ├── Stories │ │ │ ├── InstaBroadcastFlyout.cs │ │ │ ├── InstaReelFeedFlyout.cs │ │ │ └── InstaStoryItemFlyout.cs │ │ └── SwitchUserFlyout.cs │ ├── Generic │ │ ├── InstaUserPresenterUC.xaml │ │ ├── InstaUserPresenterUC.xaml.cs │ │ ├── LikeButtonControl.xaml │ │ ├── LikeButtonControl.xaml.cs │ │ ├── PersonPictureResources.xaml │ │ ├── SaveButtonControl.xaml │ │ └── SaveButtonControl.xaml.cs │ ├── Media │ │ ├── CoAuthorUserProviderUC.xaml │ │ ├── CoAuthorUserProviderUC.xaml.cs │ │ ├── InstaMediaCarouselPresenterUC.xaml │ │ ├── InstaMediaCarouselPresenterUC.xaml.cs │ │ ├── InstaMediaImagePresenterUC.xaml │ │ ├── InstaMediaImagePresenterUC.xaml.cs │ │ ├── InstaMediaPresenterUC.xaml │ │ ├── InstaMediaPresenterUC.xaml.cs │ │ ├── InstaMediaTileUC.xaml │ │ ├── InstaMediaTileUC.xaml.cs │ │ ├── InstaMediaVideoPresenterUC.xaml │ │ ├── InstaMediaVideoPresenterUC.xaml.cs │ │ ├── StaggeredTileUC.xaml │ │ └── StaggeredTileUC.xaml.cs │ ├── Search │ │ ├── HashtagSearchUC.xaml │ │ ├── HashtagSearchUC.xaml.cs │ │ ├── PeopleSearchUC.xaml │ │ ├── PeopleSearchUC.xaml.cs │ │ ├── PlaceSearchUC.xaml │ │ └── PlaceSearchUC.xaml.cs │ └── Stories │ │ ├── InstaBroadcastPresenterUC.xaml │ │ ├── InstaBroadcastPresenterUC.xaml.cs │ │ ├── InstaHighlightFeedPresenterUC.xaml │ │ ├── InstaHighlightFeedPresenterUC.xaml.cs │ │ ├── InstaReelFeedPresenterUC.xaml │ │ ├── InstaReelFeedPresenterUC.xaml.cs │ │ ├── InstaStoryItemPresenterUC.xaml │ │ ├── InstaStoryItemPresenterUC.xaml.cs │ │ └── StickersView │ │ ├── PollStickerUC.xaml │ │ ├── PollStickerUC.xaml.cs │ │ ├── QuestionStickerUC.xaml │ │ ├── QuestionStickerUC.xaml.cs │ │ ├── QuizStickerUC.xaml │ │ ├── QuizStickerUC.xaml.cs │ │ ├── SliderStickerUC.xaml │ │ ├── SliderStickerUC.xaml.cs │ │ ├── StickersViewGrid.xaml │ │ └── StickersViewGrid.xaml.cs ├── ViewModels │ └── Media │ │ └── InstaMediaPresenterUCViewModel.cs ├── Views │ ├── Account │ │ ├── ChallengeRequiredView.xaml │ │ ├── ChallengeRequiredView.xaml.cs │ │ ├── LoginView.xaml │ │ ├── LoginView.xaml.cs │ │ ├── TwoFactorAuthView.xaml │ │ └── TwoFactorAuthView.xaml.cs │ ├── Activities │ │ ├── ActivitiesView.xaml │ │ ├── ActivitiesView.xaml.cs │ │ ├── FollowRequestsView.xaml │ │ └── FollowRequestsView.xaml.cs │ ├── BasePage.cs │ ├── BaseUserControl.cs │ ├── Comments │ │ ├── CommentLikersView.xaml │ │ ├── CommentLikersView.xaml.cs │ │ ├── MediaCommentsView.xaml │ │ └── MediaCommentsView.xaml.cs │ ├── Directs │ │ ├── DirectThreadView.xaml │ │ ├── DirectThreadView.xaml.cs │ │ ├── DirectsListView.xaml │ │ └── DirectsListView.xaml.cs │ ├── HomeView.xaml │ ├── HomeView.xaml.cs │ ├── Media │ │ ├── ExploreView.xaml │ │ ├── ExploreView.xaml.cs │ │ ├── ImageViewerPage.xaml │ │ ├── ImageViewerPage.xaml.cs │ │ ├── IncrementalInstaMediaView.xaml │ │ ├── IncrementalInstaMediaView.xaml.cs │ │ ├── IncrementalStaggeredView.xaml │ │ ├── IncrementalStaggeredView.xaml.cs │ │ ├── MediaLikersView.xaml │ │ ├── MediaLikersView.xaml.cs │ │ ├── SingleInstaMediaView.xaml │ │ ├── SingleInstaMediaView.xaml.cs │ │ └── Upload │ │ │ ├── FeedUploaderView.xaml │ │ │ ├── FeedUploaderView.xaml.cs │ │ │ ├── MediaCropperView.xaml │ │ │ ├── MediaCropperView.xaml.cs │ │ │ ├── VideoMediaRangeSlider.xaml │ │ │ └── VideoMediaRangeSlider.xaml.cs │ ├── Profiles │ │ ├── HashtagProfileView.xaml │ │ ├── HashtagProfileView.xaml.cs │ │ ├── PlaceProfileView.xaml │ │ ├── PlaceProfileView.xaml.cs │ │ ├── UserFollowersView.xaml │ │ ├── UserFollowersView.xaml.cs │ │ ├── UserFollowingsView.xaml │ │ ├── UserFollowingsView.xaml.cs │ │ ├── UserProfileEditView.xaml │ │ ├── UserProfileEditView.xaml.cs │ │ ├── UserProfileView.xaml │ │ └── UserProfileView.xaml.cs │ ├── Search │ │ ├── SearchView.xaml │ │ └── SearchView.xaml.cs │ ├── Settings │ │ ├── AccountSettings.xaml │ │ ├── AccountSettings.xaml.cs │ │ ├── ApplicationSettingsView.xaml │ │ ├── ApplicationSettingsView.xaml.cs │ │ ├── SettingsView.xaml │ │ └── SettingsView.xaml.cs │ ├── StaggeredHomeView.xaml │ ├── StaggeredHomeView.xaml.cs │ └── Stories │ │ ├── HashtagStoryItemView.xaml │ │ ├── HashtagStoryItemView.xaml.cs │ │ ├── LivePlayerView.xaml │ │ ├── LivePlayerView.xaml.cs │ │ ├── StoryCarouselView.xaml │ │ ├── StoryCarouselView.xaml.cs │ │ ├── StoryItemView.xaml │ │ └── StoryItemView.xaml.cs └── WinstaNext.csproj └── en-us dark.svg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/.gitignore -------------------------------------------------------------------------------- /Abstractions/Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Abstractions.csproj -------------------------------------------------------------------------------- /Abstractions/Direct/Converters/InstaDirectInboxItemListConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Direct/Converters/InstaDirectInboxItemListConverter.cs -------------------------------------------------------------------------------- /Abstractions/Direct/Models/InstaDirectInboxItemFullModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Direct/Models/InstaDirectInboxItemFullModel.cs -------------------------------------------------------------------------------- /Abstractions/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/FodyWeavers.xml -------------------------------------------------------------------------------- /Abstractions/Media/WinstaMediaLikerUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Media/WinstaMediaLikerUser.cs -------------------------------------------------------------------------------- /Abstractions/Navigation/IncrementalMediaViewParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Navigation/IncrementalMediaViewParameter.cs -------------------------------------------------------------------------------- /Abstractions/Navigation/MediaCommentsViewParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Navigation/MediaCommentsViewParameter.cs -------------------------------------------------------------------------------- /Abstractions/Navigation/NavigationParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Navigation/NavigationParameter.cs -------------------------------------------------------------------------------- /Abstractions/Navigation/StoryCarouselViewParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Navigation/StoryCarouselViewParameter.cs -------------------------------------------------------------------------------- /Abstractions/Properties/Abstractions.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Properties/Abstractions.rd.xml -------------------------------------------------------------------------------- /Abstractions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Abstractions/ServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/ServiceProviderExtensions.cs -------------------------------------------------------------------------------- /Abstractions/Stories/WinstaHighlightFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Stories/WinstaHighlightFeed.cs -------------------------------------------------------------------------------- /Abstractions/Stories/WinstaReelFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Stories/WinstaReelFeed.cs -------------------------------------------------------------------------------- /Abstractions/Stories/WinstaStoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/Stories/WinstaStoryItem.cs -------------------------------------------------------------------------------- /Abstractions/WinstaObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Abstractions/WinstaObjectConverter.cs -------------------------------------------------------------------------------- /Core.Collections/Core.Collections.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/Core.Collections.csproj -------------------------------------------------------------------------------- /Core.Collections/ExtendedObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/ExtendedObservableCollection.cs -------------------------------------------------------------------------------- /Core.Collections/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/FodyWeavers.xml -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Comments/IncrementalCommentLikers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Comments/IncrementalCommentLikers.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Comments/IncrementalMediaComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Comments/IncrementalMediaComments.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Directs/IncrementalDirectInbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Directs/IncrementalDirectInbox.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Directs/IncrementalDirectThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Directs/IncrementalDirectThread.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Directs/IncrementalGiphyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Directs/IncrementalGiphyCollection.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Media/IncrementalExploreMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Media/IncrementalExploreMedia.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Media/IncrementalHomeMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Media/IncrementalHomeMedia.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Media/IncrementalMediaLikers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Media/IncrementalMediaLikers.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Places/IncrementalPlaceTopMedias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Places/IncrementalPlaceTopMedias.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Search/IncrementalHashtagsSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Search/IncrementalHashtagsSearch.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Search/IncrementalPeopleSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Search/IncrementalPeopleSearch.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Search/IncrementalPlacesSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Search/IncrementalPlacesSearch.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Stories/IncrementalDummyStories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Stories/IncrementalDummyStories.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Stories/IncrementalFeedStories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Stories/IncrementalFeedStories.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Users/IncrementalUserFollowers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Users/IncrementalUserFollowers.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Users/IncrementalUserFollowings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Users/IncrementalUserFollowings.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Users/IncrementalUserMedias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Users/IncrementalUserMedias.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Users/IncrementalUserReels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Users/IncrementalUserReels.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Users/IncrementalUserSavedFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Users/IncrementalUserSavedFeed.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Users/IncrementalUserTVMedias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Users/IncrementalUserTVMedias.cs -------------------------------------------------------------------------------- /Core.Collections/IncrementalSources/Users/IncrementalUserTaggedMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/IncrementalSources/Users/IncrementalUserTaggedMedia.cs -------------------------------------------------------------------------------- /Core.Collections/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Core.Collections/Properties/Core.Collections.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/Properties/Core.Collections.rd.xml -------------------------------------------------------------------------------- /Core.Collections/ServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Core.Collections/ServiceProviderExtensions.cs -------------------------------------------------------------------------------- /Microsoft.Toolkit.Mvvm/ComponentModel/ObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Microsoft.Toolkit.Mvvm/ComponentModel/ObservableObject.cs -------------------------------------------------------------------------------- /Microsoft.Toolkit.Mvvm/Input/AsyncRelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Microsoft.Toolkit.Mvvm/Input/AsyncRelayCommand.cs -------------------------------------------------------------------------------- /Microsoft.Toolkit.Mvvm/Input/IAsyncRelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Microsoft.Toolkit.Mvvm/Input/IAsyncRelayCommand.cs -------------------------------------------------------------------------------- /Microsoft.Toolkit.Mvvm/Input/IRelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Microsoft.Toolkit.Mvvm/Input/IRelayCommand.cs -------------------------------------------------------------------------------- /Microsoft.Toolkit.Mvvm/Input/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Microsoft.Toolkit.Mvvm/Input/RelayCommand.cs -------------------------------------------------------------------------------- /Microsoft.Toolkit.Mvvm/Microsoft.Toolkit.Mvvm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Microsoft.Toolkit.Mvvm/Microsoft.Toolkit.Mvvm.csproj -------------------------------------------------------------------------------- /Microsoft.Toolkit.Mvvm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Microsoft.Toolkit.Mvvm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Microsoft.Toolkit.Mvvm/Properties/Microsoft.Toolkit.Mvvm.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Microsoft.Toolkit.Mvvm/Properties/Microsoft.Toolkit.Mvvm.rd.xml -------------------------------------------------------------------------------- /MinistaLivePlayback/ILivePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/ILivePlayer.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/LiveSourceBufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/LiveSourceBufferManager.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/MinistaLivePlayback.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/MinistaLivePlayback.csproj -------------------------------------------------------------------------------- /MinistaLivePlayback/MinistaPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/MinistaPlayer.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/Models/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/Models/Manifest.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/Models/MediaSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/Models/MediaSegment.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/Models/MediaSegmentInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/Models/MediaSegmentInformation.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/Models/MediaStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/Models/MediaStream.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/Models/Period.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/Models/Period.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/Player.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/Properties/MinistaLivePlayback.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/Properties/MinistaLivePlayback.rd.xml -------------------------------------------------------------------------------- /MinistaLivePlayback/SourceBufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/SourceBufferManager.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/Util/DashManifestParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/Util/DashManifestParser.cs -------------------------------------------------------------------------------- /MinistaLivePlayback/Util/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/MinistaLivePlayback/Util/Utils.cs -------------------------------------------------------------------------------- /NotificationHandler/NotificationActivationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/NotificationHandler/NotificationActivationHelper.cs -------------------------------------------------------------------------------- /NotificationHandler/NotificationHandler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/NotificationHandler/NotificationHandler.csproj -------------------------------------------------------------------------------- /NotificationHandler/Notify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/NotificationHandler/Notify.cs -------------------------------------------------------------------------------- /NotificationHandler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/NotificationHandler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NotificationHandler/Properties/NotificationHandler.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/NotificationHandler/Properties/NotificationHandler.rd.xml -------------------------------------------------------------------------------- /NotificationHandler/PushHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/NotificationHandler/PushHelper.cs -------------------------------------------------------------------------------- /PrivacyPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/PrivacyPolicy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/README.md -------------------------------------------------------------------------------- /Resources/LanguageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Resources/LanguageManager.cs -------------------------------------------------------------------------------- /Resources/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Resources/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Resources/Properties/Resources.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Resources/Properties/Resources.rd.xml -------------------------------------------------------------------------------- /Resources/Resources.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Resources/Resources.csproj -------------------------------------------------------------------------------- /Store-Badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Store-Badge.svg -------------------------------------------------------------------------------- /TemplateSelectors/Activities/RecentActivityFeedItemTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/TemplateSelectors/Activities/RecentActivityFeedItemTemplateSelector.cs -------------------------------------------------------------------------------- /TemplateSelectors/Directs/InstaDirectInboxItemTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/TemplateSelectors/Directs/InstaDirectInboxItemTemplateSelector.cs -------------------------------------------------------------------------------- /TemplateSelectors/Directs/InstaDirectInboxThreadTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/TemplateSelectors/Directs/InstaDirectInboxThreadTemplateSelector.cs -------------------------------------------------------------------------------- /TemplateSelectors/Media/CarouselMediaTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/TemplateSelectors/Media/CarouselMediaTemplateSelector.cs -------------------------------------------------------------------------------- /TemplateSelectors/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/TemplateSelectors/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TemplateSelectors/Properties/TemplateSelectors.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/TemplateSelectors/Properties/TemplateSelectors.rd.xml -------------------------------------------------------------------------------- /TemplateSelectors/Searches/SearchItemTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/TemplateSelectors/Searches/SearchItemTemplateSelector.cs -------------------------------------------------------------------------------- /TemplateSelectors/Searches/WinstaStoryFeedItemTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/TemplateSelectors/Searches/WinstaStoryFeedItemTemplateSelector.cs -------------------------------------------------------------------------------- /TemplateSelectors/Stories/WinstaStoryItemTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/TemplateSelectors/Stories/WinstaStoryItemTemplateSelector.cs -------------------------------------------------------------------------------- /TemplateSelectors/TemplateSelectors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/TemplateSelectors/TemplateSelectors.csproj -------------------------------------------------------------------------------- /Thrift/BinaryEncoding/Binary.BigEndian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/BinaryEncoding/Binary.BigEndian.cs -------------------------------------------------------------------------------- /Thrift/BinaryEncoding/Binary.EndianCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/BinaryEncoding/Binary.EndianCodec.cs -------------------------------------------------------------------------------- /Thrift/BinaryEncoding/Binary.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/BinaryEncoding/Binary.Extensions.cs -------------------------------------------------------------------------------- /Thrift/BinaryEncoding/Binary.LittleEndian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/BinaryEncoding/Binary.LittleEndian.cs -------------------------------------------------------------------------------- /Thrift/BinaryEncoding/Binary.Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/BinaryEncoding/Binary.Stream.cs -------------------------------------------------------------------------------- /Thrift/BinaryEncoding/Binary.Varint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/BinaryEncoding/Binary.Varint.cs -------------------------------------------------------------------------------- /Thrift/BinaryEncoding/Binary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/BinaryEncoding/Binary.cs -------------------------------------------------------------------------------- /Thrift/Collections/ToStringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Collections/ToStringExtension.cs -------------------------------------------------------------------------------- /Thrift/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Thrift/Processor/ITAsyncProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Processor/ITAsyncProcessor.cs -------------------------------------------------------------------------------- /Thrift/Processor/ITProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Processor/ITProcessorFactory.cs -------------------------------------------------------------------------------- /Thrift/Processor/TMultiplexedProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Processor/TMultiplexedProcessor.cs -------------------------------------------------------------------------------- /Thrift/Processor/TSingletonProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Processor/TSingletonProcessorFactory.cs -------------------------------------------------------------------------------- /Thrift/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Entities/TField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Entities/TField.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Entities/TList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Entities/TList.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Entities/TMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Entities/TMap.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Entities/TMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Entities/TMessage.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Entities/TMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Entities/TMessageType.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Entities/TSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Entities/TSet.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Entities/TStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Entities/TStruct.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Entities/TType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Entities/TType.cs -------------------------------------------------------------------------------- /Thrift/Protocol/TBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/TBase.cs -------------------------------------------------------------------------------- /Thrift/Protocol/TBinaryProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/TBinaryProtocol.cs -------------------------------------------------------------------------------- /Thrift/Protocol/TCompactProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/TCompactProtocol.cs -------------------------------------------------------------------------------- /Thrift/Protocol/TJSONProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/TJSONProtocol.cs -------------------------------------------------------------------------------- /Thrift/Protocol/TMultiplexedProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/TMultiplexedProtocol.cs -------------------------------------------------------------------------------- /Thrift/Protocol/TProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/TProtocol.cs -------------------------------------------------------------------------------- /Thrift/Protocol/TProtocolDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/TProtocolDecorator.cs -------------------------------------------------------------------------------- /Thrift/Protocol/TProtocolException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/TProtocolException.cs -------------------------------------------------------------------------------- /Thrift/Protocol/TProtocolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/TProtocolFactory.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Utilities/TBase64Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Utilities/TBase64Utils.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Utilities/TJsonProtocolConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Utilities/TJsonProtocolConstants.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Utilities/TJsonProtocolHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Utilities/TJsonProtocolHelper.cs -------------------------------------------------------------------------------- /Thrift/Protocol/Utilities/TProtocolUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Protocol/Utilities/TProtocolUtil.cs -------------------------------------------------------------------------------- /Thrift/TApplicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/TApplicationException.cs -------------------------------------------------------------------------------- /Thrift/TConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/TConfiguration.cs -------------------------------------------------------------------------------- /Thrift/TException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/TException.cs -------------------------------------------------------------------------------- /Thrift/Thrift.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Thrift.csproj -------------------------------------------------------------------------------- /Thrift/Transport/Client/TMemoryBufferTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Transport/Client/TMemoryBufferTransport.cs -------------------------------------------------------------------------------- /Thrift/Transport/Client/TStreamTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Transport/Client/TStreamTransport.cs -------------------------------------------------------------------------------- /Thrift/Transport/TEndpointTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Transport/TEndpointTransport.cs -------------------------------------------------------------------------------- /Thrift/Transport/TTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Transport/TTransport.cs -------------------------------------------------------------------------------- /Thrift/Transport/TTransportException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Transport/TTransportException.cs -------------------------------------------------------------------------------- /Thrift/Transport/TTransportFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Thrift/Transport/TTransportFactory.cs -------------------------------------------------------------------------------- /ViewModels/Account/ChallengeRequiredViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Account/ChallengeRequiredViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Account/TwoFactorAuthViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Account/TwoFactorAuthViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Activities/ActivitiesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Activities/ActivitiesViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Activities/FollowRequestsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Activities/FollowRequestsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /ViewModels/BaseViewModelWithStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/BaseViewModelWithStopwatch.cs -------------------------------------------------------------------------------- /ViewModels/Comments/CommentLikersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Comments/CommentLikersViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Comments/MediaCommentsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Comments/MediaCommentsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Dialogs/BaseDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Dialogs/BaseDialogViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Dialogs/UserSelectionDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Dialogs/UserSelectionDialogViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Directs/DirectThreadViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Directs/DirectThreadViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Directs/DirectsListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Directs/DirectsListViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Directs/GiphyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Directs/GiphyViewModel.cs -------------------------------------------------------------------------------- /ViewModels/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/FodyWeavers.xml -------------------------------------------------------------------------------- /ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/HomeViewModel.cs -------------------------------------------------------------------------------- /ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Media/ExploreMediaLoadVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Media/ExploreMediaLoadVM.cs -------------------------------------------------------------------------------- /ViewModels/Media/ExploreViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Media/ExploreViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Media/IncrementalInstaMediaViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Media/IncrementalInstaMediaViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Media/MediaLikersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Media/MediaLikersViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Media/Upload/FeedMediaUploadMobileVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Media/Upload/FeedMediaUploadMobileVM.cs -------------------------------------------------------------------------------- /ViewModels/Media/Upload/FeedMediaUploadVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Media/Upload/FeedMediaUploadVM.cs -------------------------------------------------------------------------------- /ViewModels/Media/Upload/FeedUploaderVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Media/Upload/FeedUploaderVM.cs -------------------------------------------------------------------------------- /ViewModels/Media/Upload/VideoTranscoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Media/Upload/VideoTranscoder.cs -------------------------------------------------------------------------------- /ViewModels/MenuItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/MenuItemModel.cs -------------------------------------------------------------------------------- /ViewModels/Profiles/EditUserProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Profiles/EditUserProfileViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Profiles/HashtagProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Profiles/HashtagProfileViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Profiles/PlaceProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Profiles/PlaceProfileViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Profiles/UserFollowersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Profiles/UserFollowersViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Profiles/UserFollowingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Profiles/UserFollowingsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Profiles/UserProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Profiles/UserProfileViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ViewModels/Properties/ViewModels.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Properties/ViewModels.rd.xml -------------------------------------------------------------------------------- /ViewModels/Search/SearchViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Search/SearchViewModel.cs -------------------------------------------------------------------------------- /ViewModels/ServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/ServiceProviderExtensions.cs -------------------------------------------------------------------------------- /ViewModels/Settings/AccountSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Settings/AccountSettingsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Settings/ApplicationSettingsVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Settings/ApplicationSettingsVM.cs -------------------------------------------------------------------------------- /ViewModels/Settings/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Settings/SettingsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/StaggeredHomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/StaggeredHomeViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Stories/StoryCarouselViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/Stories/StoryCarouselViewModel.cs -------------------------------------------------------------------------------- /ViewModels/ViewModels.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/ViewModels/ViewModels.csproj -------------------------------------------------------------------------------- /Winsta.Controls/Extensions/FrameworkElementExtensions.Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/Extensions/FrameworkElementExtensions.Mouse.cs -------------------------------------------------------------------------------- /Winsta.Controls/Extensions/PointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/Extensions/PointExtensions.cs -------------------------------------------------------------------------------- /Winsta.Controls/Extensions/SizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/Extensions/SizeExtensions.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/BitmapFileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/BitmapFileFormat.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/CropShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/CropShape.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ImageCropper.Animations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ImageCropper.Animations.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ImageCropper.Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ImageCropper.Constants.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ImageCropper.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ImageCropper.Events.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ImageCropper.Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ImageCropper.Helpers.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ImageCropper.Logic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ImageCropper.Logic.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ImageCropper.Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ImageCropper.Properties.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ImageCropper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ImageCropper.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ImageCropper.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ImageCropper.xaml -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ImageCropperThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ImageCropperThumb.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ImageCropperThumb.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ImageCropperThumb.xaml -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ThumbPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ThumbPlacement.cs -------------------------------------------------------------------------------- /Winsta.Controls/ImageCropper/ThumbPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/ImageCropper/ThumbPosition.cs -------------------------------------------------------------------------------- /Winsta.Controls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Winsta.Controls/Properties/Winsta.Controls.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/Properties/Winsta.Controls.rd.xml -------------------------------------------------------------------------------- /Winsta.Controls/Winsta.Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/Winsta.Controls/Winsta.Controls.csproj -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Exceptions.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/ConnAckPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/ConnAckPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/ConnectPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/ConnectPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/ConnectReturnCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/ConnectReturnCode.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/DisconnectPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/DisconnectPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/Packet.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/PacketType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/PacketType.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/PacketWithId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/PacketWithId.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/PingReqPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/PingReqPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/PingRespPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/PingRespPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/PubAckPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/PubAckPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/PubCompPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/PubCompPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/PubRecPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/PubRecPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/PubRelPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/PubRelPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/PublishPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/PublishPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/QualityOfService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/QualityOfService.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/SubAckPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/SubAckPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/SubscribePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/SubscribePacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/SubscriptionRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/SubscriptionRequest.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/UnsubAckPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/UnsubAckPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Mqtt/Packets/UnsubscribePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Mqtt/Packets/UnsubscribePacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Push/FbnsUserAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Push/FbnsUserAgent.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Push/Packets/FbnsConnAckPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Push/Packets/FbnsConnAckPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Push/Packets/FbnsConnectPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Push/Packets/FbnsConnectPacket.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Push/Packets/FbnsPacketDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Push/Packets/FbnsPacketDecoder.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Push/Packets/FbnsPacketEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Push/Packets/FbnsPacketEncoder.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Push/Packets/PacketDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Push/Packets/PacketDecoder.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Push/PayloadProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Push/PayloadProcessor.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Push/PushClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Push/PushClient.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Realtime/Handlers/PresenceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Realtime/Handlers/PresenceEventArgs.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Realtime/Handlers/ThreadTypingEventsArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Realtime/Handlers/ThreadTypingEventsArgs.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Realtime/RealtimeClient.SendItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Realtime/RealtimeClient.SendItems.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Realtime/RealtimeClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Realtime/RealtimeClient.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Realtime/RealtimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Realtime/RealtimeHelper.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Realtime/RealtimePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Realtime/RealtimePayload.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Realtime/Responses/Models/InstaRealtimeRespond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Realtime/Responses/Models/InstaRealtimeRespond.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Realtime/StandalonePacketDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Realtime/StandalonePacketDecoder.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Realtime/StandalonePacketEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Realtime/StandalonePacketEncoder.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Realtime/Subs/GraphQL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Realtime/Subs/GraphQL.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/Realtime/Subs/SkyWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/Realtime/Subs/SkyWalker.cs -------------------------------------------------------------------------------- /WinstaBackgroundHelpers/WinstaBackgroundHelpers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundHelpers/WinstaBackgroundHelpers.csproj -------------------------------------------------------------------------------- /WinstaBackgroundTask/NotifyQuickReplyTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundTask/NotifyQuickReplyTask.cs -------------------------------------------------------------------------------- /WinstaBackgroundTask/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundTask/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinstaBackgroundTask/SocketActivityTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundTask/SocketActivityTask.cs -------------------------------------------------------------------------------- /WinstaBackgroundTask/WinstaBackgroundTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaBackgroundTask/WinstaBackgroundTask.csproj -------------------------------------------------------------------------------- /WinstaCore/AppCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/AppCore.cs -------------------------------------------------------------------------------- /WinstaCore/ApplicationSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/ApplicationSettingsManager.cs -------------------------------------------------------------------------------- /WinstaCore/Attributes/RangePlayerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Attributes/RangePlayerAttribute.cs -------------------------------------------------------------------------------- /WinstaCore/Constants/FluentRegularFontCharacters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Constants/FluentRegularFontCharacters.cs -------------------------------------------------------------------------------- /WinstaCore/Constants/Instagram/Stories/PollColorConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Constants/Instagram/Stories/PollColorConstants.cs -------------------------------------------------------------------------------- /WinstaCore/Constants/RegexConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Constants/RegexConstants.cs -------------------------------------------------------------------------------- /WinstaCore/Converters/FileConverters/FileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Converters/FileConverters/FileConverter.cs -------------------------------------------------------------------------------- /WinstaCore/Converters/FileConverters/ImageFileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Converters/FileConverters/ImageFileConverter.cs -------------------------------------------------------------------------------- /WinstaCore/Converters/FileConverters/VideoFileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Converters/FileConverters/VideoFileConverter.cs -------------------------------------------------------------------------------- /WinstaCore/CryptoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/CryptoHelper.cs -------------------------------------------------------------------------------- /WinstaCore/Enums/ApplicationLockMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Enums/ApplicationLockMode.cs -------------------------------------------------------------------------------- /WinstaCore/Enums/ApplicationUserInterfaceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Enums/ApplicationUserInterfaceModel.cs -------------------------------------------------------------------------------- /WinstaCore/Enums/CropperUploadEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Enums/CropperUploadEnum.cs -------------------------------------------------------------------------------- /WinstaCore/Enums/PlaybackQualityEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Enums/PlaybackQualityEnum.cs -------------------------------------------------------------------------------- /WinstaCore/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/FodyWeavers.xml -------------------------------------------------------------------------------- /WinstaCore/Helpers/AspectRatioHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/AspectRatioHelper.cs -------------------------------------------------------------------------------- /WinstaCore/Helpers/Cache/CacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/Cache/CacheManager.cs -------------------------------------------------------------------------------- /WinstaCore/Helpers/CaptionParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/CaptionParser.cs -------------------------------------------------------------------------------- /WinstaCore/Helpers/ControlSizeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/ControlSizeHelper.cs -------------------------------------------------------------------------------- /WinstaCore/Helpers/ExtensionMethods/LinkClickedEventExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/ExtensionMethods/LinkClickedEventExtensions.cs -------------------------------------------------------------------------------- /WinstaCore/Helpers/ExtensionMethods/ListViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/ExtensionMethods/ListViewExtensions.cs -------------------------------------------------------------------------------- /WinstaCore/Helpers/FFMpegHelpers/FFMpegAudioHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/FFMpegHelpers/FFMpegAudioHelpers.cs -------------------------------------------------------------------------------- /WinstaCore/Helpers/FFMpegHelpers/FFMpegVideoHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/FFMpegHelpers/FFMpegVideoHelpers.cs -------------------------------------------------------------------------------- /WinstaCore/Helpers/MessageDialogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/MessageDialogHelper.cs -------------------------------------------------------------------------------- /WinstaCore/Helpers/MultiViewing/ViewLifetimeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/MultiViewing/ViewLifetimeControl.cs -------------------------------------------------------------------------------- /WinstaCore/Helpers/OSVersionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/OSVersionHelper.cs -------------------------------------------------------------------------------- /WinstaCore/Helpers/WebViewUserAgentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Helpers/WebViewUserAgentHelper.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/IWinstaApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/IWinstaApp.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Accounts/IChallengeRequiredView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Accounts/IChallengeRequiredView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Accounts/ILoginView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Accounts/ILoginView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Accounts/ITwoFactorAuthView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Accounts/ITwoFactorAuthView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Activities/IActivitiesView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Activities/IActivitiesView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Activities/IFollowRequestsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Activities/IFollowRequestsView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Directs/IDirectThreadView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Directs/IDirectThreadView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Directs/IDirectsListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Directs/IDirectsListView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/IHomeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/IHomeView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/IMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/IMainView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/IView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/IView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Medias/IExploreView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Medias/IExploreView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Medias/IImageViewerPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Medias/IImageViewerPage.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Medias/IIncrementalInstaMediaView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Medias/IIncrementalInstaMediaView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Medias/IMediaLikersView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Medias/IMediaLikersView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Medias/ISingleInstaMediaView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Medias/ISingleInstaMediaView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Medias/Upload/IFeedUploaderView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Medias/Upload/IFeedUploaderView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Medias/Upload/IMediaCropperView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Medias/Upload/IMediaCropperView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Medias/Upload/IVideoMediaRangeSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Medias/Upload/IVideoMediaRangeSlider.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Profiles/IHashtagProfileView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Profiles/IHashtagProfileView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Profiles/IPlaceProfileView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Profiles/IPlaceProfileView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Profiles/IUserFollowersView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Profiles/IUserFollowersView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Profiles/IUserFollowingsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Profiles/IUserFollowingsView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Profiles/IUserProfileEditView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Profiles/IUserProfileEditView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Profiles/IUserProfileView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Profiles/IUserProfileView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Search/ISearchView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Search/ISearchView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Settings/IAccountSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Settings/IAccountSettings.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Settings/IApplicationSettingsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Settings/IApplicationSettingsView.cs -------------------------------------------------------------------------------- /WinstaCore/Interfaces/Views/Settings/ISettingsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Interfaces/Views/Settings/ISettingsView.cs -------------------------------------------------------------------------------- /WinstaCore/Models/ConfigureDelays/ImageConfigureMediaDelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Models/ConfigureDelays/ImageConfigureMediaDelay.cs -------------------------------------------------------------------------------- /WinstaCore/Models/ConfigureDelays/VideoConfigureMediaDelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Models/ConfigureDelays/VideoConfigureMediaDelay.cs -------------------------------------------------------------------------------- /WinstaCore/Models/Core/WinstaSynchContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Models/Core/WinstaSynchContext.cs -------------------------------------------------------------------------------- /WinstaCore/Models/LanguageDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Models/LanguageDefinition.cs -------------------------------------------------------------------------------- /WinstaCore/Models/Navigation/ExNavigationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Models/Navigation/ExNavigationEventArgs.cs -------------------------------------------------------------------------------- /WinstaCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinstaCore/Properties/WinstaCore.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Properties/WinstaCore.rd.xml -------------------------------------------------------------------------------- /WinstaCore/ServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/ServiceProviderExtensions.cs -------------------------------------------------------------------------------- /WinstaCore/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Services/NavigationService.cs -------------------------------------------------------------------------------- /WinstaCore/Services/WindowManagerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Services/WindowManagerService.cs -------------------------------------------------------------------------------- /WinstaCore/Theme/AppTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/Theme/AppTheme.cs -------------------------------------------------------------------------------- /WinstaCore/WinstaCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaCore/WinstaCore.csproj -------------------------------------------------------------------------------- /WinstaMobile/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/App.xaml -------------------------------------------------------------------------------- /WinstaMobile/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/App.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Converters/Profiles/UserInfoToButtonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Converters/Profiles/UserInfoToButtonConverter.cs -------------------------------------------------------------------------------- /WinstaMobile/Core/Behaviors/SynchronizeHorizontalOffsetBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Core/Behaviors/SynchronizeHorizontalOffsetBehavior.cs -------------------------------------------------------------------------------- /WinstaMobile/ExtendedSplashScreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/ExtendedSplashScreen.xaml -------------------------------------------------------------------------------- /WinstaMobile/ExtendedSplashScreen.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/ExtendedSplashScreen.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/FodyWeavers.xml -------------------------------------------------------------------------------- /WinstaMobile/Helpers/ExtensionMethods/DependencyObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Helpers/ExtensionMethods/DependencyObjectExtensions.cs -------------------------------------------------------------------------------- /WinstaMobile/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/MainPage.xaml -------------------------------------------------------------------------------- /WinstaMobile/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/MainPage.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Package.appxmanifest -------------------------------------------------------------------------------- /WinstaMobile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinstaMobile/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Properties/Default.rd.xml -------------------------------------------------------------------------------- /WinstaMobile/Services/AccountManagementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Services/AccountManagementService.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Comments/InstaCommentPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Comments/InstaCommentPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Comments/InstaCommentPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Comments/InstaCommentPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Controls/CompositionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Controls/CompositionControl.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Controls/ExpandableSettingControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Controls/ExpandableSettingControl.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Controls/ExpandableSettingControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Controls/ExpandableSettingControl.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Controls/ExpandableSettingHeaderControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Controls/ExpandableSettingHeaderControl.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Controls/ExpandableSettingHeaderControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Controls/ExpandableSettingHeaderControl.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Controls/NavigationSettingContent.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Controls/NavigationSettingContent.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Controls/NavigationSettingContent.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Controls/NavigationSettingContent.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Controls/NoCastButtonMediaTransportControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Controls/NoCastButtonMediaTransportControls.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Dialogs/UserSelectionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Dialogs/UserSelectionDialog.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Dialogs/UserSelectionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Dialogs/UserSelectionDialog.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/ChatListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/ChatListView.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/GiphyPanelUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/GiphyPanelUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/GiphyPanelUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/GiphyPanelUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/GroupDirectThread.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/GroupDirectThread.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/GroupDirectThread.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/GroupDirectThread.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/ClipMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/ClipMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/ClipMessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/ClipMessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/IGTVShareMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/IGTVShareMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/LikeMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/LikeMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/LikeMessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/LikeMessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/LinkMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/LinkMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/LinkMessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/LinkMessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/MediaMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/MediaMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/MediaMessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/MediaMessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/MessageContainerResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/MessageContainerResources.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/ProfileMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/ProfileMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/TextMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/TextMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/TextMessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/TextMessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainer/VoiceMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainer/VoiceMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/MessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/MessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/PrivateDirectThread.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/PrivateDirectThread.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Directs/PrivateDirectThread.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Directs/PrivateDirectThread.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Flyouts/Directs/DirectMessageItemMenuFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Flyouts/Directs/DirectMessageItemMenuFlyout.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Flyouts/Directs/GroupMessageThreadMenuFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Flyouts/Directs/GroupMessageThreadMenuFlyout.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Flyouts/Directs/PrivateMessageThreadMenuFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Flyouts/Directs/PrivateMessageThreadMenuFlyout.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Flyouts/InstaMediaFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Flyouts/InstaMediaFlyout.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Flyouts/Profiles/UserProfileMenuFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Flyouts/Profiles/UserProfileMenuFlyout.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Flyouts/Stories/InstaBroadcastFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Flyouts/Stories/InstaBroadcastFlyout.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Flyouts/Stories/InstaReelFeedFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Flyouts/Stories/InstaReelFeedFlyout.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Flyouts/Stories/InstaStoryItemFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Flyouts/Stories/InstaStoryItemFlyout.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Flyouts/SwitchUserFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Flyouts/SwitchUserFlyout.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Generic/InstaUserPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Generic/InstaUserPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Generic/InstaUserPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Generic/InstaUserPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Generic/LikeButtonControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Generic/LikeButtonControl.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Generic/LikeButtonControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Generic/LikeButtonControl.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Generic/SaveButtonControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Generic/SaveButtonControl.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Generic/SaveButtonControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Generic/SaveButtonControl.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/CoAuthorUserProviderUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/CoAuthorUserProviderUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/CoAuthorUserProviderUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/CoAuthorUserProviderUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/InstaMediaCarouselPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/InstaMediaCarouselPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/InstaMediaCarouselPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/InstaMediaCarouselPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/InstaMediaImagePresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/InstaMediaImagePresenterUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/InstaMediaImagePresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/InstaMediaImagePresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/InstaMediaPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/InstaMediaPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/InstaMediaPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/InstaMediaPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/InstaMediaTileUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/InstaMediaTileUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/InstaMediaTileUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/InstaMediaTileUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/InstaMediaVideoPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/InstaMediaVideoPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Media/InstaMediaVideoPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Media/InstaMediaVideoPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Search/HashtagSearchUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Search/HashtagSearchUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Search/HashtagSearchUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Search/HashtagSearchUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Search/PeopleSearchUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Search/PeopleSearchUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Search/PeopleSearchUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Search/PeopleSearchUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Search/PlaceSearchUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Search/PlaceSearchUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Search/PlaceSearchUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Search/PlaceSearchUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/InstaBroadcastPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/InstaBroadcastPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/InstaBroadcastPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/InstaBroadcastPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/InstaHighlightFeedPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/InstaHighlightFeedPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/InstaHighlightFeedPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/InstaHighlightFeedPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/InstaReelFeedPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/InstaReelFeedPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/InstaReelFeedPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/InstaReelFeedPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/InstaStoryItemPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/InstaStoryItemPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/InstaStoryItemPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/InstaStoryItemPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/StickersView/PollStickerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/StickersView/PollStickerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/StickersView/PollStickerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/StickersView/PollStickerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/StickersView/QuestionStickerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/StickersView/QuestionStickerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/StickersView/QuestionStickerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/StickersView/QuestionStickerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/StickersView/QuizStickerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/StickersView/QuizStickerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/StickersView/QuizStickerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/StickersView/QuizStickerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/StickersView/SliderStickerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/StickersView/SliderStickerUC.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/StickersView/SliderStickerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/StickersView/SliderStickerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/StickersView/StickersViewGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/StickersView/StickersViewGrid.xaml -------------------------------------------------------------------------------- /WinstaMobile/UI/Stories/StickersView/StickersViewGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/UI/Stories/StickersView/StickersViewGrid.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/ViewModels/Media/InstaMediaPresenterUCViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/ViewModels/Media/InstaMediaPresenterUCViewModel.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Account/ChallengeRequiredView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Account/ChallengeRequiredView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Account/ChallengeRequiredView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Account/ChallengeRequiredView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Account/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Account/LoginView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Account/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Account/LoginView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Account/TwoFactorAuthView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Account/TwoFactorAuthView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Account/TwoFactorAuthView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Account/TwoFactorAuthView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Activities/ActivitiesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Activities/ActivitiesView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Activities/ActivitiesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Activities/ActivitiesView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Activities/FollowRequestsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Activities/FollowRequestsView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Activities/FollowRequestsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Activities/FollowRequestsView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/BasePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/BasePage.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Comments/CommentLikersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Comments/CommentLikersView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Comments/CommentLikersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Comments/CommentLikersView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Comments/MediaCommentsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Comments/MediaCommentsView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Comments/MediaCommentsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Comments/MediaCommentsView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Directs/DirectThreadView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Directs/DirectThreadView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Directs/DirectThreadView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Directs/DirectThreadView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Directs/DirectsListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Directs/DirectsListView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Directs/DirectsListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Directs/DirectsListView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/HomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/HomeView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/HomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/HomeView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/ExploreMediaLoadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/ExploreMediaLoadPage.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/ExploreMediaLoadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/ExploreMediaLoadPage.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/ExploreView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/ExploreView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/ExploreView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/ExploreView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/ImageViewerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/ImageViewerPage.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/ImageViewerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/ImageViewerPage.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/IncrementalInstaMediaView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/IncrementalInstaMediaView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/IncrementalInstaMediaView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/IncrementalInstaMediaView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/MediaLikersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/MediaLikersView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/MediaLikersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/MediaLikersView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/SingleInstaMediaView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/SingleInstaMediaView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/SingleInstaMediaView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/SingleInstaMediaView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/Upload/FeedUploaderView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/Upload/FeedUploaderView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/Upload/FeedUploaderView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/Upload/FeedUploaderView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/Upload/MediaCropperView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/Upload/MediaCropperView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/Upload/MediaCropperView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/Upload/MediaCropperView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/Upload/VideoMediaRangeSlider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/Upload/VideoMediaRangeSlider.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Media/Upload/VideoMediaRangeSlider.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Media/Upload/VideoMediaRangeSlider.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Profiles/HashtagProfileView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Profiles/HashtagProfileView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Profiles/HashtagProfileView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Profiles/HashtagProfileView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Profiles/UserFollowersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Profiles/UserFollowersView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Profiles/UserFollowersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Profiles/UserFollowersView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Profiles/UserFollowingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Profiles/UserFollowingsView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Profiles/UserFollowingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Profiles/UserFollowingsView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Profiles/UserProfileView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Profiles/UserProfileView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Profiles/UserProfileView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Profiles/UserProfileView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Search/SearchView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Search/SearchView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Search/SearchView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Search/SearchView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Settings/AccountSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Settings/AccountSettings.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Settings/AccountSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Settings/AccountSettings.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Settings/ApplicationSettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Settings/ApplicationSettingsView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Settings/ApplicationSettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Settings/ApplicationSettingsView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Settings/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Settings/SettingsView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Settings/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Settings/SettingsView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Stories/HashtagStoryItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Stories/HashtagStoryItemView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Stories/HashtagStoryItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Stories/HashtagStoryItemView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Stories/LivePlayerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Stories/LivePlayerView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Stories/LivePlayerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Stories/LivePlayerView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Stories/StoryCarouselView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Stories/StoryCarouselView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Stories/StoryCarouselView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Stories/StoryCarouselView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/Views/Stories/StoryItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Stories/StoryItemView.xaml -------------------------------------------------------------------------------- /WinstaMobile/Views/Stories/StoryItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/Views/Stories/StoryItemView.xaml.cs -------------------------------------------------------------------------------- /WinstaMobile/WinstaMobile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaMobile/WinstaMobile.csproj -------------------------------------------------------------------------------- /WinstaNext.Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Directs/DirectItemTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Directs/DirectItemTimeConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Directs/HasUnreadToFontWeightConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Directs/HasUnreadToFontWeightConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Directs/UserIdToHorizontalAlignmentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Directs/UserIdToHorizontalAlignmentConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/EnumToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/EnumToBooleanConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Enums/InstaFollowOrderTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Enums/InstaFollowOrderTypeConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/IntToIsEnabledConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/IntToIsEnabledConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/IntToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/IntToVisibilityConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/InvertBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/InvertBoolConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Media/CaptionToMarkdownConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Media/CaptionToMarkdownConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Media/CoAuthorLoadConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Media/CoAuthorLoadConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Media/InstaMediaThumbnailConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Media/InstaMediaThumbnailConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Media/InstaMediaTypeIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Media/InstaMediaTypeIconConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Media/InstaUserProfilePictureConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Media/InstaUserProfilePictureConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Media/MediaDateTimeconverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Media/MediaDateTimeconverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Media/MediaQualityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Media/MediaQualityConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/NullToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/NullToBooleanConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/PossibleLargeNumbersConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/PossibleLargeNumbersConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Properties/WinstaNext.Converters.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Properties/WinstaNext.Converters.rd.xml -------------------------------------------------------------------------------- /WinstaNext.Converters/RichTextToMarkdownTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/RichTextToMarkdownTextConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Stories/PollStickerColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Stories/PollStickerColorConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Stories/StoryBorderColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Stories/StoryBorderColorConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Stories/StoryItemImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Stories/StoryItemImageConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/Stories/StoryItemVideoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/Stories/StoryItemVideoConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/TextToFlowDirectionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/TextToFlowDirectionConverter.cs -------------------------------------------------------------------------------- /WinstaNext.Converters/WinstaNext.Converters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.Converters/WinstaNext.Converters.csproj -------------------------------------------------------------------------------- /WinstaNext.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext.sln -------------------------------------------------------------------------------- /WinstaNext/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/App.xaml -------------------------------------------------------------------------------- /WinstaNext/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/App.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Assets/Fonts/FluentSystemIcons-Filled.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Fonts/FluentSystemIcons-Filled.ttf -------------------------------------------------------------------------------- /WinstaNext/Assets/Fonts/FluentSystemIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Fonts/FluentSystemIcons-Regular.ttf -------------------------------------------------------------------------------- /WinstaNext/Assets/Fonts/FluentSystemIcons-Resizable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Fonts/FluentSystemIcons-Resizable.ttf -------------------------------------------------------------------------------- /WinstaNext/Assets/Fonts/Instagram/AvenyTMedium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Fonts/Instagram/AvenyTMedium.otf -------------------------------------------------------------------------------- /WinstaNext/Assets/Fonts/Instagram/AvenyTRegular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Fonts/Instagram/AvenyTRegular.otf -------------------------------------------------------------------------------- /WinstaNext/Assets/Fonts/Instagram/CosmopolitanScriptRegular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Fonts/Instagram/CosmopolitanScriptRegular.otf -------------------------------------------------------------------------------- /WinstaNext/Assets/Fonts/Instagram/FBDisplayLightSlim.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Fonts/Instagram/FBDisplayLightSlim.ttf -------------------------------------------------------------------------------- /WinstaNext/Assets/Fonts/Instagram/FBWordmarkRegularSlim.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Fonts/Instagram/FBWordmarkRegularSlim.ttf -------------------------------------------------------------------------------- /WinstaNext/Assets/Fonts/Instagram/FacebookNarrow_A_Rg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Fonts/Instagram/FacebookNarrow_A_Rg.ttf -------------------------------------------------------------------------------- /WinstaNext/Assets/Fonts/SegoeIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Fonts/SegoeIcons.ttf -------------------------------------------------------------------------------- /WinstaNext/Assets/Icons/NoOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Icons/NoOne.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Icons/WinstaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Icons/WinstaIcon.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Icons/WinstaLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Icons/WinstaLogo.png -------------------------------------------------------------------------------- /WinstaNext/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /WinstaNext/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /WinstaNext/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /WinstaNext/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /WinstaNext/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /WinstaNext/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Lottie/Dislike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Lottie/Dislike.json -------------------------------------------------------------------------------- /WinstaNext/Assets/Lottie/Gears.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Lottie/Gears.json -------------------------------------------------------------------------------- /WinstaNext/Assets/Lottie/Insta-anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Lottie/Insta-anim.json -------------------------------------------------------------------------------- /WinstaNext/Assets/Lottie/Like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Lottie/Like.json -------------------------------------------------------------------------------- /WinstaNext/Assets/Lottie/Loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Lottie/Loading.json -------------------------------------------------------------------------------- /WinstaNext/Assets/Lottie/Upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Lottie/Upload.json -------------------------------------------------------------------------------- /WinstaNext/Assets/Lottie/UploadingAnim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Lottie/UploadingAnim.json -------------------------------------------------------------------------------- /WinstaNext/Assets/Lottie/circles-menu-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Lottie/circles-menu-1.json -------------------------------------------------------------------------------- /WinstaNext/Assets/Settings/ListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Settings/ListView.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Settings/StaggeredView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Settings/StaggeredView.png -------------------------------------------------------------------------------- /WinstaNext/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /WinstaNext/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /WinstaNext/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /WinstaNext/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /WinstaNext/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /WinstaNext/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /WinstaNext/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /WinstaNext/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /WinstaNext/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WinstaNext/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /WinstaNext/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /WinstaNext/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /WinstaNext/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /WinstaNext/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /WinstaNext/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /WinstaNext/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinstaNext/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /WinstaNext/Controls/WinstaListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Controls/WinstaListView.xaml -------------------------------------------------------------------------------- /WinstaNext/Controls/WinstaListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Controls/WinstaListView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Converters/Profiles/UserInfoToButtonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Converters/Profiles/UserInfoToButtonConverter.cs -------------------------------------------------------------------------------- /WinstaNext/Core/Behaviors/SynchronizeHorizontalOffsetBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Core/Behaviors/SynchronizeHorizontalOffsetBehavior.cs -------------------------------------------------------------------------------- /WinstaNext/Core/TaskCompletionNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Core/TaskCompletionNotifier.cs -------------------------------------------------------------------------------- /WinstaNext/ExtendedSplashScreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/ExtendedSplashScreen.xaml -------------------------------------------------------------------------------- /WinstaNext/ExtendedSplashScreen.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/ExtendedSplashScreen.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/FodyWeavers.xml -------------------------------------------------------------------------------- /WinstaNext/Helpers/DownloadUploadHelper/DownloadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Helpers/DownloadUploadHelper/DownloadHelper.cs -------------------------------------------------------------------------------- /WinstaNext/Helpers/DownloadUploadHelper/UploadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Helpers/DownloadUploadHelper/UploadHelper.cs -------------------------------------------------------------------------------- /WinstaNext/Helpers/NotifyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Helpers/NotifyHelper.cs -------------------------------------------------------------------------------- /WinstaNext/Helpers/StringCipher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Helpers/StringCipher.cs -------------------------------------------------------------------------------- /WinstaNext/Helpers/UserAgentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Helpers/UserAgentHelper.cs -------------------------------------------------------------------------------- /WinstaNext/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/MainPage.xaml -------------------------------------------------------------------------------- /WinstaNext/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/MainPage.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Package.appxmanifest -------------------------------------------------------------------------------- /WinstaNext/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinstaNext/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Properties/Default.rd.xml -------------------------------------------------------------------------------- /WinstaNext/Services/AccountManagementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Services/AccountManagementService.cs -------------------------------------------------------------------------------- /WinstaNext/Strings/en-US/General.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/en-US/General.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/en-US/Instagram.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/en-US/Instagram.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/en-US/Messages.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/en-US/Messages.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/en-US/Settings.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/en-US/Settings.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/en-US/Units.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/en-US/Units.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/fa-Ir/General.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/fa-Ir/General.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/fa-Ir/Instagram.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/fa-Ir/Instagram.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/fa-Ir/Messages.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/fa-Ir/Messages.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/fa-Ir/Settings.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/fa-Ir/Settings.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/fa-Ir/Units.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/fa-Ir/Units.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/pt-BR/General.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/pt-BR/General.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/pt-BR/Instagram.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/pt-BR/Instagram.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/pt-BR/Messages.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/pt-BR/Messages.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/pt-BR/Settings.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/pt-BR/Settings.resw -------------------------------------------------------------------------------- /WinstaNext/Strings/pt-BR/Units.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Strings/pt-BR/Units.resw -------------------------------------------------------------------------------- /WinstaNext/Templates/ToastNotification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Templates/ToastNotification.xml -------------------------------------------------------------------------------- /WinstaNext/UI/Comments/InstaCommentPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Comments/InstaCommentPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Comments/InstaCommentPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Comments/InstaCommentPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Controls/CompositionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Controls/CompositionControl.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Controls/ExpandableSettingControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Controls/ExpandableSettingControl.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Controls/ExpandableSettingControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Controls/ExpandableSettingControl.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Controls/ExpandableSettingHeaderControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Controls/ExpandableSettingHeaderControl.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Controls/ExpandableSettingHeaderControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Controls/ExpandableSettingHeaderControl.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Controls/NavigationSettingContent.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Controls/NavigationSettingContent.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Controls/NavigationSettingContent.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Controls/NavigationSettingContent.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Controls/NoCastButtonMediaTransportControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Controls/NoCastButtonMediaTransportControls.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Dialogs/BaseContentDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Dialogs/BaseContentDialog.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Dialogs/BaseContentDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Dialogs/BaseContentDialog.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Dialogs/UserSelectionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Dialogs/UserSelectionDialog.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Dialogs/UserSelectionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Dialogs/UserSelectionDialog.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/ChatListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/ChatListView.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/GiphyPanelUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/GiphyPanelUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/GiphyPanelUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/GiphyPanelUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/GroupDirectThread.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/GroupDirectThread.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/GroupDirectThread.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/GroupDirectThread.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/ClipMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/ClipMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/ClipMessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/ClipMessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/IGTVShareMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/IGTVShareMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/LikeMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/LikeMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/LikeMessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/LikeMessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/LinkMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/LinkMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/LinkMessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/LinkMessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/MediaMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/MediaMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/MediaMessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/MediaMessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/MessageContainerResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/MessageContainerResources.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/ProfileMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/ProfileMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/TextMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/TextMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/TextMessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/TextMessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/VoiceMessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/VoiceMessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainer/VoiceMessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainer/VoiceMessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/MessageContainerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/MessageContainerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/PrivateDirectThread.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/PrivateDirectThread.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Directs/PrivateDirectThread.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Directs/PrivateDirectThread.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Flyouts/Directs/DirectMessageItemMenuFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Flyouts/Directs/DirectMessageItemMenuFlyout.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Flyouts/Directs/GroupMessageThreadMenuFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Flyouts/Directs/GroupMessageThreadMenuFlyout.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Flyouts/Directs/PrivateMessageThreadMenuFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Flyouts/Directs/PrivateMessageThreadMenuFlyout.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Flyouts/InstaMediaFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Flyouts/InstaMediaFlyout.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Flyouts/Profiles/UserProfileMenuFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Flyouts/Profiles/UserProfileMenuFlyout.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Flyouts/Stories/InstaBroadcastFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Flyouts/Stories/InstaBroadcastFlyout.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Flyouts/Stories/InstaReelFeedFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Flyouts/Stories/InstaReelFeedFlyout.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Flyouts/Stories/InstaStoryItemFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Flyouts/Stories/InstaStoryItemFlyout.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Flyouts/SwitchUserFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Flyouts/SwitchUserFlyout.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Generic/InstaUserPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Generic/InstaUserPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Generic/InstaUserPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Generic/InstaUserPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Generic/LikeButtonControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Generic/LikeButtonControl.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Generic/LikeButtonControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Generic/LikeButtonControl.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Generic/PersonPictureResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Generic/PersonPictureResources.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Generic/SaveButtonControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Generic/SaveButtonControl.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Generic/SaveButtonControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Generic/SaveButtonControl.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Media/CoAuthorUserProviderUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/CoAuthorUserProviderUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Media/CoAuthorUserProviderUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/CoAuthorUserProviderUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Media/InstaMediaCarouselPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/InstaMediaCarouselPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Media/InstaMediaCarouselPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/InstaMediaCarouselPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Media/InstaMediaImagePresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/InstaMediaImagePresenterUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Media/InstaMediaImagePresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/InstaMediaImagePresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Media/InstaMediaPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/InstaMediaPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Media/InstaMediaPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/InstaMediaPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Media/InstaMediaTileUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/InstaMediaTileUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Media/InstaMediaTileUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/InstaMediaTileUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Media/InstaMediaVideoPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/InstaMediaVideoPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Media/InstaMediaVideoPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/InstaMediaVideoPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Media/StaggeredTileUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/StaggeredTileUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Media/StaggeredTileUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Media/StaggeredTileUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Search/HashtagSearchUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Search/HashtagSearchUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Search/HashtagSearchUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Search/HashtagSearchUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Search/PeopleSearchUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Search/PeopleSearchUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Search/PeopleSearchUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Search/PeopleSearchUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Search/PlaceSearchUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Search/PlaceSearchUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Search/PlaceSearchUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Search/PlaceSearchUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/InstaBroadcastPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/InstaBroadcastPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/InstaBroadcastPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/InstaBroadcastPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/InstaHighlightFeedPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/InstaHighlightFeedPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/InstaHighlightFeedPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/InstaHighlightFeedPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/InstaReelFeedPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/InstaReelFeedPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/InstaReelFeedPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/InstaReelFeedPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/InstaStoryItemPresenterUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/InstaStoryItemPresenterUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/InstaStoryItemPresenterUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/InstaStoryItemPresenterUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/StickersView/PollStickerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/StickersView/PollStickerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/StickersView/PollStickerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/StickersView/PollStickerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/StickersView/QuestionStickerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/StickersView/QuestionStickerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/StickersView/QuestionStickerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/StickersView/QuestionStickerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/StickersView/QuizStickerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/StickersView/QuizStickerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/StickersView/QuizStickerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/StickersView/QuizStickerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/StickersView/SliderStickerUC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/StickersView/SliderStickerUC.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/StickersView/SliderStickerUC.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/StickersView/SliderStickerUC.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/StickersView/StickersViewGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/StickersView/StickersViewGrid.xaml -------------------------------------------------------------------------------- /WinstaNext/UI/Stories/StickersView/StickersViewGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/UI/Stories/StickersView/StickersViewGrid.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/ViewModels/Media/InstaMediaPresenterUCViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/ViewModels/Media/InstaMediaPresenterUCViewModel.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Account/ChallengeRequiredView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Account/ChallengeRequiredView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Account/ChallengeRequiredView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Account/ChallengeRequiredView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Account/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Account/LoginView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Account/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Account/LoginView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Account/TwoFactorAuthView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Account/TwoFactorAuthView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Account/TwoFactorAuthView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Account/TwoFactorAuthView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Activities/ActivitiesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Activities/ActivitiesView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Activities/ActivitiesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Activities/ActivitiesView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Activities/FollowRequestsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Activities/FollowRequestsView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Activities/FollowRequestsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Activities/FollowRequestsView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/BasePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/BasePage.cs -------------------------------------------------------------------------------- /WinstaNext/Views/BaseUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/BaseUserControl.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Comments/CommentLikersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Comments/CommentLikersView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Comments/CommentLikersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Comments/CommentLikersView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Comments/MediaCommentsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Comments/MediaCommentsView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Comments/MediaCommentsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Comments/MediaCommentsView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Directs/DirectThreadView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Directs/DirectThreadView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Directs/DirectThreadView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Directs/DirectThreadView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Directs/DirectsListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Directs/DirectsListView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Directs/DirectsListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Directs/DirectsListView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/HomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/HomeView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/HomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/HomeView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Media/ExploreView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/ExploreView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Media/ExploreView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/ExploreView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Media/ImageViewerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/ImageViewerPage.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Media/ImageViewerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/ImageViewerPage.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Media/IncrementalInstaMediaView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/IncrementalInstaMediaView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Media/IncrementalInstaMediaView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/IncrementalInstaMediaView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Media/IncrementalStaggeredView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/IncrementalStaggeredView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Media/IncrementalStaggeredView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/IncrementalStaggeredView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Media/MediaLikersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/MediaLikersView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Media/MediaLikersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/MediaLikersView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Media/SingleInstaMediaView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/SingleInstaMediaView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Media/SingleInstaMediaView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/SingleInstaMediaView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Media/Upload/FeedUploaderView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/Upload/FeedUploaderView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Media/Upload/FeedUploaderView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/Upload/FeedUploaderView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Media/Upload/MediaCropperView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/Upload/MediaCropperView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Media/Upload/MediaCropperView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/Upload/MediaCropperView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Media/Upload/VideoMediaRangeSlider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/Upload/VideoMediaRangeSlider.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Media/Upload/VideoMediaRangeSlider.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Media/Upload/VideoMediaRangeSlider.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/HashtagProfileView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/HashtagProfileView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/HashtagProfileView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/HashtagProfileView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/PlaceProfileView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/PlaceProfileView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/PlaceProfileView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/PlaceProfileView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/UserFollowersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/UserFollowersView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/UserFollowersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/UserFollowersView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/UserFollowingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/UserFollowingsView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/UserFollowingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/UserFollowingsView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/UserProfileEditView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/UserProfileEditView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/UserProfileEditView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/UserProfileEditView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/UserProfileView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/UserProfileView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Profiles/UserProfileView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Profiles/UserProfileView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Search/SearchView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Search/SearchView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Search/SearchView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Search/SearchView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Settings/AccountSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Settings/AccountSettings.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Settings/AccountSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Settings/AccountSettings.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Settings/ApplicationSettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Settings/ApplicationSettingsView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Settings/ApplicationSettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Settings/ApplicationSettingsView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Settings/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Settings/SettingsView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Settings/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Settings/SettingsView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/StaggeredHomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/StaggeredHomeView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/StaggeredHomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/StaggeredHomeView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Stories/HashtagStoryItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Stories/HashtagStoryItemView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Stories/HashtagStoryItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Stories/HashtagStoryItemView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Stories/LivePlayerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Stories/LivePlayerView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Stories/LivePlayerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Stories/LivePlayerView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Stories/StoryCarouselView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Stories/StoryCarouselView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Stories/StoryCarouselView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Stories/StoryCarouselView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/Views/Stories/StoryItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Stories/StoryItemView.xaml -------------------------------------------------------------------------------- /WinstaNext/Views/Stories/StoryItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/Views/Stories/StoryItemView.xaml.cs -------------------------------------------------------------------------------- /WinstaNext/WinstaNext.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/WinstaNext/WinstaNext.csproj -------------------------------------------------------------------------------- /en-us dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGame1/Winsta11/HEAD/en-us dark.svg --------------------------------------------------------------------------------