├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── improvement-proposal.md ├── pull_request_template.md └── workflows │ └── swiftlint.yml ├── .gitignore ├── .swiftlint.yml ├── CONTRIBUTING.md ├── LICENSE ├── Mlem.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── david.xcuserdatad │ │ └── IDEFindNavigatorScopes.plist ├── xcshareddata │ └── xcschemes │ │ └── Mlem.xcscheme └── xcuserdata │ └── david.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Mlem ├── API │ ├── APIClient.swift │ ├── APIRequest.swift │ ├── Internal │ │ └── HierarchicalComment.swift │ ├── Models │ │ ├── APIErrorResponse.swift │ │ ├── Comments │ │ │ ├── APIComment.swift │ │ │ ├── APICommentAggregates.swift │ │ │ ├── APICommentReply.swift │ │ │ ├── APICommentReplyView.swift │ │ │ └── APICommentView.swift │ │ ├── Community │ │ │ ├── APICommunity.swift │ │ │ ├── APICommunityAggregates.swift │ │ │ ├── APICommunityModeratorView.swift │ │ │ ├── APICommunityView.swift │ │ │ └── APISubscribedStatus.swift │ │ ├── Messages │ │ │ ├── APIPrivateMessage.swift │ │ │ └── APIPrivateMessageView.swift │ │ ├── Person │ │ │ ├── APIPerson.swift │ │ │ ├── APIPersonAggregates.swift │ │ │ ├── APIPersonMention.swift │ │ │ ├── APIPersonMentionView.swift │ │ │ └── APIPersonView.swift │ │ ├── Posts │ │ │ ├── APIPost.swift │ │ │ ├── APIPostAggregates.swift │ │ │ └── APIPostView.swift │ │ └── Site │ │ │ ├── APIFederatedInstances.swift │ │ │ ├── APILanguage.swift │ │ │ ├── APILocalSite.swift │ │ │ ├── APILocalSiteRateLimit.swift │ │ │ ├── APIMyUserInfo.swift │ │ │ ├── APISite.swift │ │ │ ├── APISiteAggregates.swift │ │ │ ├── APISiteView.swift │ │ │ └── APITagline.swift │ └── Requests │ │ ├── Comment │ │ ├── CreateComment.swift │ │ ├── CreateCommentLike.swift │ │ ├── DeleteComment.swift │ │ ├── EditComment.swift │ │ ├── GetComment.swift │ │ ├── GetComments.swift │ │ └── SaveComment.swift │ │ ├── Community │ │ ├── BlockCommunity.swift │ │ ├── FollowCommunity.swift │ │ ├── GetCommunity.swift │ │ ├── HideCommunity.swift │ │ └── ListCommunities.swift │ │ ├── LoginRequest.swift │ │ ├── Messages │ │ └── GetPrivateMessages.swift │ │ ├── Person │ │ ├── GetPersonDetails.swift │ │ ├── GetPersonMentions.swift │ │ └── GetReplies.swift │ │ ├── Post │ │ ├── CreatePost.swift │ │ ├── CreatePostLike.swift │ │ ├── DeletePost.swift │ │ ├── EditPost.swift │ │ ├── GetPost.swift │ │ ├── GetPosts.swift │ │ └── SavePost.swift │ │ ├── ResolveObject.swift │ │ ├── SearchRequest.swift │ │ └── Site │ │ └── GetSite.swift ├── App Constants.swift ├── App State.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── Mlerm13.png │ ├── Color.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── Default Community.imageset │ │ ├── Contents.json │ │ └── Lemmy.pdf │ ├── Icons │ │ ├── Contents.json │ │ ├── Mlem Cream By Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── MlemCream-ios.png │ │ ├── Mlem Dark By ClayS.appiconset │ │ │ ├── Contents.json │ │ │ └── MlemDark-ios.png │ │ ├── Mlem Dev By Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── MlemDev-ios.png │ │ ├── Mlem Inclusive Pride By Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── MlemInclusivePride-ios.png │ │ ├── Mlem Lime by Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── MlemLime-ios.png │ │ ├── Mlem Mono By Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── MlemMono-ios.png │ │ ├── Mlem Pride By Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── MlemPride-ios.png │ │ ├── Mlem Trans Pride By Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── MlemTransPride-ios.png │ │ ├── Mlem Wave By Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── MlemWave-ios.png │ │ ├── Mlemhaw By Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── Mlemhaw-ios.png │ │ ├── Mlemkin By Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── MlemkinSpice-ios.png │ │ ├── Mlemmit By Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── Mlemmit-ios.png │ │ └── Mlemmygrad By Clays.appiconset │ │ │ ├── Contents.json │ │ │ └── Mlemmygrad-ios.png │ └── mlem.symbolset │ │ ├── Contents.json │ │ └── mlem.1.svg ├── ContentView.swift ├── Enums │ ├── Errors │ │ ├── Critical Errors.swift │ │ └── Saving Failure.swift │ ├── FeedType.swift │ ├── Inbox Item Type.swift │ ├── InboxTabs.swift │ ├── My Vote.swift │ ├── Post Type.swift │ ├── Settings │ │ ├── CommentSortType.swift │ │ ├── Post Sizes.swift │ │ ├── PostSortType.swift │ │ └── Vote Complex Style.swift │ └── User │ │ └── UserViewTab.swift ├── Extensions │ ├── API Post View - Post Type.swift │ ├── Alert - Multiple Alerts.swift │ ├── Array - Move Elements Around.swift │ ├── Array - Prepend.swift │ ├── Bundle - Current App Icon.swift │ ├── Bundle.swift │ ├── Color.swift │ ├── Date.swift │ ├── Dictionary - Append.swift │ ├── Image.swift │ ├── JSONDecoder+Default.swift │ ├── Navigation getter.swift │ ├── String - Contains Elements From Array.swift │ ├── String.swift │ ├── Swipey Actions.swift │ ├── UIApplication - First Key Window.swift │ ├── UIUserInterfaceStyle - SettingsOption conformant.swift │ ├── URL+Identifiable.swift │ ├── URLSessionWebSocketTask - Send Ping.swift │ ├── View - Border on Specific Sides.swift │ ├── View - Conditional Modifier.swift │ ├── View - Handle Lemmy Links.swift │ └── View - Hide View.swift ├── Feed │ ├── FeedTracker.swift │ └── FeedTrackerItemProviding.swift ├── Info.plist ├── Logic │ ├── File Management │ │ ├── Create Empty File.swift │ │ ├── Decode Data from File.swift │ │ ├── Encode for Saving.swift │ │ └── Write Data to File.swift │ ├── Generic Merge.swift │ ├── Get Favorited Communities.swift │ ├── Mark Community as Favorite.swift │ ├── Networking │ │ ├── Check if Endpoint Exists.swift │ │ ├── Download UIImage from URL.swift │ │ ├── Get Community Details.swift │ │ └── Get Correct URL to Endpoint.swift │ ├── Participating │ │ ├── Delete Post or Comment.swift │ │ ├── Post Comment.swift │ │ ├── Post Post.swift │ │ ├── Rate Post or Comment.swift │ │ ├── Save Comment.swift │ │ └── Save Post.swift │ ├── Remove Community from Favorites.swift │ ├── Share Sheet.swift │ ├── Time Parser.swift │ └── URLHandler.swift ├── Mlem.xcdatamodeld │ ├── .xccurrentversion │ └── Mlem.xcdatamodel │ │ └── contents ├── MlemApp.swift ├── Models │ ├── Access Token.swift │ ├── Contributor.swift │ ├── Favorite Community.swift │ ├── Navigation Contexts │ │ ├── Community Link.swift │ │ ├── Community Sidebar Link.swift │ │ ├── Lazy Load Post Link.swift │ │ ├── Post Link.swift │ │ └── User Moderator Link.swift │ ├── Saved Account.swift │ ├── Settings │ │ ├── AlternativeIcon.swift │ │ ├── App Theme.swift │ │ └── Settings Options.swift │ ├── Trackers │ │ ├── Comment Reply Tracker.swift │ │ ├── Comment Tracker.swift │ │ ├── Community Search Result Tracker.swift │ │ ├── Favorite Community Tracker.swift │ │ ├── Filters Tracker.swift │ │ ├── Inbox │ │ │ ├── Inbox Item.swift │ │ │ ├── Inbox Tracker.swift │ │ │ ├── Mentions Tracker.swift │ │ │ ├── Messages Tracker.swift │ │ │ └── Replies Tracker.swift │ │ ├── Own Account Tracker.swift │ │ ├── Post Tracker.swift │ │ └── Saved Account Tracker.swift │ └── User-Interactable │ │ ├── Comment.swift │ │ ├── Community.swift │ │ ├── Menu Function.swift │ │ ├── Post.swift │ │ └── User.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Settings.bundle │ ├── Root.plist │ └── en.lproj │ │ └── Root.strings ├── Styles │ ├── Empty Button Style.swift │ └── Outlined Web Complex Style.swift ├── Views │ ├── Shared │ │ ├── Cached Image With Nsfw Filter.swift │ │ ├── Composer │ │ │ └── PostComposerView.swift │ │ ├── Custom Text Field.swift │ │ ├── Error View.swift │ │ ├── Links │ │ │ ├── Community Link View.swift │ │ │ ├── User Profile Label.swift │ │ │ └── User Profile Link.swift │ │ ├── Loading View.swift │ │ ├── Markdown View.swift │ │ ├── Reply Editor │ │ │ ├── Keyboard Accessories.swift │ │ │ └── Reply Editor.swift │ │ └── Website Icon Complex.swift │ └── Tabs │ │ ├── Feed Root.swift │ │ ├── Inbox │ │ ├── Feed │ │ │ ├── All Items Feed View.swift │ │ │ ├── Item Types │ │ │ │ ├── Inbox Mention View.swift │ │ │ │ ├── Inbox Message View.swift │ │ │ │ └── Inbox Reply View.swift │ │ │ ├── Mentions Feed View.swift │ │ │ ├── Messages Feed View.swift │ │ │ └── Replies Feed View.swift │ │ ├── Inbox View Logic.swift │ │ └── Inbox View.swift │ │ ├── Posts │ │ └── Components │ │ │ ├── Comment │ │ │ └── Components │ │ │ │ ├── Comment Interaction Bar.swift │ │ │ │ ├── Comment Item Logic.swift │ │ │ │ ├── Comment Item.swift │ │ │ │ └── Embedded Post.swift │ │ │ ├── Post │ │ │ └── Components │ │ │ │ ├── Community List View │ │ │ │ ├── Community List View.swift │ │ │ │ └── Components │ │ │ │ │ ├── CommunityListRowViews.swift │ │ │ │ │ └── CommunityListSidebarEntry.swift │ │ │ │ ├── Community View │ │ │ │ ├── Community Search │ │ │ │ │ ├── Community Search View.swift │ │ │ │ │ └── Components │ │ │ │ │ │ └── Community Search Field.swift │ │ │ │ ├── Community View.swift │ │ │ │ ├── Components │ │ │ │ │ ├── Block Community Button.swift │ │ │ │ │ ├── PostSortMenu.swift │ │ │ │ │ ├── Sidebar Header Avatar.swift │ │ │ │ │ ├── Sidebar Header Label.swift │ │ │ │ │ ├── Sidebar Header.swift │ │ │ │ │ ├── Sidebar View.swift │ │ │ │ │ └── Subscribe Button.swift │ │ │ │ └── Post Item │ │ │ │ │ ├── Expanded Post.swift │ │ │ │ │ ├── Feed Post.swift │ │ │ │ │ ├── Lazy Load Expanded Post.swift │ │ │ │ │ ├── Post Components │ │ │ │ │ ├── NSFW Tag.swift │ │ │ │ │ ├── Post Header.swift │ │ │ │ │ ├── Post Interaction Bar.swift │ │ │ │ │ └── Stickied Tag.swift │ │ │ │ │ └── Post Types │ │ │ │ │ ├── Compact Post.swift │ │ │ │ │ └── Large Post.swift │ │ │ │ └── Instance and Community List │ │ │ │ ├── Accounts Page.swift │ │ │ │ └── Add Account View.swift │ │ │ └── Shared │ │ │ ├── Avatar View.swift │ │ │ ├── Buttons │ │ │ ├── Downvote.swift │ │ │ ├── Ellipsis Menu.swift │ │ │ ├── Reply.swift │ │ │ ├── Save.swift │ │ │ ├── Upvote.swift │ │ │ └── Vote Complex │ │ │ │ ├── Standard Vote Complex.swift │ │ │ │ ├── Symmetric Vote Complex.swift │ │ │ │ └── Vote Complex.swift │ │ │ ├── Images │ │ │ └── Sticky Image View.swift │ │ │ └── Selectable Text.swift │ │ ├── Profile │ │ ├── Profile View.swift │ │ ├── User Moderator View.swift │ │ └── User View.swift │ │ └── Settings │ │ ├── Components │ │ ├── About Me.swift │ │ ├── Settings Item.swift │ │ └── Views │ │ │ ├── Alternative Icons.swift │ │ │ ├── AlternativeIconCell.swift │ │ │ ├── Appearance.swift │ │ │ ├── Filters.swift │ │ │ └── General.swift │ │ ├── Contributors │ │ └── Contributors View.swift │ │ └── Settings View.swift └── Window.swift ├── MlemTests └── MlemTests.swift ├── MlemUITests ├── MlemUITests.swift └── MlemUITestsLaunchTests.swift ├── README.md ├── commom-clause-1.0.txt └── gpl-3.0.txt /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/improvement-proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/.github/ISSUE_TEMPLATE/improvement-proposal.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/.github/workflows/swiftlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/LICENSE -------------------------------------------------------------------------------- /Mlem.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Mlem.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Mlem.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Mlem.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Mlem.xcodeproj/project.xcworkspace/xcuserdata/david.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem.xcodeproj/project.xcworkspace/xcuserdata/david.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /Mlem.xcodeproj/xcshareddata/xcschemes/Mlem.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem.xcodeproj/xcshareddata/xcschemes/Mlem.xcscheme -------------------------------------------------------------------------------- /Mlem.xcodeproj/xcuserdata/david.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem.xcodeproj/xcuserdata/david.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Mlem.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem.xcodeproj/xcuserdata/david.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Mlem/API/APIClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/APIClient.swift -------------------------------------------------------------------------------- /Mlem/API/APIRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/APIRequest.swift -------------------------------------------------------------------------------- /Mlem/API/Internal/HierarchicalComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Internal/HierarchicalComment.swift -------------------------------------------------------------------------------- /Mlem/API/Models/APIErrorResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/APIErrorResponse.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Comments/APIComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Comments/APIComment.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Comments/APICommentAggregates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Comments/APICommentAggregates.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Comments/APICommentReply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Comments/APICommentReply.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Comments/APICommentReplyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Comments/APICommentReplyView.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Comments/APICommentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Comments/APICommentView.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Community/APICommunity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Community/APICommunity.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Community/APICommunityAggregates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Community/APICommunityAggregates.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Community/APICommunityModeratorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Community/APICommunityModeratorView.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Community/APICommunityView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Community/APICommunityView.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Community/APISubscribedStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Community/APISubscribedStatus.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Messages/APIPrivateMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Messages/APIPrivateMessage.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Messages/APIPrivateMessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Messages/APIPrivateMessageView.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Person/APIPerson.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Person/APIPerson.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Person/APIPersonAggregates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Person/APIPersonAggregates.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Person/APIPersonMention.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Person/APIPersonMention.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Person/APIPersonMentionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Person/APIPersonMentionView.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Person/APIPersonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Person/APIPersonView.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Posts/APIPost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Posts/APIPost.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Posts/APIPostAggregates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Posts/APIPostAggregates.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Posts/APIPostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Posts/APIPostView.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Site/APIFederatedInstances.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Site/APIFederatedInstances.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Site/APILanguage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Site/APILanguage.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Site/APILocalSite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Site/APILocalSite.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Site/APILocalSiteRateLimit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Site/APILocalSiteRateLimit.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Site/APIMyUserInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Site/APIMyUserInfo.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Site/APISite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Site/APISite.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Site/APISiteAggregates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Site/APISiteAggregates.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Site/APISiteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Site/APISiteView.swift -------------------------------------------------------------------------------- /Mlem/API/Models/Site/APITagline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Models/Site/APITagline.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Comment/CreateComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Comment/CreateComment.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Comment/CreateCommentLike.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Comment/CreateCommentLike.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Comment/DeleteComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Comment/DeleteComment.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Comment/EditComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Comment/EditComment.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Comment/GetComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Comment/GetComment.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Comment/GetComments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Comment/GetComments.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Comment/SaveComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Comment/SaveComment.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Community/BlockCommunity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Community/BlockCommunity.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Community/FollowCommunity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Community/FollowCommunity.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Community/GetCommunity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Community/GetCommunity.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Community/HideCommunity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Community/HideCommunity.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Community/ListCommunities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Community/ListCommunities.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/LoginRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/LoginRequest.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Messages/GetPrivateMessages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Messages/GetPrivateMessages.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Person/GetPersonDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Person/GetPersonDetails.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Person/GetPersonMentions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Person/GetPersonMentions.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Person/GetReplies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Person/GetReplies.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Post/CreatePost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Post/CreatePost.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Post/CreatePostLike.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Post/CreatePostLike.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Post/DeletePost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Post/DeletePost.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Post/EditPost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Post/EditPost.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Post/GetPost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Post/GetPost.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Post/GetPosts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Post/GetPosts.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Post/SavePost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Post/SavePost.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/ResolveObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/ResolveObject.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/SearchRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/SearchRequest.swift -------------------------------------------------------------------------------- /Mlem/API/Requests/Site/GetSite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/API/Requests/Site/GetSite.swift -------------------------------------------------------------------------------- /Mlem/App Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/App Constants.swift -------------------------------------------------------------------------------- /Mlem/App State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/App State.swift -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/AppIcon.appiconset/Mlerm13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/AppIcon.appiconset/Mlerm13.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Color.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Color.colorset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Default Community.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Default Community.imageset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Default Community.imageset/Lemmy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Default Community.imageset/Lemmy.pdf -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Cream By Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Cream By Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Cream By Clays.appiconset/MlemCream-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Cream By Clays.appiconset/MlemCream-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Dark By ClayS.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Dark By ClayS.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Dark By ClayS.appiconset/MlemDark-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Dark By ClayS.appiconset/MlemDark-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Dev By Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Dev By Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Dev By Clays.appiconset/MlemDev-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Dev By Clays.appiconset/MlemDev-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Inclusive Pride By Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Inclusive Pride By Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Inclusive Pride By Clays.appiconset/MlemInclusivePride-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Inclusive Pride By Clays.appiconset/MlemInclusivePride-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Lime by Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Lime by Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Lime by Clays.appiconset/MlemLime-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Lime by Clays.appiconset/MlemLime-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Mono By Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Mono By Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Mono By Clays.appiconset/MlemMono-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Mono By Clays.appiconset/MlemMono-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Pride By Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Pride By Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Pride By Clays.appiconset/MlemPride-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Pride By Clays.appiconset/MlemPride-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Trans Pride By Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Trans Pride By Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Trans Pride By Clays.appiconset/MlemTransPride-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Trans Pride By Clays.appiconset/MlemTransPride-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Wave By Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Wave By Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlem Wave By Clays.appiconset/MlemWave-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlem Wave By Clays.appiconset/MlemWave-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlemhaw By Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlemhaw By Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlemhaw By Clays.appiconset/Mlemhaw-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlemhaw By Clays.appiconset/Mlemhaw-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlemkin By Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlemkin By Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlemkin By Clays.appiconset/MlemkinSpice-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlemkin By Clays.appiconset/MlemkinSpice-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlemmit By Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlemmit By Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlemmit By Clays.appiconset/Mlemmit-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlemmit By Clays.appiconset/Mlemmit-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlemmygrad By Clays.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlemmygrad By Clays.appiconset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/Icons/Mlemmygrad By Clays.appiconset/Mlemmygrad-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/Icons/Mlemmygrad By Clays.appiconset/Mlemmygrad-ios.png -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/mlem.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/mlem.symbolset/Contents.json -------------------------------------------------------------------------------- /Mlem/Assets.xcassets/mlem.symbolset/mlem.1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Assets.xcassets/mlem.symbolset/mlem.1.svg -------------------------------------------------------------------------------- /Mlem/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/ContentView.swift -------------------------------------------------------------------------------- /Mlem/Enums/Errors/Critical Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/Errors/Critical Errors.swift -------------------------------------------------------------------------------- /Mlem/Enums/Errors/Saving Failure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/Errors/Saving Failure.swift -------------------------------------------------------------------------------- /Mlem/Enums/FeedType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/FeedType.swift -------------------------------------------------------------------------------- /Mlem/Enums/Inbox Item Type.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/Inbox Item Type.swift -------------------------------------------------------------------------------- /Mlem/Enums/InboxTabs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/InboxTabs.swift -------------------------------------------------------------------------------- /Mlem/Enums/My Vote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/My Vote.swift -------------------------------------------------------------------------------- /Mlem/Enums/Post Type.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/Post Type.swift -------------------------------------------------------------------------------- /Mlem/Enums/Settings/CommentSortType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/Settings/CommentSortType.swift -------------------------------------------------------------------------------- /Mlem/Enums/Settings/Post Sizes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/Settings/Post Sizes.swift -------------------------------------------------------------------------------- /Mlem/Enums/Settings/PostSortType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/Settings/PostSortType.swift -------------------------------------------------------------------------------- /Mlem/Enums/Settings/Vote Complex Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/Settings/Vote Complex Style.swift -------------------------------------------------------------------------------- /Mlem/Enums/User/UserViewTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Enums/User/UserViewTab.swift -------------------------------------------------------------------------------- /Mlem/Extensions/API Post View - Post Type.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/API Post View - Post Type.swift -------------------------------------------------------------------------------- /Mlem/Extensions/Alert - Multiple Alerts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/Alert - Multiple Alerts.swift -------------------------------------------------------------------------------- /Mlem/Extensions/Array - Move Elements Around.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/Array - Move Elements Around.swift -------------------------------------------------------------------------------- /Mlem/Extensions/Array - Prepend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/Array - Prepend.swift -------------------------------------------------------------------------------- /Mlem/Extensions/Bundle - Current App Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/Bundle - Current App Icon.swift -------------------------------------------------------------------------------- /Mlem/Extensions/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/Bundle.swift -------------------------------------------------------------------------------- /Mlem/Extensions/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/Color.swift -------------------------------------------------------------------------------- /Mlem/Extensions/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/Date.swift -------------------------------------------------------------------------------- /Mlem/Extensions/Dictionary - Append.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/Dictionary - Append.swift -------------------------------------------------------------------------------- /Mlem/Extensions/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/Image.swift -------------------------------------------------------------------------------- /Mlem/Extensions/JSONDecoder+Default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/JSONDecoder+Default.swift -------------------------------------------------------------------------------- /Mlem/Extensions/Navigation getter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/Navigation getter.swift -------------------------------------------------------------------------------- /Mlem/Extensions/String - Contains Elements From Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/String - Contains Elements From Array.swift -------------------------------------------------------------------------------- /Mlem/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/String.swift -------------------------------------------------------------------------------- /Mlem/Extensions/Swipey Actions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/Swipey Actions.swift -------------------------------------------------------------------------------- /Mlem/Extensions/UIApplication - First Key Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/UIApplication - First Key Window.swift -------------------------------------------------------------------------------- /Mlem/Extensions/UIUserInterfaceStyle - SettingsOption conformant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/UIUserInterfaceStyle - SettingsOption conformant.swift -------------------------------------------------------------------------------- /Mlem/Extensions/URL+Identifiable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/URL+Identifiable.swift -------------------------------------------------------------------------------- /Mlem/Extensions/URLSessionWebSocketTask - Send Ping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/URLSessionWebSocketTask - Send Ping.swift -------------------------------------------------------------------------------- /Mlem/Extensions/View - Border on Specific Sides.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/View - Border on Specific Sides.swift -------------------------------------------------------------------------------- /Mlem/Extensions/View - Conditional Modifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/View - Conditional Modifier.swift -------------------------------------------------------------------------------- /Mlem/Extensions/View - Handle Lemmy Links.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/View - Handle Lemmy Links.swift -------------------------------------------------------------------------------- /Mlem/Extensions/View - Hide View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Extensions/View - Hide View.swift -------------------------------------------------------------------------------- /Mlem/Feed/FeedTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Feed/FeedTracker.swift -------------------------------------------------------------------------------- /Mlem/Feed/FeedTrackerItemProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Feed/FeedTrackerItemProviding.swift -------------------------------------------------------------------------------- /Mlem/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Info.plist -------------------------------------------------------------------------------- /Mlem/Logic/File Management/Create Empty File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/File Management/Create Empty File.swift -------------------------------------------------------------------------------- /Mlem/Logic/File Management/Decode Data from File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/File Management/Decode Data from File.swift -------------------------------------------------------------------------------- /Mlem/Logic/File Management/Encode for Saving.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/File Management/Encode for Saving.swift -------------------------------------------------------------------------------- /Mlem/Logic/File Management/Write Data to File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/File Management/Write Data to File.swift -------------------------------------------------------------------------------- /Mlem/Logic/Generic Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Generic Merge.swift -------------------------------------------------------------------------------- /Mlem/Logic/Get Favorited Communities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Get Favorited Communities.swift -------------------------------------------------------------------------------- /Mlem/Logic/Mark Community as Favorite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Mark Community as Favorite.swift -------------------------------------------------------------------------------- /Mlem/Logic/Networking/Check if Endpoint Exists.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Networking/Check if Endpoint Exists.swift -------------------------------------------------------------------------------- /Mlem/Logic/Networking/Download UIImage from URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Networking/Download UIImage from URL.swift -------------------------------------------------------------------------------- /Mlem/Logic/Networking/Get Community Details.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Networking/Get Community Details.swift -------------------------------------------------------------------------------- /Mlem/Logic/Networking/Get Correct URL to Endpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Networking/Get Correct URL to Endpoint.swift -------------------------------------------------------------------------------- /Mlem/Logic/Participating/Delete Post or Comment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Participating/Delete Post or Comment.swift -------------------------------------------------------------------------------- /Mlem/Logic/Participating/Post Comment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Participating/Post Comment.swift -------------------------------------------------------------------------------- /Mlem/Logic/Participating/Post Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Participating/Post Post.swift -------------------------------------------------------------------------------- /Mlem/Logic/Participating/Rate Post or Comment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Participating/Rate Post or Comment.swift -------------------------------------------------------------------------------- /Mlem/Logic/Participating/Save Comment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Participating/Save Comment.swift -------------------------------------------------------------------------------- /Mlem/Logic/Participating/Save Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Participating/Save Post.swift -------------------------------------------------------------------------------- /Mlem/Logic/Remove Community from Favorites.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Remove Community from Favorites.swift -------------------------------------------------------------------------------- /Mlem/Logic/Share Sheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Share Sheet.swift -------------------------------------------------------------------------------- /Mlem/Logic/Time Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/Time Parser.swift -------------------------------------------------------------------------------- /Mlem/Logic/URLHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Logic/URLHandler.swift -------------------------------------------------------------------------------- /Mlem/Mlem.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Mlem.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Mlem/Mlem.xcdatamodeld/Mlem.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Mlem.xcdatamodeld/Mlem.xcdatamodel/contents -------------------------------------------------------------------------------- /Mlem/MlemApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/MlemApp.swift -------------------------------------------------------------------------------- /Mlem/Models/Access Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Access Token.swift -------------------------------------------------------------------------------- /Mlem/Models/Contributor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Contributor.swift -------------------------------------------------------------------------------- /Mlem/Models/Favorite Community.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Favorite Community.swift -------------------------------------------------------------------------------- /Mlem/Models/Navigation Contexts/Community Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Navigation Contexts/Community Link.swift -------------------------------------------------------------------------------- /Mlem/Models/Navigation Contexts/Community Sidebar Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Navigation Contexts/Community Sidebar Link.swift -------------------------------------------------------------------------------- /Mlem/Models/Navigation Contexts/Lazy Load Post Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Navigation Contexts/Lazy Load Post Link.swift -------------------------------------------------------------------------------- /Mlem/Models/Navigation Contexts/Post Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Navigation Contexts/Post Link.swift -------------------------------------------------------------------------------- /Mlem/Models/Navigation Contexts/User Moderator Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Navigation Contexts/User Moderator Link.swift -------------------------------------------------------------------------------- /Mlem/Models/Saved Account.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Saved Account.swift -------------------------------------------------------------------------------- /Mlem/Models/Settings/AlternativeIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Settings/AlternativeIcon.swift -------------------------------------------------------------------------------- /Mlem/Models/Settings/App Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Settings/App Theme.swift -------------------------------------------------------------------------------- /Mlem/Models/Settings/Settings Options.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Settings/Settings Options.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Comment Reply Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Comment Reply Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Comment Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Comment Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Community Search Result Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Community Search Result Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Favorite Community Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Favorite Community Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Filters Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Filters Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Inbox/Inbox Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Inbox/Inbox Item.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Inbox/Inbox Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Inbox/Inbox Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Inbox/Mentions Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Inbox/Mentions Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Inbox/Messages Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Inbox/Messages Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Inbox/Replies Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Inbox/Replies Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Own Account Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Own Account Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Post Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Post Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/Trackers/Saved Account Tracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/Trackers/Saved Account Tracker.swift -------------------------------------------------------------------------------- /Mlem/Models/User-Interactable/Comment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/User-Interactable/Comment.swift -------------------------------------------------------------------------------- /Mlem/Models/User-Interactable/Community.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/User-Interactable/Community.swift -------------------------------------------------------------------------------- /Mlem/Models/User-Interactable/Menu Function.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/User-Interactable/Menu Function.swift -------------------------------------------------------------------------------- /Mlem/Models/User-Interactable/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/User-Interactable/Post.swift -------------------------------------------------------------------------------- /Mlem/Models/User-Interactable/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Models/User-Interactable/User.swift -------------------------------------------------------------------------------- /Mlem/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Mlem/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /Mlem/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Mlem/Styles/Empty Button Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Styles/Empty Button Style.swift -------------------------------------------------------------------------------- /Mlem/Styles/Outlined Web Complex Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Styles/Outlined Web Complex Style.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Cached Image With Nsfw Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Cached Image With Nsfw Filter.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Composer/PostComposerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Composer/PostComposerView.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Custom Text Field.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Custom Text Field.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Error View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Error View.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Links/Community Link View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Links/Community Link View.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Links/User Profile Label.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Links/User Profile Label.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Links/User Profile Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Links/User Profile Link.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Loading View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Loading View.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Markdown View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Markdown View.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Reply Editor/Keyboard Accessories.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Reply Editor/Keyboard Accessories.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Reply Editor/Reply Editor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Reply Editor/Reply Editor.swift -------------------------------------------------------------------------------- /Mlem/Views/Shared/Website Icon Complex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Shared/Website Icon Complex.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Feed Root.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Feed Root.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Inbox/Feed/All Items Feed View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Inbox/Feed/All Items Feed View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Inbox/Feed/Item Types/Inbox Mention View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Inbox/Feed/Item Types/Inbox Mention View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Inbox/Feed/Item Types/Inbox Message View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Inbox/Feed/Item Types/Inbox Message View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Inbox/Feed/Item Types/Inbox Reply View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Inbox/Feed/Item Types/Inbox Reply View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Inbox/Feed/Mentions Feed View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Inbox/Feed/Mentions Feed View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Inbox/Feed/Messages Feed View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Inbox/Feed/Messages Feed View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Inbox/Feed/Replies Feed View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Inbox/Feed/Replies Feed View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Inbox/Inbox View Logic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Inbox/Inbox View Logic.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Inbox/Inbox View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Inbox/Inbox View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Comment/Components/Comment Interaction Bar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Comment/Components/Comment Interaction Bar.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Comment/Components/Comment Item Logic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Comment/Components/Comment Item Logic.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Comment/Components/Comment Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Comment/Components/Comment Item.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Comment/Components/Embedded Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Comment/Components/Embedded Post.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community List View/Community List View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community List View/Community List View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community List View/Components/CommunityListRowViews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community List View/Components/CommunityListRowViews.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community List View/Components/CommunityListSidebarEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community List View/Components/CommunityListSidebarEntry.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Community Search/Community Search View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Community Search/Community Search View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Community Search/Components/Community Search Field.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Community Search/Components/Community Search Field.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Community View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Community View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Block Community Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Block Community Button.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/PostSortMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/PostSortMenu.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Sidebar Header Avatar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Sidebar Header Avatar.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Sidebar Header Label.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Sidebar Header Label.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Sidebar Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Sidebar Header.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Sidebar View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Sidebar View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Subscribe Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Components/Subscribe Button.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Expanded Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Expanded Post.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Feed Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Feed Post.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Lazy Load Expanded Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Lazy Load Expanded Post.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Components/NSFW Tag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Components/NSFW Tag.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Components/Post Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Components/Post Header.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Components/Post Interaction Bar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Components/Post Interaction Bar.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Components/Stickied Tag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Components/Stickied Tag.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Types/Compact Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Types/Compact Post.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Types/Large Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Community View/Post Item/Post Types/Large Post.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Instance and Community List/Accounts Page.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Instance and Community List/Accounts Page.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Post/Components/Instance and Community List/Add Account View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Post/Components/Instance and Community List/Add Account View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Shared/Avatar View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Shared/Avatar View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Downvote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Downvote.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Ellipsis Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Ellipsis Menu.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Reply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Reply.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Save.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Save.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Upvote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Upvote.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Vote Complex/Standard Vote Complex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Vote Complex/Standard Vote Complex.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Vote Complex/Symmetric Vote Complex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Vote Complex/Symmetric Vote Complex.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Vote Complex/Vote Complex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Shared/Buttons/Vote Complex/Vote Complex.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Shared/Images/Sticky Image View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Shared/Images/Sticky Image View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Posts/Components/Shared/Selectable Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Posts/Components/Shared/Selectable Text.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Profile/Profile View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Profile/Profile View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Profile/User Moderator View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Profile/User Moderator View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Profile/User View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Profile/User View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Settings/Components/About Me.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Settings/Components/About Me.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Settings/Components/Settings Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Settings/Components/Settings Item.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Settings/Components/Views/Alternative Icons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Settings/Components/Views/Alternative Icons.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Settings/Components/Views/AlternativeIconCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Settings/Components/Views/AlternativeIconCell.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Settings/Components/Views/Appearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Settings/Components/Views/Appearance.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Settings/Components/Views/Filters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Settings/Components/Views/Filters.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Settings/Components/Views/General.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Settings/Components/Views/General.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Settings/Contributors/Contributors View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Settings/Contributors/Contributors View.swift -------------------------------------------------------------------------------- /Mlem/Views/Tabs/Settings/Settings View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Views/Tabs/Settings/Settings View.swift -------------------------------------------------------------------------------- /Mlem/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/Mlem/Window.swift -------------------------------------------------------------------------------- /MlemTests/MlemTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/MlemTests/MlemTests.swift -------------------------------------------------------------------------------- /MlemUITests/MlemUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/MlemUITests/MlemUITests.swift -------------------------------------------------------------------------------- /MlemUITests/MlemUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/MlemUITests/MlemUITestsLaunchTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/README.md -------------------------------------------------------------------------------- /commom-clause-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/commom-clause-1.0.txt -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlemgroup/mormaer-mlem/HEAD/gpl-3.0.txt --------------------------------------------------------------------------------