├── .github └── workflows │ └── crowdin.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── desktopAppIcons │ ├── LinuxIcon.png │ ├── MacosIcon.icns │ └── WindowsIcon.ico ├── proguard-rules.pro └── src │ ├── androidMain │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── daniebeler │ │ │ └── pfpixelix │ │ │ ├── AppActivity.kt │ │ │ ├── MyApplication.kt │ │ │ ├── domain │ │ │ └── service │ │ │ │ ├── icon │ │ │ │ └── AndroidAppIconManager.kt │ │ │ │ └── platform │ │ │ │ ├── Platform.android.kt │ │ │ │ └── PlatformFeatures.android.kt │ │ │ ├── ui │ │ │ └── theme │ │ │ │ └── Theme.android.kt │ │ │ ├── utils │ │ │ ├── BlurHashDecoder.android.kt │ │ │ └── KmpPlatform.android.kt │ │ │ └── widget │ │ │ ├── WidgetColors.kt │ │ │ ├── latest_image │ │ │ ├── CustomLatestImageStateDefinition.kt │ │ │ ├── LatestImageWidget.kt │ │ │ ├── LatestImageWidgetReceiver.kt │ │ │ ├── models │ │ │ │ └── LatestImageStore.kt │ │ │ ├── updateLatestImageWidget.kt │ │ │ ├── utils │ │ │ │ ├── GetImageProvider.kt │ │ │ │ └── LatestImageStoreSerializer.kt │ │ │ └── work_manager │ │ │ │ ├── LatestImageTask.kt │ │ │ │ └── LatestImageWorkManager.kt │ │ │ └── notifications │ │ │ ├── CustomNotificationsStateDefinition.kt │ │ │ ├── NotificationWidgetReceiver.kt │ │ │ ├── NotificationsWidget.kt │ │ │ ├── models │ │ │ └── NotificationsStore.kt │ │ │ ├── updateNotificationsWidget.kt │ │ │ ├── utils │ │ │ └── NotificationsStoreSerializer.kt │ │ │ └── work_manager │ │ │ ├── NotificationsTask.kt │ │ │ └── NotificationsWorkManager.kt │ └── res │ │ ├── drawable │ │ ├── default_avatar.png │ │ ├── default_image.png │ │ ├── default_launcher_icon_dark.webp │ │ ├── default_launcher_icon_light.webp │ │ ├── empty_state_no_notifications.png │ │ ├── empty_state_no_posts.png │ │ ├── ic_launcher_01_foreground.xml │ │ ├── ic_launcher_02_foreground.xml │ │ ├── ic_launcher_03_foreground.xml │ │ ├── ic_launcher_05_foreground.xml │ │ ├── ic_launcher_06_foreground.xml │ │ ├── ic_launcher_07_foreground.xml │ │ ├── ic_launcher_08_background.xml │ │ ├── ic_launcher_08_foreground.xml │ │ ├── ic_launcher_09_foreground.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_new_foreground.xml │ │ ├── notification_widget_preview.png │ │ └── refresh_icon.xml │ │ ├── layout │ │ ├── latest_image_widget_preview.xml │ │ └── notification_widget_preview.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_01.xml │ │ ├── ic_launcher_01_round.xml │ │ ├── ic_launcher_02.xml │ │ ├── ic_launcher_02_round.xml │ │ ├── ic_launcher_03.xml │ │ ├── ic_launcher_03_round.xml │ │ ├── ic_launcher_05.xml │ │ ├── ic_launcher_05_round.xml │ │ ├── ic_launcher_06.xml │ │ ├── ic_launcher_06_round.xml │ │ ├── ic_launcher_07.xml │ │ ├── ic_launcher_07_round.xml │ │ ├── ic_launcher_08.xml │ │ ├── ic_launcher_08_round.xml │ │ ├── ic_launcher_09.xml │ │ ├── ic_launcher_09_round.xml │ │ ├── ic_launcher_new.xml │ │ ├── ic_launcher_new_round.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_01.webp │ │ ├── ic_launcher_01_round.webp │ │ ├── ic_launcher_02.webp │ │ ├── ic_launcher_02_round.webp │ │ ├── ic_launcher_03.webp │ │ ├── ic_launcher_03_round.webp │ │ ├── ic_launcher_05.webp │ │ ├── ic_launcher_05_round.webp │ │ ├── ic_launcher_06.webp │ │ ├── ic_launcher_06_round.webp │ │ ├── ic_launcher_07.webp │ │ ├── ic_launcher_07_round.webp │ │ ├── ic_launcher_08.webp │ │ ├── ic_launcher_08_round.webp │ │ ├── ic_launcher_09.webp │ │ ├── ic_launcher_09_background.webp │ │ ├── ic_launcher_09_round.webp │ │ ├── ic_launcher_foreground.webp │ │ ├── ic_launcher_new.webp │ │ ├── ic_launcher_new_round.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_01.webp │ │ ├── ic_launcher_01_round.webp │ │ ├── ic_launcher_02.webp │ │ ├── ic_launcher_02_round.webp │ │ ├── ic_launcher_03.webp │ │ ├── ic_launcher_03_round.webp │ │ ├── ic_launcher_05.webp │ │ ├── ic_launcher_05_round.webp │ │ ├── ic_launcher_06.webp │ │ ├── ic_launcher_06_round.webp │ │ ├── ic_launcher_07.webp │ │ ├── ic_launcher_07_round.webp │ │ ├── ic_launcher_08.webp │ │ ├── ic_launcher_08_round.webp │ │ ├── ic_launcher_09.webp │ │ ├── ic_launcher_09_background.webp │ │ ├── ic_launcher_09_round.webp │ │ ├── ic_launcher_foreground.webp │ │ ├── ic_launcher_new.webp │ │ ├── ic_launcher_new_round.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_01.webp │ │ ├── ic_launcher_01_round.webp │ │ ├── ic_launcher_02.webp │ │ ├── ic_launcher_02_round.webp │ │ ├── ic_launcher_03.webp │ │ ├── ic_launcher_03_round.webp │ │ ├── ic_launcher_05.webp │ │ ├── ic_launcher_05_round.webp │ │ ├── ic_launcher_06.webp │ │ ├── ic_launcher_06_round.webp │ │ ├── ic_launcher_07.webp │ │ ├── ic_launcher_07_round.webp │ │ ├── ic_launcher_08.webp │ │ ├── ic_launcher_08_round.webp │ │ ├── ic_launcher_09.webp │ │ ├── ic_launcher_09_background.webp │ │ ├── ic_launcher_09_round.webp │ │ ├── ic_launcher_foreground.webp │ │ ├── ic_launcher_new.webp │ │ ├── ic_launcher_new_round.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_01.webp │ │ ├── ic_launcher_01_round.webp │ │ ├── ic_launcher_02.webp │ │ ├── ic_launcher_02_round.webp │ │ ├── ic_launcher_03.webp │ │ ├── ic_launcher_03_round.webp │ │ ├── ic_launcher_05.webp │ │ ├── ic_launcher_05_round.webp │ │ ├── ic_launcher_06.webp │ │ ├── ic_launcher_06_round.webp │ │ ├── ic_launcher_07.webp │ │ ├── ic_launcher_07_round.webp │ │ ├── ic_launcher_08.webp │ │ ├── ic_launcher_08_round.webp │ │ ├── ic_launcher_09.webp │ │ ├── ic_launcher_09_background.webp │ │ ├── ic_launcher_09_round.webp │ │ ├── ic_launcher_foreground.webp │ │ ├── ic_launcher_new.webp │ │ ├── ic_launcher_new_round.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_01.webp │ │ ├── ic_launcher_01_round.webp │ │ ├── ic_launcher_02.webp │ │ ├── ic_launcher_02_round.webp │ │ ├── ic_launcher_03.webp │ │ ├── ic_launcher_03_round.webp │ │ ├── ic_launcher_05.webp │ │ ├── ic_launcher_05_round.webp │ │ ├── ic_launcher_06.webp │ │ ├── ic_launcher_06_round.webp │ │ ├── ic_launcher_07.webp │ │ ├── ic_launcher_07_round.webp │ │ ├── ic_launcher_08.webp │ │ ├── ic_launcher_08_round.webp │ │ ├── ic_launcher_09.webp │ │ ├── ic_launcher_09_background.webp │ │ ├── ic_launcher_09_round.webp │ │ ├── ic_launcher_foreground.webp │ │ ├── ic_launcher_new.webp │ │ ├── ic_launcher_new_round.webp │ │ └── ic_launcher_round.webp │ │ ├── values │ │ ├── colors.xml │ │ ├── ic_launcher_01_background.xml │ │ ├── ic_launcher_02_background.xml │ │ ├── ic_launcher_03_background.xml │ │ ├── ic_launcher_05_background.xml │ │ ├── ic_launcher_06_background.xml │ │ ├── ic_launcher_07_background.xml │ │ ├── ic_launcher_08_background.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_new_background.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ ├── data_extraction_rules.xml │ │ ├── file_paths.xml │ │ ├── image_paths.xml │ │ ├── latest_image_widget_provider.xml │ │ └── notification_widget_provider.xml │ ├── commonMain │ ├── composeResources │ │ ├── drawable │ │ │ ├── add_circle.xml │ │ │ ├── add_circle_outline.xml │ │ │ ├── add_outline.xml │ │ │ ├── app_icon_00.png │ │ │ ├── app_icon_01.png │ │ │ ├── app_icon_02.png │ │ │ ├── app_icon_03.png │ │ │ ├── app_icon_05.png │ │ │ ├── app_icon_06.png │ │ │ ├── app_icon_07.png │ │ │ ├── app_icon_08.png │ │ │ ├── app_icon_09.png │ │ │ ├── blur.xml │ │ │ ├── bookmark.xml │ │ │ ├── bookmark_outline.xml │ │ │ ├── bookmarks_outline.xml │ │ │ ├── browsers_outline.xml │ │ │ ├── chatbubble_outline.xml │ │ │ ├── chevron_back_outline.xml │ │ │ ├── chevron_forward_outline.xml │ │ │ ├── chevron_up_outline.xml │ │ │ ├── close_outline.xml │ │ │ ├── cloud_download_outline.xml │ │ │ ├── code_slash_outline.xml │ │ │ ├── color_palette_outline.xml │ │ │ ├── default_avatar.png │ │ │ ├── document_text_outline.xml │ │ │ ├── ellipsis_vertical.xml │ │ │ ├── extension_puzzle_outline.xml │ │ │ ├── eye_off_outline.xml │ │ │ ├── eye_outline.xml │ │ │ ├── fediverse_logo.png │ │ │ ├── full_character.png │ │ │ ├── grid.xml │ │ │ ├── grid_outline.xml │ │ │ ├── hash.xml │ │ │ ├── heart.xml │ │ │ ├── heart_outline.xml │ │ │ ├── help_circle_outline.xml │ │ │ ├── help_outline.xml │ │ │ ├── house.xml │ │ │ ├── house_fill.xml │ │ │ ├── lemmy_logo.png │ │ │ ├── list_outline.xml │ │ │ ├── log_out_outline.xml │ │ │ ├── login_wave_dark.png │ │ │ ├── login_wave_light.png │ │ │ ├── mail_outline.xml │ │ │ ├── mastodon_logo.png │ │ │ ├── misskey_logo.png │ │ │ ├── notifications.xml │ │ │ ├── notifications_outline.xml │ │ │ ├── open_outline.xml │ │ │ ├── paper_plane_right.xml │ │ │ ├── peertube_logo.png │ │ │ ├── pencil_outline.xml │ │ │ ├── pixelfed_logo.png │ │ │ ├── pixelix_logo.png │ │ │ ├── pixelix_logo_black_xxl.png │ │ │ ├── pixelix_logo_old.png │ │ │ ├── pixelix_logo_white_xxl.png │ │ │ ├── planet_outline.xml │ │ │ ├── refresh_icon.xml │ │ │ ├── remove_circle_outline.xml │ │ │ ├── reorder_four.xml │ │ │ ├── reorder_four_outline.xml │ │ │ ├── save_outline.xml │ │ │ ├── search.xml │ │ │ ├── search_outline.xml │ │ │ ├── settings_outline.xml │ │ │ ├── share_social_outline.xml │ │ │ ├── shield_outline.xml │ │ │ ├── square_outline.xml │ │ │ ├── stack.xml │ │ │ ├── star_outline.xml │ │ │ ├── sync_outline.xml │ │ │ ├── sync_outline_bold.xml │ │ │ ├── threads_logo.png │ │ │ ├── trash.xml │ │ │ ├── trash_outline.xml │ │ │ └── warning.xml │ │ ├── values-af-rZA │ │ │ └── strings.xml │ │ ├── values-ar-rSA │ │ │ └── strings.xml │ │ ├── values-ca-rES │ │ │ └── strings.xml │ │ ├── values-cs-rCZ │ │ │ └── strings.xml │ │ ├── values-da-rDK │ │ │ └── strings.xml │ │ ├── values-de-rDE │ │ │ └── strings.xml │ │ ├── values-el-rGR │ │ │ └── strings.xml │ │ ├── values-en-rUS │ │ │ └── strings.xml │ │ ├── values-eo-rUY │ │ │ └── strings.xml │ │ ├── values-es-rES │ │ │ └── strings.xml │ │ ├── values-fi-rFI │ │ │ └── strings.xml │ │ ├── values-fr-rFR │ │ │ └── strings.xml │ │ ├── values-gl-rES │ │ │ └── strings.xml │ │ ├── values-hu-rHU │ │ │ └── strings.xml │ │ ├── values-io-rEN │ │ │ └── strings.xml │ │ ├── values-it-rIT │ │ │ └── strings.xml │ │ ├── values-iw-rIL │ │ │ └── strings.xml │ │ ├── values-ja-rJP │ │ │ └── strings.xml │ │ ├── values-ko-rKR │ │ │ └── strings.xml │ │ ├── values-nl-rNL │ │ │ └── strings.xml │ │ ├── values-no-rNO │ │ │ └── strings.xml │ │ ├── values-pl-rPL │ │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ ├── values-ro-rRO │ │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ │ └── strings.xml │ │ ├── values-sr-rSP │ │ │ └── strings.xml │ │ ├── values-sv-rSE │ │ │ └── strings.xml │ │ ├── values-tlh-rAA │ │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ │ └── strings.xml │ │ ├── values-uk-rUA │ │ │ └── strings.xml │ │ ├── values-vi-rVN │ │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ └── kotlin │ │ └── com │ │ └── daniebeler │ │ └── pfpixelix │ │ ├── App.kt │ │ ├── di │ │ ├── AppComponent.kt │ │ └── ViewModelComponent.kt │ │ ├── domain │ │ ├── model │ │ │ ├── Account.kt │ │ │ ├── AppAccentColor.kt │ │ │ ├── AppThemeMode.kt │ │ │ ├── Chat.kt │ │ │ ├── Collection.kt │ │ │ ├── Configuration.kt │ │ │ ├── Conversation.kt │ │ │ ├── DomainSoftware.kt │ │ │ ├── Instance.kt │ │ │ ├── InstanceStats.kt │ │ │ ├── License.kt │ │ │ ├── LikedBy.kt │ │ │ ├── LikedPostsWithNext.kt │ │ │ ├── Link.kt │ │ │ ├── MediaAttachment.kt │ │ │ ├── MediaAttachmentConfiguration.kt │ │ │ ├── Message.kt │ │ │ ├── Meta.kt │ │ │ ├── NewMessage.kt │ │ │ ├── NewPost.kt │ │ │ ├── NewReply.kt │ │ │ ├── NewReport.kt │ │ │ ├── NodeInfo.kt │ │ │ ├── Notification.kt │ │ │ ├── Original.kt │ │ │ ├── Place.kt │ │ │ ├── Post.kt │ │ │ ├── PostContext.kt │ │ │ ├── RelatedHashtag.kt │ │ │ ├── Relationship.kt │ │ │ ├── Reply.kt │ │ │ ├── ReportResponse.kt │ │ │ ├── Rule.kt │ │ │ ├── SavedSearches.kt │ │ │ ├── Search.kt │ │ │ ├── Server.kt │ │ │ ├── Settings.kt │ │ │ ├── StatusConfiguration.kt │ │ │ ├── Tag.kt │ │ │ ├── TargetAccount.kt │ │ │ ├── UpdatePost.kt │ │ │ └── Visibility.kt │ │ ├── repository │ │ │ ├── PixelfedApi.kt │ │ │ └── serializers │ │ │ │ ├── HtmlAsTextSerializer.kt │ │ │ │ ├── PostSerializer.kt │ │ │ │ ├── SavedSearchesSerializer.kt │ │ │ │ └── TagNameSerializer.kt │ │ └── service │ │ │ ├── account │ │ │ └── AccountService.kt │ │ │ ├── collection │ │ │ └── CollectionService.kt │ │ │ ├── dm │ │ │ └── DirectMessagesService.kt │ │ │ ├── editor │ │ │ └── PostEditorService.kt │ │ │ ├── file │ │ │ └── FileService.kt │ │ │ ├── hashtag │ │ │ └── SearchService.kt │ │ │ ├── icon │ │ │ └── AppIconService.kt │ │ │ ├── instance │ │ │ └── InstanceService.kt │ │ │ ├── platform │ │ │ ├── Platform.kt │ │ │ └── PlatformFeatures.kt │ │ │ ├── post │ │ │ └── PostService.kt │ │ │ ├── preferences │ │ │ └── UserPreferences.kt │ │ │ ├── search │ │ │ ├── SavedSearchesService.kt │ │ │ └── SearchFieldFocus.kt │ │ │ ├── session │ │ │ ├── AuthApi.kt │ │ │ ├── AuthService.kt │ │ │ ├── Credentials.kt │ │ │ ├── Session.kt │ │ │ └── SystemUrlHandler.kt │ │ │ ├── share │ │ │ └── SystemFileShare.kt │ │ │ ├── timeline │ │ │ └── TimelineService.kt │ │ │ ├── utils │ │ │ ├── Resource.kt │ │ │ └── ResourceFlow.kt │ │ │ └── widget │ │ │ └── WidgetService.kt │ │ ├── ui │ │ ├── composables │ │ │ ├── CustomHashtag.kt │ │ │ ├── CustomLoader.kt │ │ │ ├── CustomPost.kt │ │ │ ├── FollowButton.kt │ │ │ ├── HomeComposable.kt │ │ │ ├── InfiniteListHandler.kt │ │ │ ├── InfinitePostsGrid.kt │ │ │ ├── InfinitePostsList.kt │ │ │ ├── ReverseModalNavigationDrawer.kt │ │ │ ├── RowElement.kt │ │ │ ├── ThemeState.kt │ │ │ ├── ToTopButton.kt │ │ │ ├── collection │ │ │ │ ├── CollectionComposable.kt │ │ │ │ ├── CollectionPostsState.kt │ │ │ │ ├── CollectionState.kt │ │ │ │ ├── CollectionViewModel.kt │ │ │ │ └── EditCollectionState.kt │ │ │ ├── custom_account │ │ │ │ ├── CustomAccount.kt │ │ │ │ └── CustomAccountViewModel.kt │ │ │ ├── direct_messages │ │ │ │ ├── chat │ │ │ │ │ ├── ChatComposable.kt │ │ │ │ │ ├── ChatElementComposable.kt │ │ │ │ │ ├── ChatState.kt │ │ │ │ │ ├── ChatViewModel.kt │ │ │ │ │ └── NewMessageState.kt │ │ │ │ └── conversations │ │ │ │ │ ├── ConversationElementComposable.kt │ │ │ │ │ ├── ConversationsComposable.kt │ │ │ │ │ ├── ConversationsState.kt │ │ │ │ │ ├── ConversationsViewModel.kt │ │ │ │ │ └── NewConversationState.kt │ │ │ ├── edit_post │ │ │ │ ├── EditPostComposable.kt │ │ │ │ ├── EditPostState.kt │ │ │ │ └── EditPostViewModel.kt │ │ │ ├── edit_profile │ │ │ │ ├── EditProfileComposable.kt │ │ │ │ ├── EditProfileState.kt │ │ │ │ └── EditProfileViewModel.kt │ │ │ ├── explore │ │ │ │ ├── ExploreComposable.kt │ │ │ │ ├── ExploreViewModel.kt │ │ │ │ ├── SearchState.kt │ │ │ │ └── trending │ │ │ │ │ ├── TrendingComposable.kt │ │ │ │ │ ├── trending_accounts │ │ │ │ │ ├── AccountRelationshipsState.kt │ │ │ │ │ ├── TrendingAccountElement.kt │ │ │ │ │ ├── TrendingAccountElementViewModel.kt │ │ │ │ │ ├── TrendingAccountPostsState.kt │ │ │ │ │ ├── TrendingAccountsComposable.kt │ │ │ │ │ ├── TrendingAccountsState.kt │ │ │ │ │ └── TrendingAccountsViewModel.kt │ │ │ │ │ ├── trending_hashtags │ │ │ │ │ ├── TrendingHashtagElement.kt │ │ │ │ │ ├── TrendingHashtagElementViewModel.kt │ │ │ │ │ ├── TrendingHashtagPostsState.kt │ │ │ │ │ ├── TrendingHashtagsComposable.kt │ │ │ │ │ ├── TrendingHashtagsState.kt │ │ │ │ │ └── TrendingHashtagsViewModel.kt │ │ │ │ │ └── trending_posts │ │ │ │ │ ├── TrendingPostsComposable.kt │ │ │ │ │ ├── TrendingPostsState.kt │ │ │ │ │ └── TrendingPostsViewModel.kt │ │ │ ├── followers │ │ │ │ ├── FollowerElementComposable.kt │ │ │ │ ├── FollowersComposable.kt │ │ │ │ ├── FollowersMainComposable.kt │ │ │ │ ├── FollowersState.kt │ │ │ │ ├── FollowersViewModel.kt │ │ │ │ ├── FollowingComposable.kt │ │ │ │ └── FollowingState.kt │ │ │ ├── hashtagMentionText │ │ │ │ ├── TextWithClickableHashtagsAndMentionsComposable.kt │ │ │ │ └── TextWithClickableHashtagsAndMentionsViewModel.kt │ │ │ ├── mention │ │ │ │ ├── MentionComposable.kt │ │ │ │ ├── MentionViewModel.kt │ │ │ │ └── PostContextState.kt │ │ │ ├── newpost │ │ │ │ ├── CreatePostState.kt │ │ │ │ ├── MediaUploadState.kt │ │ │ │ ├── NewPostComposable.kt │ │ │ │ ├── NewPostPref.kt │ │ │ │ ├── NewPostTextField.kt │ │ │ │ └── NewPostViewModel.kt │ │ │ ├── notifications │ │ │ │ ├── CustomNotification.kt │ │ │ │ ├── CustomNotificationViewModel.kt │ │ │ │ ├── NotificationsComposable.kt │ │ │ │ ├── NotificationsFilterEnum.kt │ │ │ │ ├── NotificationsState.kt │ │ │ │ └── NotificationsViewModel.kt │ │ │ ├── post │ │ │ │ ├── CommentsBottomSheet.kt │ │ │ │ ├── DeleteState.kt │ │ │ │ ├── LikedByState.kt │ │ │ │ ├── LikesBottomSheet.kt │ │ │ │ ├── MentionSuggestionsState.kt │ │ │ │ ├── PostComposable.kt │ │ │ │ ├── PostViewModel.kt │ │ │ │ ├── ReportDialog.kt │ │ │ │ ├── ReportState.kt │ │ │ │ ├── ShareBottomSheet.kt │ │ │ │ ├── VideoAttachment.kt │ │ │ │ └── reply │ │ │ │ │ ├── OwnReplyState.kt │ │ │ │ │ ├── RepliesState.kt │ │ │ │ │ └── ReplyElementViewModel.kt │ │ │ ├── profile │ │ │ │ ├── AccountState.kt │ │ │ │ ├── CollectionsComposable.kt │ │ │ │ ├── CollectionsState.kt │ │ │ │ ├── DomainSoftwareState.kt │ │ │ │ ├── MutualFollowersComposable.kt │ │ │ │ ├── MutualFollowersState.kt │ │ │ │ ├── PostsState.kt │ │ │ │ ├── PostsWrapperComposable.kt │ │ │ │ ├── ProfileTopSection.kt │ │ │ │ ├── RelationshipState.kt │ │ │ │ ├── SwitchViewComposable.kt │ │ │ │ ├── ViewEnum.kt │ │ │ │ ├── other_profile │ │ │ │ │ ├── OtherProfileComposable.kt │ │ │ │ │ └── OtherProfileViewModel.kt │ │ │ │ ├── own_profile │ │ │ │ │ ├── AccountSwitchBottomSheet.kt │ │ │ │ │ ├── AccountSwitchViewModel.kt │ │ │ │ │ ├── ModalBottomSheetContent.kt │ │ │ │ │ ├── OwnProfileComposable.kt │ │ │ │ │ └── OwnProfileViewModel.kt │ │ │ │ └── server_stats │ │ │ │ │ ├── ServerStatsComposable.kt │ │ │ │ │ └── ServerStatsViewModel.kt │ │ │ ├── session │ │ │ │ ├── LoginComposable.kt │ │ │ │ └── LoginViewModel.kt │ │ │ ├── settings │ │ │ │ ├── about_instance │ │ │ │ │ ├── AboutInstanceComposable.kt │ │ │ │ │ ├── AboutInstanceViewModel.kt │ │ │ │ │ └── InstanceState.kt │ │ │ │ ├── about_pixelix │ │ │ │ │ ├── AboutPixelixComposable.kt │ │ │ │ │ └── AboutPixelixViewModel.kt │ │ │ │ ├── blocked_accounts │ │ │ │ │ ├── BlockedAccountsComposable.kt │ │ │ │ │ ├── BlockedAccountsState.kt │ │ │ │ │ ├── BlockedAccountsViewModel.kt │ │ │ │ │ └── CustomBlockedAccountRow.kt │ │ │ │ ├── bookmarked_posts │ │ │ │ │ ├── BookmarkedPostsComposable.kt │ │ │ │ │ ├── BookmarkedPostsState.kt │ │ │ │ │ └── BookmarkedPostsViewModel.kt │ │ │ │ ├── followed_hashtags │ │ │ │ │ ├── FollowedHashtagsComposable.kt │ │ │ │ │ ├── FollowedHashtagsState.kt │ │ │ │ │ └── FollowedHashtagsViewModel.kt │ │ │ │ ├── icon_selection │ │ │ │ │ ├── IconSelectionComposable.kt │ │ │ │ │ └── IconSelectionViewModel.kt │ │ │ │ ├── liked_posts │ │ │ │ │ ├── LikedPostsComposable.kt │ │ │ │ │ ├── LikedPostsState.kt │ │ │ │ │ └── LikedPostsViewModel.kt │ │ │ │ ├── muted_accounts │ │ │ │ │ ├── CustomMutedAccountRow.kt │ │ │ │ │ ├── MutedAccountsComposable.kt │ │ │ │ │ ├── MutedAccountsState.kt │ │ │ │ │ └── MutedAccountsViewModel.kt │ │ │ │ └── preferences │ │ │ │ │ └── prefs │ │ │ │ │ ├── PreferencesComposable.kt │ │ │ │ │ ├── PreferencesViewModel.kt │ │ │ │ │ ├── basic │ │ │ │ │ ├── ExpandOptionsPref.kt │ │ │ │ │ ├── SettingsPref.kt │ │ │ │ │ └── SwitchPref.kt │ │ │ │ │ └── prefs │ │ │ │ │ ├── AutoplayVideoPref.kt │ │ │ │ │ ├── ClearCachePref.kt │ │ │ │ │ ├── ClearCacheViewModel.kt │ │ │ │ │ ├── CustomAccentColorPref.kt │ │ │ │ │ ├── CustomizeAppIconPref.kt │ │ │ │ │ ├── DeleteAccountPref.kt │ │ │ │ │ ├── FocusModePref.kt │ │ │ │ │ ├── HideAltTextButtonPref.kt │ │ │ │ │ ├── HideSensitiveContentPref.kt │ │ │ │ │ ├── LogoutPref.kt │ │ │ │ │ ├── MoreSettingsPref.kt │ │ │ │ │ ├── RepostSettingsPref.kt │ │ │ │ │ ├── ThemePref.kt │ │ │ │ │ └── UseInAppBrowserPref.kt │ │ │ ├── single_post │ │ │ │ ├── SinglePostComposable.kt │ │ │ │ ├── SinglePostState.kt │ │ │ │ └── SinglePostViewModel.kt │ │ │ ├── states │ │ │ │ ├── EmptyState.kt │ │ │ │ ├── EmptyStateComposable.kt │ │ │ │ ├── EndOfListComposable.kt │ │ │ │ ├── ErrorComposable.kt │ │ │ │ └── LoadingComposable.kt │ │ │ ├── textfield_location │ │ │ │ ├── LocationsState.kt │ │ │ │ ├── TextFieldLocationsComposable.kt │ │ │ │ └── TextFieldLocationsViewModel.kt │ │ │ ├── textfield_mentions │ │ │ │ ├── TextFieldMentionsComposable.kt │ │ │ │ └── TextFieldMentionsViewModel.kt │ │ │ └── timelines │ │ │ │ ├── global_timeline │ │ │ │ ├── GlobalTimelineComposable.kt │ │ │ │ ├── GlobalTimelineState.kt │ │ │ │ └── GlobalTimelineViewModel.kt │ │ │ │ ├── hashtag_timeline │ │ │ │ ├── HashtagState.kt │ │ │ │ ├── HashtagTimelineComposable.kt │ │ │ │ ├── HashtagTimelineState.kt │ │ │ │ └── HashtagTimelineViewModel.kt │ │ │ │ ├── home_timeline │ │ │ │ ├── HomeTimelineComposable.kt │ │ │ │ ├── HomeTimelineState.kt │ │ │ │ └── HomeTimelineViewModel.kt │ │ │ │ └── local_timeline │ │ │ │ ├── LocalTimelineComposable.kt │ │ │ │ ├── LocalTimelineState.kt │ │ │ │ └── LocalTimelineViewModel.kt │ │ ├── navigation │ │ │ └── Navigation.kt │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── ColorBlue.kt │ │ │ ├── ColorRed.kt │ │ │ ├── ColorWhite.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ └── utils │ │ ├── BlurHashDecoder.kt │ │ ├── KmpPlatform.kt │ │ ├── Logging.kt │ │ ├── ShapesExt.kt │ │ ├── StringFormat.kt │ │ ├── TimeAgo.kt │ │ ├── customModifiers.kt │ │ └── zoomable │ │ ├── ZoomState.kt │ │ └── Zoomable.kt │ ├── iosMain │ └── kotlin │ │ └── com │ │ └── daniebeler │ │ └── pfpixelix │ │ ├── App.ios.kt │ │ ├── AppViewController.kt │ │ ├── domain │ │ └── service │ │ │ ├── icon │ │ │ └── IosAppIconManager.kt │ │ │ └── platform │ │ │ ├── Platform.ios.kt │ │ │ └── PlatformFeatures.ios.kt │ │ ├── ui │ │ └── theme │ │ │ └── Theme.ios.kt │ │ └── utils │ │ ├── BlurHashDecoder.ios.kt │ │ └── KmpPlatform.ios.kt │ └── jvmMain │ └── kotlin │ └── com │ └── daniebeler │ └── pfpixelix │ ├── App.jvm.kt │ ├── Main.kt │ ├── domain │ └── service │ │ ├── icon │ │ └── DesktopAppIconManager.kt │ │ └── platform │ │ ├── Platform.jvm.kt │ │ └── PlatformFeatures.jvm.kt │ ├── ui │ └── theme │ │ └── Theme.jvm.kt │ └── utils │ ├── BlurHashDecoder.jvm.kt │ ├── JvmLogger.kt │ └── KmpPlatform.jvm.kt ├── appstorebadge.svg ├── assets └── pixelix_screenshots.png ├── crowdin.yml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iosApp ├── iosApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── iosApp.xcscheme └── iosApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── AppIcon@2x 1.png │ │ ├── AppIcon@3x.png │ │ ├── Contents.json │ │ ├── pixelix_logo_152.png │ │ ├── pixelix_logo_167.png │ │ ├── pixelix_logo_192.png │ │ └── pixelix_logo_black.png │ ├── AppIcon_01.appiconset │ │ ├── AppIcon_01@2x.png │ │ ├── AppIcon_01@3x.png │ │ └── Contents.json │ ├── AppIcon_02.appiconset │ │ ├── AppIcon_02@2x.png │ │ ├── AppIcon_02@3x.png │ │ └── Contents.json │ ├── AppIcon_03.appiconset │ │ ├── AppIcon_03@2x.png │ │ ├── AppIcon_03@3x.png │ │ └── Contents.json │ ├── AppIcon_04.appiconset │ │ ├── AppIcon_04@2x.png │ │ ├── AppIcon_04@3x.png │ │ └── Contents.json │ ├── AppIcon_05.appiconset │ │ ├── AppIcon_05@2x.png │ │ ├── AppIcon_05@3x.png │ │ └── Contents.json │ ├── AppIcon_06.appiconset │ │ ├── AppIcon_06@2x.png │ │ ├── AppIcon_06@3x.png │ │ └── Contents.json │ ├── AppIcon_07.appiconset │ │ ├── AppIcon_07@2x.png │ │ ├── AppIcon_07@3x.png │ │ └── Contents.json │ ├── AppIcon_08.appiconset │ │ ├── AppIcon_08@2x.png │ │ ├── AppIcon_08@3x.png │ │ └── Contents.json │ └── Contents.json │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── iosApp.swift ├── metadata ├── af-ZA │ ├── full_description.txt │ └── short_description.txt ├── ar-SA │ ├── full_description.txt │ └── short_description.txt ├── ca-ES │ ├── full_description.txt │ └── short_description.txt ├── cs-CZ │ ├── full_description.txt │ └── short_description.txt ├── da-DK │ ├── full_description.txt │ └── short_description.txt ├── de-DE │ ├── full_description.txt │ └── short_description.txt ├── de │ ├── changelogs │ │ ├── 20.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ └── 33.txt │ ├── full_description.txt │ └── short_description.txt ├── el-GR │ ├── full_description.txt │ └── short_description.txt ├── en-US │ ├── changelogs │ │ ├── 20.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ └── 33.txt │ ├── full_description.txt │ ├── images │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── eo-UY │ ├── full_description.txt │ └── short_description.txt ├── es-ES │ ├── full_description.txt │ └── short_description.txt ├── fi-FI │ ├── full_description.txt │ └── short_description.txt ├── fr-FR │ ├── full_description.txt │ └── short_description.txt ├── gl-ES │ ├── full_description.txt │ └── short_description.txt ├── he-IL │ ├── full_description.txt │ └── short_description.txt ├── hu-HU │ ├── full_description.txt │ └── short_description.txt ├── io-EN │ ├── full_description.txt │ └── short_description.txt ├── it-IT │ ├── full_description.txt │ └── short_description.txt ├── ja-JP │ ├── full_description.txt │ └── short_description.txt ├── ko-KR │ ├── full_description.txt │ └── short_description.txt ├── nl-NL │ ├── full_description.txt │ └── short_description.txt ├── no-NO │ ├── full_description.txt │ └── short_description.txt ├── pl-PL │ ├── full_description.txt │ └── short_description.txt ├── pt-BR │ ├── full_description.txt │ └── short_description.txt ├── pt-PT │ ├── full_description.txt │ └── short_description.txt ├── ro-RO │ ├── full_description.txt │ └── short_description.txt ├── ru-RU │ ├── full_description.txt │ └── short_description.txt ├── sr-SP │ ├── full_description.txt │ └── short_description.txt ├── sv-SE │ ├── full_description.txt │ └── short_description.txt ├── tlh-AA │ ├── full_description.txt │ └── short_description.txt ├── tr-TR │ ├── full_description.txt │ └── short_description.txt ├── uk-UA │ ├── full_description.txt │ └── short_description.txt ├── vi-VN │ ├── full_description.txt │ └── short_description.txt ├── zh-CN │ ├── full_description.txt │ └── short_description.txt └── zh-TW │ ├── full_description.txt │ └── short_description.txt └── settings.gradle.kts /.github/workflows/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/.github/workflows/crowdin.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/desktopAppIcons/LinuxIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/desktopAppIcons/LinuxIcon.png -------------------------------------------------------------------------------- /app/desktopAppIcons/MacosIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/desktopAppIcons/MacosIcon.icns -------------------------------------------------------------------------------- /app/desktopAppIcons/WindowsIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/desktopAppIcons/WindowsIcon.ico -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/AppActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/AppActivity.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/MyApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/MyApplication.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/domain/service/icon/AndroidAppIconManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/domain/service/icon/AndroidAppIconManager.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/Platform.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/Platform.android.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/PlatformFeatures.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/PlatformFeatures.android.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Theme.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Theme.android.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/utils/BlurHashDecoder.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/utils/BlurHashDecoder.android.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/utils/KmpPlatform.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/utils/KmpPlatform.android.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/WidgetColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/WidgetColors.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/CustomLatestImageStateDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/CustomLatestImageStateDefinition.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/LatestImageWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/LatestImageWidget.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/LatestImageWidgetReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/LatestImageWidgetReceiver.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/models/LatestImageStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/models/LatestImageStore.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/updateLatestImageWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/updateLatestImageWidget.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/utils/GetImageProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/utils/GetImageProvider.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/utils/LatestImageStoreSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/utils/LatestImageStoreSerializer.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/work_manager/LatestImageTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/work_manager/LatestImageTask.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/work_manager/LatestImageWorkManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/latest_image/work_manager/LatestImageWorkManager.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/CustomNotificationsStateDefinition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/CustomNotificationsStateDefinition.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/NotificationWidgetReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/NotificationWidgetReceiver.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/NotificationsWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/NotificationsWidget.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/models/NotificationsStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/models/NotificationsStore.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/updateNotificationsWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/updateNotificationsWidget.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/utils/NotificationsStoreSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/utils/NotificationsStoreSerializer.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/work_manager/NotificationsTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/work_manager/NotificationsTask.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/work_manager/NotificationsWorkManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/kotlin/com/daniebeler/pfpixelix/widget/notifications/work_manager/NotificationsWorkManager.kt -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/default_avatar.png -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/default_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/default_image.png -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/default_launcher_icon_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/default_launcher_icon_dark.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/default_launcher_icon_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/default_launcher_icon_light.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/empty_state_no_notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/empty_state_no_notifications.png -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/empty_state_no_posts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/empty_state_no_posts.png -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_01_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_01_foreground.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_02_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_02_foreground.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_03_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_03_foreground.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_05_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_05_foreground.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_06_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_06_foreground.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_07_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_07_foreground.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_08_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_08_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_08_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_08_foreground.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_09_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_09_foreground.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_new_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/ic_launcher_new_foreground.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/notification_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/notification_widget_preview.png -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/refresh_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/drawable/refresh_icon.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/layout/latest_image_widget_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/layout/latest_image_widget_preview.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/layout/notification_widget_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/layout/notification_widget_preview.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_01.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_01_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_01_round.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_02.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_02_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_02_round.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_03.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_03.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_03_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_03_round.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_05.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_05.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_05_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_05_round.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_06.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_06.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_06_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_06_round.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_07.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_07.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_07_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_07_round.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_08.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_08.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_08_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_08_round.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_09.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_09.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_09_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_09_round.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_new.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_new_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_new_round.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_01.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_01_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_01_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_02.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_02_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_02_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_03.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_03.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_03_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_03_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_05.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_05.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_05_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_05_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_06.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_06.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_06_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_06_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_07.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_07.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_07_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_07_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_08.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_08.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_08_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_08_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_09.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_09.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_09_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_09_background.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_09_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_09_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_new.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_new.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_new_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_new_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_01.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_01_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_01_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_02.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_02_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_02_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_03.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_03.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_03_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_03_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_05.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_05.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_05_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_05_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_06.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_06.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_06_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_06_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_07.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_07.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_07_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_07_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_08.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_08.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_08_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_08_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_09.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_09.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_09_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_09_background.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_09_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_09_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_new.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_new.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_new_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_new_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_01.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_01_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_01_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_02.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_02_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_02_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_03.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_03.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_03_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_03_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_05.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_05.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_05_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_05_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_06.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_06.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_06_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_06_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_07.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_07.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_07_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_07_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_08.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_08.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_08_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_08_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_09.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_09.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_09_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_09_background.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_09_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_09_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_new.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_new.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_new_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_new_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_01.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_01_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_01_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_02.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_02_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_02_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_03.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_03.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_03_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_03_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_05.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_05.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_05_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_05_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_06.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_06.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_06_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_06_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_07.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_07.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_07_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_07_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_08.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_08.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_08_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_08_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_09.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_09.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_09_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_09_background.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_09_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_09_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_new.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_new.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_new_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_new_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_01.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_01_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_01_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_02.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_02_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_02_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_03.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_03.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_03_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_03_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_05.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_05.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_05_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_05_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_06.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_06.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_06_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_06_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_07.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_07.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_07_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_07_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_08.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_08.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_08_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_08_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_09.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_09.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_09_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_09_background.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_09_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_09_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_new.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_new.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_new_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_new_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/ic_launcher_01_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/ic_launcher_01_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/ic_launcher_02_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/ic_launcher_02_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/ic_launcher_03_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/ic_launcher_03_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/ic_launcher_05_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/ic_launcher_05_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/ic_launcher_06_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/ic_launcher_06_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/ic_launcher_07_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/ic_launcher_07_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/ic_launcher_08_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/ic_launcher_08_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/ic_launcher_new_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/ic_launcher_new_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/xml/file_paths.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/xml/image_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/xml/image_paths.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/xml/latest_image_widget_provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/xml/latest_image_widget_provider.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/xml/notification_widget_provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/androidMain/res/xml/notification_widget_provider.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/add_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/add_circle.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/add_circle_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/add_circle_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/add_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/add_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/app_icon_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/app_icon_00.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/app_icon_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/app_icon_01.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/app_icon_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/app_icon_02.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/app_icon_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/app_icon_03.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/app_icon_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/app_icon_05.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/app_icon_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/app_icon_06.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/app_icon_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/app_icon_07.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/app_icon_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/app_icon_08.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/app_icon_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/app_icon_09.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/blur.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/blur.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/bookmark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/bookmark.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/bookmark_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/bookmark_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/bookmarks_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/bookmarks_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/browsers_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/browsers_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/chatbubble_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/chatbubble_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/chevron_back_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/chevron_back_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/chevron_forward_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/chevron_forward_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/chevron_up_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/chevron_up_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/close_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/close_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/cloud_download_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/cloud_download_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/code_slash_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/code_slash_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/color_palette_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/color_palette_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/default_avatar.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/document_text_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/document_text_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/ellipsis_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/ellipsis_vertical.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/extension_puzzle_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/extension_puzzle_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/eye_off_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/eye_off_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/eye_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/eye_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/fediverse_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/fediverse_logo.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/full_character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/full_character.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/grid.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/grid_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/grid_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/hash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/hash.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/heart.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/heart_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/heart_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/help_circle_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/help_circle_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/help_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/help_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/house.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/house.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/house_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/house_fill.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/lemmy_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/lemmy_logo.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/list_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/list_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/log_out_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/log_out_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/login_wave_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/login_wave_dark.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/login_wave_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/login_wave_light.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/mail_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/mail_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/mastodon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/mastodon_logo.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/misskey_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/misskey_logo.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/notifications.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/notifications_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/notifications_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/open_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/open_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/paper_plane_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/paper_plane_right.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/peertube_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/peertube_logo.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/pencil_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/pencil_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/pixelfed_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/pixelfed_logo.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/pixelix_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/pixelix_logo.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/pixelix_logo_black_xxl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/pixelix_logo_black_xxl.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/pixelix_logo_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/pixelix_logo_old.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/pixelix_logo_white_xxl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/pixelix_logo_white_xxl.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/planet_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/planet_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/refresh_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/refresh_icon.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/remove_circle_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/remove_circle_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/reorder_four.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/reorder_four.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/reorder_four_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/reorder_four_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/save_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/save_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/search.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/search_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/search_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/settings_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/settings_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/share_social_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/share_social_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/shield_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/shield_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/square_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/square_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/stack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/stack.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/star_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/star_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/sync_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/sync_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/sync_outline_bold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/sync_outline_bold.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/threads_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/threads_logo.png -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/trash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/trash.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/trash_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/trash_outline.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/drawable/warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/drawable/warning.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-af-rZA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-af-rZA/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-ar-rSA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-ar-rSA/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-ca-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-ca-rES/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-cs-rCZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-cs-rCZ/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-da-rDK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-da-rDK/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-de-rDE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-de-rDE/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-el-rGR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-el-rGR/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-en-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-en-rUS/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-eo-rUY/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-eo-rUY/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-es-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-es-rES/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-fi-rFI/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-fi-rFI/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-fr-rFR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-fr-rFR/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-gl-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-gl-rES/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-hu-rHU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-hu-rHU/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-io-rEN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-io-rEN/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-it-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-it-rIT/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-iw-rIL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-iw-rIL/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-ja-rJP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-ja-rJP/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-ko-rKR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-ko-rKR/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-nl-rNL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-nl-rNL/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-no-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-no-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-pl-rPL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-pl-rPL/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-ro-rRO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-ro-rRO/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-sr-rSP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-sr-rSP/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-sv-rSE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-sv-rSE/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-tlh-rAA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-tlh-rAA/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-tr-rTR/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-uk-rUA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-uk-rUA/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-vi-rVN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-vi-rVN/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/App.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/di/AppComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/di/AppComponent.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/di/ViewModelComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/di/ViewModelComponent.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Account.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Account.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/AppAccentColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/AppAccentColor.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/AppThemeMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/AppThemeMode.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Chat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Chat.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Collection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Collection.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Configuration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Configuration.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Conversation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Conversation.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/DomainSoftware.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/DomainSoftware.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Instance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Instance.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/InstanceStats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/InstanceStats.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/License.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/License.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/LikedBy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/LikedBy.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/LikedPostsWithNext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/LikedPostsWithNext.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Link.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Link.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/MediaAttachment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/MediaAttachment.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/MediaAttachmentConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/MediaAttachmentConfiguration.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Message.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Message.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Meta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Meta.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/NewMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/NewMessage.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/NewPost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/NewPost.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/NewReply.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/NewReply.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/NewReport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/NewReport.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/NodeInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/NodeInfo.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Notification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Notification.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Original.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Original.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Place.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Place.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Post.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Post.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/PostContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/PostContext.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/RelatedHashtag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/RelatedHashtag.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Relationship.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Relationship.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Reply.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Reply.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/ReportResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/ReportResponse.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Rule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Rule.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/SavedSearches.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/SavedSearches.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Search.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Search.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Server.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Server.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Settings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Settings.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/StatusConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/StatusConfiguration.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Tag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Tag.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/TargetAccount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/TargetAccount.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/UpdatePost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/UpdatePost.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Visibility.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/model/Visibility.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/repository/PixelfedApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/repository/PixelfedApi.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/repository/serializers/HtmlAsTextSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/repository/serializers/HtmlAsTextSerializer.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/repository/serializers/PostSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/repository/serializers/PostSerializer.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/repository/serializers/SavedSearchesSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/repository/serializers/SavedSearchesSerializer.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/repository/serializers/TagNameSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/repository/serializers/TagNameSerializer.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/account/AccountService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/account/AccountService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/collection/CollectionService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/collection/CollectionService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/dm/DirectMessagesService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/dm/DirectMessagesService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/editor/PostEditorService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/editor/PostEditorService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/file/FileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/file/FileService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/hashtag/SearchService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/hashtag/SearchService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/icon/AppIconService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/icon/AppIconService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/instance/InstanceService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/instance/InstanceService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/Platform.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/PlatformFeatures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/PlatformFeatures.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/post/PostService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/post/PostService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/preferences/UserPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/preferences/UserPreferences.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/search/SavedSearchesService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/search/SavedSearchesService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/search/SearchFieldFocus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/search/SearchFieldFocus.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/session/AuthApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/session/AuthApi.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/session/AuthService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/session/AuthService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/session/Credentials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/session/Credentials.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/session/Session.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/session/Session.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/session/SystemUrlHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/session/SystemUrlHandler.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/share/SystemFileShare.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/share/SystemFileShare.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/timeline/TimelineService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/timeline/TimelineService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/utils/Resource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/utils/Resource.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/utils/ResourceFlow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/utils/ResourceFlow.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/widget/WidgetService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/domain/service/widget/WidgetService.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/CustomHashtag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/CustomHashtag.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/CustomLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/CustomLoader.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/CustomPost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/CustomPost.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/FollowButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/FollowButton.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/HomeComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/HomeComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/InfiniteListHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/InfiniteListHandler.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/InfinitePostsGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/InfinitePostsGrid.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/InfinitePostsList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/InfinitePostsList.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/ReverseModalNavigationDrawer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/ReverseModalNavigationDrawer.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/RowElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/RowElement.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/ThemeState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/ThemeState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/ToTopButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/ToTopButton.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/collection/CollectionComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/collection/CollectionComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/collection/CollectionPostsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/collection/CollectionPostsState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/collection/CollectionState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/collection/CollectionState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/collection/CollectionViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/collection/CollectionViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/collection/EditCollectionState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/collection/EditCollectionState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/custom_account/CustomAccount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/custom_account/CustomAccount.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/custom_account/CustomAccountViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/custom_account/CustomAccountViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/direct_messages/chat/ChatComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/direct_messages/chat/ChatComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/direct_messages/chat/ChatElementComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/direct_messages/chat/ChatElementComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/direct_messages/chat/ChatState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/direct_messages/chat/ChatState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/direct_messages/chat/ChatViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/direct_messages/chat/ChatViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/direct_messages/chat/NewMessageState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/direct_messages/chat/NewMessageState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_post/EditPostComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_post/EditPostComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_post/EditPostState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_post/EditPostState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_post/EditPostViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_post/EditPostViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_profile/EditProfileComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_profile/EditProfileComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_profile/EditProfileState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_profile/EditProfileState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_profile/EditProfileViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/edit_profile/EditProfileViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/explore/ExploreComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/explore/ExploreComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/explore/ExploreViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/explore/ExploreViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/explore/SearchState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/explore/SearchState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/explore/trending/TrendingComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/explore/trending/TrendingComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowerElementComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowerElementComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowersComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowersComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowersMainComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowersMainComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowersState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowersState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowersViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowersViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowingComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowingComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowingState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/followers/FollowingState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/mention/MentionComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/mention/MentionComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/mention/MentionViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/mention/MentionViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/mention/PostContextState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/mention/PostContextState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/CreatePostState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/CreatePostState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/MediaUploadState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/MediaUploadState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/NewPostComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/NewPostComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/NewPostPref.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/NewPostPref.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/NewPostTextField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/NewPostTextField.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/NewPostViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/newpost/NewPostViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/CustomNotification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/CustomNotification.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/CustomNotificationViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/CustomNotificationViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/NotificationsComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/NotificationsComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/NotificationsFilterEnum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/NotificationsFilterEnum.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/NotificationsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/NotificationsState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/NotificationsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/notifications/NotificationsViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/CommentsBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/CommentsBottomSheet.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/DeleteState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/DeleteState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/LikedByState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/LikedByState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/LikesBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/LikesBottomSheet.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/MentionSuggestionsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/MentionSuggestionsState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/PostComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/PostComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/PostViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/PostViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/ReportDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/ReportDialog.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/ReportState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/ReportState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/ShareBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/ShareBottomSheet.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/VideoAttachment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/VideoAttachment.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/reply/OwnReplyState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/reply/OwnReplyState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/reply/RepliesState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/reply/RepliesState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/reply/ReplyElementViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/post/reply/ReplyElementViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/AccountState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/AccountState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/CollectionsComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/CollectionsComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/CollectionsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/CollectionsState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/DomainSoftwareState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/DomainSoftwareState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/MutualFollowersComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/MutualFollowersComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/MutualFollowersState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/MutualFollowersState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/PostsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/PostsState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/PostsWrapperComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/PostsWrapperComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/ProfileTopSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/ProfileTopSection.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/RelationshipState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/RelationshipState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/SwitchViewComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/SwitchViewComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/ViewEnum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/ViewEnum.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/other_profile/OtherProfileComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/other_profile/OtherProfileComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/other_profile/OtherProfileViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/other_profile/OtherProfileViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/own_profile/AccountSwitchBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/own_profile/AccountSwitchBottomSheet.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/own_profile/AccountSwitchViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/own_profile/AccountSwitchViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/own_profile/ModalBottomSheetContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/own_profile/ModalBottomSheetContent.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/own_profile/OwnProfileComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/own_profile/OwnProfileComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/own_profile/OwnProfileViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/own_profile/OwnProfileViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/server_stats/ServerStatsComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/server_stats/ServerStatsComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/server_stats/ServerStatsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/profile/server_stats/ServerStatsViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/session/LoginComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/session/LoginComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/session/LoginViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/session/LoginViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/about_instance/InstanceState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/about_instance/InstanceState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/about_pixelix/AboutPixelixViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/about_pixelix/AboutPixelixViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/liked_posts/LikedPostsComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/liked_posts/LikedPostsComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/liked_posts/LikedPostsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/liked_posts/LikedPostsState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/liked_posts/LikedPostsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/liked_posts/LikedPostsViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/muted_accounts/MutedAccountsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/settings/muted_accounts/MutedAccountsState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/single_post/SinglePostComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/single_post/SinglePostComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/single_post/SinglePostState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/single_post/SinglePostState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/single_post/SinglePostViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/single_post/SinglePostViewModel.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/states/EmptyState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/states/EmptyState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/states/EmptyStateComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/states/EmptyStateComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/states/EndOfListComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/states/EndOfListComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/states/ErrorComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/states/ErrorComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/states/LoadingComposable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/states/LoadingComposable.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/textfield_location/LocationsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/textfield_location/LocationsState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/timelines/hashtag_timeline/HashtagState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/timelines/hashtag_timeline/HashtagState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/timelines/home_timeline/HomeTimelineState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/composables/timelines/home_timeline/HomeTimelineState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/navigation/Navigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/navigation/Navigation.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/ColorBlue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/ColorBlue.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/ColorRed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/ColorRed.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/ColorWhite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/ColorWhite.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/BlurHashDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/BlurHashDecoder.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/KmpPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/KmpPlatform.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/Logging.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/Logging.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/ShapesExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/ShapesExt.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/StringFormat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/StringFormat.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/TimeAgo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/TimeAgo.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/customModifiers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/customModifiers.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/zoomable/ZoomState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/zoomable/ZoomState.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/zoomable/Zoomable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/commonMain/kotlin/com/daniebeler/pfpixelix/utils/zoomable/Zoomable.kt -------------------------------------------------------------------------------- /app/src/iosMain/kotlin/com/daniebeler/pfpixelix/App.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/iosMain/kotlin/com/daniebeler/pfpixelix/App.ios.kt -------------------------------------------------------------------------------- /app/src/iosMain/kotlin/com/daniebeler/pfpixelix/AppViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/iosMain/kotlin/com/daniebeler/pfpixelix/AppViewController.kt -------------------------------------------------------------------------------- /app/src/iosMain/kotlin/com/daniebeler/pfpixelix/domain/service/icon/IosAppIconManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/iosMain/kotlin/com/daniebeler/pfpixelix/domain/service/icon/IosAppIconManager.kt -------------------------------------------------------------------------------- /app/src/iosMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/Platform.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/iosMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/Platform.ios.kt -------------------------------------------------------------------------------- /app/src/iosMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/PlatformFeatures.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/iosMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/PlatformFeatures.ios.kt -------------------------------------------------------------------------------- /app/src/iosMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Theme.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/iosMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Theme.ios.kt -------------------------------------------------------------------------------- /app/src/iosMain/kotlin/com/daniebeler/pfpixelix/utils/BlurHashDecoder.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/iosMain/kotlin/com/daniebeler/pfpixelix/utils/BlurHashDecoder.ios.kt -------------------------------------------------------------------------------- /app/src/iosMain/kotlin/com/daniebeler/pfpixelix/utils/KmpPlatform.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/iosMain/kotlin/com/daniebeler/pfpixelix/utils/KmpPlatform.ios.kt -------------------------------------------------------------------------------- /app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/App.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/App.jvm.kt -------------------------------------------------------------------------------- /app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/Main.kt -------------------------------------------------------------------------------- /app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/domain/service/icon/DesktopAppIconManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/domain/service/icon/DesktopAppIconManager.kt -------------------------------------------------------------------------------- /app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/Platform.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/Platform.jvm.kt -------------------------------------------------------------------------------- /app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/PlatformFeatures.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/domain/service/platform/PlatformFeatures.jvm.kt -------------------------------------------------------------------------------- /app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Theme.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/ui/theme/Theme.jvm.kt -------------------------------------------------------------------------------- /app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/utils/BlurHashDecoder.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/utils/BlurHashDecoder.jvm.kt -------------------------------------------------------------------------------- /app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/utils/JvmLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/utils/JvmLogger.kt -------------------------------------------------------------------------------- /app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/utils/KmpPlatform.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/app/src/jvmMain/kotlin/com/daniebeler/pfpixelix/utils/KmpPlatform.jvm.kt -------------------------------------------------------------------------------- /appstorebadge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/appstorebadge.svg -------------------------------------------------------------------------------- /assets/pixelix_screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/assets/pixelix_screenshots.png -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/crowdin.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/xcshareddata/xcschemes/iosApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp.xcodeproj/xcshareddata/xcschemes/iosApp.xcscheme -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/AppIcon@2x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/AppIcon@2x 1.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/AppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/AppIcon@3x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/pixelix_logo_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/pixelix_logo_152.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/pixelix_logo_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/pixelix_logo_167.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/pixelix_logo_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/pixelix_logo_192.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/pixelix_logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/pixelix_logo_black.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_01.appiconset/AppIcon_01@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_01.appiconset/AppIcon_01@2x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_01.appiconset/AppIcon_01@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_01.appiconset/AppIcon_01@3x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_01.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_01.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_02.appiconset/AppIcon_02@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_02.appiconset/AppIcon_02@2x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_02.appiconset/AppIcon_02@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_02.appiconset/AppIcon_02@3x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_02.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_02.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_03.appiconset/AppIcon_03@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_03.appiconset/AppIcon_03@2x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_03.appiconset/AppIcon_03@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_03.appiconset/AppIcon_03@3x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_03.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_03.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_04.appiconset/AppIcon_04@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_04.appiconset/AppIcon_04@2x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_04.appiconset/AppIcon_04@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_04.appiconset/AppIcon_04@3x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_04.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_04.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_05.appiconset/AppIcon_05@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_05.appiconset/AppIcon_05@2x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_05.appiconset/AppIcon_05@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_05.appiconset/AppIcon_05@3x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_05.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_05.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_06.appiconset/AppIcon_06@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_06.appiconset/AppIcon_06@2x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_06.appiconset/AppIcon_06@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_06.appiconset/AppIcon_06@3x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_06.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_06.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_07.appiconset/AppIcon_07@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_07.appiconset/AppIcon_07@2x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_07.appiconset/AppIcon_07@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_07.appiconset/AppIcon_07@3x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_07.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_07.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_08.appiconset/AppIcon_08@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_08.appiconset/AppIcon_08@2x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_08.appiconset/AppIcon_08@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_08.appiconset/AppIcon_08@3x.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon_08.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon_08.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/iosApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/iosApp/iosApp/iosApp.swift -------------------------------------------------------------------------------- /metadata/af-ZA/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/af-ZA/full_description.txt -------------------------------------------------------------------------------- /metadata/af-ZA/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/af-ZA/short_description.txt -------------------------------------------------------------------------------- /metadata/ar-SA/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ar-SA/full_description.txt -------------------------------------------------------------------------------- /metadata/ar-SA/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ar-SA/short_description.txt -------------------------------------------------------------------------------- /metadata/ca-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ca-ES/full_description.txt -------------------------------------------------------------------------------- /metadata/ca-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ca-ES/short_description.txt -------------------------------------------------------------------------------- /metadata/cs-CZ/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/cs-CZ/full_description.txt -------------------------------------------------------------------------------- /metadata/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/cs-CZ/short_description.txt -------------------------------------------------------------------------------- /metadata/da-DK/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/da-DK/full_description.txt -------------------------------------------------------------------------------- /metadata/da-DK/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/da-DK/short_description.txt -------------------------------------------------------------------------------- /metadata/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/de-DE/full_description.txt -------------------------------------------------------------------------------- /metadata/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Pixelix: Ein benutzerfreundlicher Pixelfed Client. -------------------------------------------------------------------------------- /metadata/de/changelogs/20.txt: -------------------------------------------------------------------------------- 1 | Veröffentlichung auf F-Droid -------------------------------------------------------------------------------- /metadata/de/changelogs/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/de/changelogs/22.txt -------------------------------------------------------------------------------- /metadata/de/changelogs/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/de/changelogs/23.txt -------------------------------------------------------------------------------- /metadata/de/changelogs/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/de/changelogs/24.txt -------------------------------------------------------------------------------- /metadata/de/changelogs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/de/changelogs/25.txt -------------------------------------------------------------------------------- /metadata/de/changelogs/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/de/changelogs/27.txt -------------------------------------------------------------------------------- /metadata/de/changelogs/28.txt: -------------------------------------------------------------------------------- 1 | Bug Fix -------------------------------------------------------------------------------- /metadata/de/changelogs/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/de/changelogs/29.txt -------------------------------------------------------------------------------- /metadata/de/changelogs/30.txt: -------------------------------------------------------------------------------- 1 | Fehlerbehebung -------------------------------------------------------------------------------- /metadata/de/changelogs/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/de/changelogs/31.txt -------------------------------------------------------------------------------- /metadata/de/changelogs/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/de/changelogs/32.txt -------------------------------------------------------------------------------- /metadata/de/changelogs/33.txt: -------------------------------------------------------------------------------- 1 | - Neues Design 🎨 -------------------------------------------------------------------------------- /metadata/de/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/de/full_description.txt -------------------------------------------------------------------------------- /metadata/de/short_description.txt: -------------------------------------------------------------------------------- 1 | Pixelix: Ein benutzerfreundlicher Pixelfed-Client für Fotos, Stöbern & Teilen. -------------------------------------------------------------------------------- /metadata/el-GR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/el-GR/full_description.txt -------------------------------------------------------------------------------- /metadata/el-GR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/el-GR/short_description.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/20.txt: -------------------------------------------------------------------------------- 1 | Publication on F-Droid -------------------------------------------------------------------------------- /metadata/en-US/changelogs/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/changelogs/22.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/changelogs/23.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/changelogs/24.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/changelogs/25.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/changelogs/27.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/28.txt: -------------------------------------------------------------------------------- 1 | Bug Fix -------------------------------------------------------------------------------- /metadata/en-US/changelogs/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/changelogs/29.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/30.txt: -------------------------------------------------------------------------------- 1 | Bug Fix -------------------------------------------------------------------------------- /metadata/en-US/changelogs/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/changelogs/31.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/changelogs/32.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/33.txt: -------------------------------------------------------------------------------- 1 | - New Design 🎨 -------------------------------------------------------------------------------- /metadata/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/full_description.txt -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/images/icon.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/en-US/short_description.txt -------------------------------------------------------------------------------- /metadata/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Pixelix -------------------------------------------------------------------------------- /metadata/eo-UY/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/eo-UY/full_description.txt -------------------------------------------------------------------------------- /metadata/eo-UY/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/eo-UY/short_description.txt -------------------------------------------------------------------------------- /metadata/es-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/es-ES/full_description.txt -------------------------------------------------------------------------------- /metadata/es-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/es-ES/short_description.txt -------------------------------------------------------------------------------- /metadata/fi-FI/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/fi-FI/full_description.txt -------------------------------------------------------------------------------- /metadata/fi-FI/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/fi-FI/short_description.txt -------------------------------------------------------------------------------- /metadata/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/fr-FR/full_description.txt -------------------------------------------------------------------------------- /metadata/fr-FR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/fr-FR/short_description.txt -------------------------------------------------------------------------------- /metadata/gl-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/gl-ES/full_description.txt -------------------------------------------------------------------------------- /metadata/gl-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/gl-ES/short_description.txt -------------------------------------------------------------------------------- /metadata/he-IL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/he-IL/full_description.txt -------------------------------------------------------------------------------- /metadata/he-IL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/he-IL/short_description.txt -------------------------------------------------------------------------------- /metadata/hu-HU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/hu-HU/full_description.txt -------------------------------------------------------------------------------- /metadata/hu-HU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/hu-HU/short_description.txt -------------------------------------------------------------------------------- /metadata/io-EN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/io-EN/full_description.txt -------------------------------------------------------------------------------- /metadata/io-EN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/io-EN/short_description.txt -------------------------------------------------------------------------------- /metadata/it-IT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/it-IT/full_description.txt -------------------------------------------------------------------------------- /metadata/it-IT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/it-IT/short_description.txt -------------------------------------------------------------------------------- /metadata/ja-JP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ja-JP/full_description.txt -------------------------------------------------------------------------------- /metadata/ja-JP/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ja-JP/short_description.txt -------------------------------------------------------------------------------- /metadata/ko-KR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ko-KR/full_description.txt -------------------------------------------------------------------------------- /metadata/ko-KR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ko-KR/short_description.txt -------------------------------------------------------------------------------- /metadata/nl-NL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/nl-NL/full_description.txt -------------------------------------------------------------------------------- /metadata/nl-NL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/nl-NL/short_description.txt -------------------------------------------------------------------------------- /metadata/no-NO/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/no-NO/full_description.txt -------------------------------------------------------------------------------- /metadata/no-NO/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/no-NO/short_description.txt -------------------------------------------------------------------------------- /metadata/pl-PL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/pl-PL/full_description.txt -------------------------------------------------------------------------------- /metadata/pl-PL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/pl-PL/short_description.txt -------------------------------------------------------------------------------- /metadata/pt-BR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/pt-BR/full_description.txt -------------------------------------------------------------------------------- /metadata/pt-BR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/pt-BR/short_description.txt -------------------------------------------------------------------------------- /metadata/pt-PT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/pt-PT/full_description.txt -------------------------------------------------------------------------------- /metadata/pt-PT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/pt-PT/short_description.txt -------------------------------------------------------------------------------- /metadata/ro-RO/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ro-RO/full_description.txt -------------------------------------------------------------------------------- /metadata/ro-RO/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ro-RO/short_description.txt -------------------------------------------------------------------------------- /metadata/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ru-RU/full_description.txt -------------------------------------------------------------------------------- /metadata/ru-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/ru-RU/short_description.txt -------------------------------------------------------------------------------- /metadata/sr-SP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/sr-SP/full_description.txt -------------------------------------------------------------------------------- /metadata/sr-SP/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/sr-SP/short_description.txt -------------------------------------------------------------------------------- /metadata/sv-SE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/sv-SE/full_description.txt -------------------------------------------------------------------------------- /metadata/sv-SE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/sv-SE/short_description.txt -------------------------------------------------------------------------------- /metadata/tlh-AA/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/tlh-AA/full_description.txt -------------------------------------------------------------------------------- /metadata/tlh-AA/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/tlh-AA/short_description.txt -------------------------------------------------------------------------------- /metadata/tr-TR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/tr-TR/full_description.txt -------------------------------------------------------------------------------- /metadata/tr-TR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/tr-TR/short_description.txt -------------------------------------------------------------------------------- /metadata/uk-UA/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/uk-UA/full_description.txt -------------------------------------------------------------------------------- /metadata/uk-UA/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/uk-UA/short_description.txt -------------------------------------------------------------------------------- /metadata/vi-VN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/vi-VN/full_description.txt -------------------------------------------------------------------------------- /metadata/vi-VN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/vi-VN/short_description.txt -------------------------------------------------------------------------------- /metadata/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/zh-CN/full_description.txt -------------------------------------------------------------------------------- /metadata/zh-CN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/zh-CN/short_description.txt -------------------------------------------------------------------------------- /metadata/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/zh-TW/full_description.txt -------------------------------------------------------------------------------- /metadata/zh-TW/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/metadata/zh-TW/short_description.txt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostbyte-dev/pixelix/HEAD/settings.gradle.kts --------------------------------------------------------------------------------